-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed health bar UI bug Tweaked enemy UI to shoot while seeking health Added final comments
- Loading branch information
Showing
42 changed files
with
1,627 additions
and
1,220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.import | ||
export.cfg | ||
export_presets.cfg | ||
|
||
Bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
extends Node | ||
|
||
# There is a bug where integer modulos operations don't actualy work, so this is | ||
# a work around | ||
func modi(a : int, b : int) -> int: | ||
var divided := a / b | ||
a = a - divided * b | ||
return a |
Oops, something went wrong.