adding forest graphics
This commit is contained in:
parent
3a128eb87d
commit
cb11b8dcef
BIN
graphics_assets/packs/legacy_forest/Tiles.png
Normal file
BIN
graphics_assets/packs/legacy_forest/Tiles.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 59 KiB |
@ -6,6 +6,8 @@ var bulletArray:Array = []
|
|||||||
|
|
||||||
var bullet = preload("res://scenes/bullet.tscn")
|
var bullet = preload("res://scenes/bullet.tscn")
|
||||||
|
|
||||||
|
#factory decides to issue new bullet, or
|
||||||
|
#recycle an old one
|
||||||
func bulletFactory():
|
func bulletFactory():
|
||||||
var mybullet
|
var mybullet
|
||||||
|
|
||||||
@ -20,8 +22,16 @@ func bulletFactory():
|
|||||||
bulletsMadeTotal +=1
|
bulletsMadeTotal +=1
|
||||||
return mybullet
|
return mybullet
|
||||||
|
|
||||||
|
#order desk for new bullets
|
||||||
|
func makeBullet(position, speed):
|
||||||
|
var myBullet = bulletFactory()
|
||||||
|
myBullet.transform = position
|
||||||
|
myBullet.setSpeed(speed)
|
||||||
|
return myBullet
|
||||||
|
|
||||||
func onBulletHit(bullet, body):
|
func onBulletHit(bullet, body):
|
||||||
#deactivate bullet
|
#deactivate bullet
|
||||||
#put back in queue
|
#put back in queue
|
||||||
bullet.setSpeed(1)
|
bullet.setSpeed(1)
|
||||||
|
#tell the GameController the bullet hit something
|
||||||
|
#GameController.bulletHit(body)
|
||||||
|
Loading…
Reference in New Issue
Block a user