This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
Blobledoodes/objects/obj_blobleshoot_powerbarpoint/Step_0.gml
Ryan 8bd86a28b1 blobleshoot powerbar added, difficulty fixed
powerbar adds chalange to the blobleshoot game, difficulty bug fixed lol
2019-07-27 21:20:59 -06:00

24 lines
257 B
Text

if dir = 1
{
powerbar += 3
}
if dir = -1
{
powerbar += -3
}
if powerbar >= 96
{
dir = (dir * -1)
}
if powerbar <= 0
{
dir = (dir * -1)
}
x = (obj_blobleshoot_powerbar.x + (powerbar * image_xscale))
global.blobleshootlaunchspeed = (powerbar * .85)