Tanks turret is now centered on its body

This commit is contained in:
2019-11-20 10:05:19 -06:00
parent 2d70736753
commit 7775ccb3a3
4 changed files with 8 additions and 6 deletions

View File

@@ -5,11 +5,12 @@ IMICRTS::Entity.define_entity(:tank, :unit, 800, "Attacks ground targets") do |e
entity.radius = 14
entity.movement = :ground
entity.max_health = 100.0
entity.center.y = 0.3125
entity.shell_image = "vehicles/tank/tank_shell.png"
entity.component(:turret).shell_image = "vehicles/tank/tank_turret_shell.png"
entity.component(:turret).center.y = 0.4
entity.component(:turret).center.y = 0.3125
entity.on_tick do
end