REWORKED HOW THINGS ARE SCALED

speed values should be adjusted accordingly, but maybe i slipped some

i changed:
player acc
arrow speed

i intentionally didnt change:
jump speed
This commit is contained in:
lustlion
2021-10-25 02:00:21 +02:00
parent 1e1f9edb45
commit b8b2525975
5 changed files with 27 additions and 22 deletions

View File

@@ -129,8 +129,8 @@ function Kupo:HandleAnimation()
DrawAnimationFrame(
self.bow,
math.min(self.bow_frame,self.bow_frames),
self.pos.x + ( 8 * math.sin(self.bow_rotation)) * game.scale,
self.pos.y + (2 - 6 * math.cos(self.bow_rotation)) * game.scale,
self.pos.x + ( 8 * math.sin(self.bow_rotation)),
self.pos.y + (2 - 6 * math.cos(self.bow_rotation)),
self.bow_rotation
)
end