Skip to content

Commit

Permalink
v0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Mugen87 committed May 3, 2021
1 parent 90d7439 commit 031df15
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
12 changes: 10 additions & 2 deletions build/yuka.js
Original file line number Diff line number Diff line change
Expand Up @@ -3125,7 +3125,11 @@
*
* @return {GameEntity} A reference to this game entity.
*/
start() {}
start() {

return this;

}

/**
* Updates the internal state of this game entity. Normally called by {@link EntityManager#update}
Expand All @@ -3134,7 +3138,11 @@
* @param {Number} delta - The time delta.
* @return {GameEntity} A reference to this game entity.
*/
update( /* delta */ ) {}
update( /* delta */ ) {

return this;

}


/**
Expand Down
4 changes: 2 additions & 2 deletions build/yuka.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions build/yuka.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -3119,7 +3119,11 @@ class GameEntity {
*
* @return {GameEntity} A reference to this game entity.
*/
start() {}
start() {

return this;

}

/**
* Updates the internal state of this game entity. Normally called by {@link EntityManager#update}
Expand All @@ -3128,7 +3132,11 @@ class GameEntity {
* @param {Number} delta - The time delta.
* @return {GameEntity} A reference to this game entity.
*/
update( /* delta */ ) {}
update( /* delta */ ) {

return this;

}


/**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yuka",
"version": "0.7.3",
"version": "0.7.4",
"description": "JavaScript Game AI library",
"repository": "Mugen87/yuka",
"main": "build/yuka.js",
Expand Down

0 comments on commit 031df15

Please sign in to comment.