-
Game Attributes and Scene Changes - can't see the global attribute change?
by CodeMonkey ·Game Attributes are global across scenes. -
Game Attributes and Scene Changes - can't see the global attribute change?
by JackieMac ·- I have a boolean game attribute called "Battle On" -
my drifting game
by CodeMonkey ·Instead of the 'Display Text' behavior that says "I'm on target" you can replace it with a 'Timer' behavior that increments a global attribute. -
Pieces on Grid Help
by CodeMonkey ·Using that method plus some global attributes that keep track if there is a piece there or not, you may be able to solve your issue. -
Pieces on Grid Help
by Plokiju ·I have it so that when the move button is pressed, the attribute self.Position.(X/Y) changes by 40 so that it occupies the adjacent space. To avoid two pieces occupying the same space, I made it so th -
help! spinning out of control!
by hertzcastle ·thanks, i had both actors on the same collision group, and the rotation was down to the "angular velocity" attribute! -
Trying to create a card flip effect
by CodeMonkey ·Add a condition in your card flipping rule to check if self.size.width attribute changes and is less than 100. -
Trying to create a card flip effect
by JackieMac ·Hmm, so how do I ensure the card grows back to a certain size, let's say 100x150 pixels? Is there a way to constrain that? -
help! spinning out of control!
by CodeMonkey ·Without looking at your game scene and actor attribute settings I can only make a guess. -
Trying to create a card flip effect
by JackieMac ·I've tried using a combination of a Time with a Change Size (-4) for 0.5 seconds constraining the height to 100 pixels. (With a mouse click to trigger it.) So, this part works fine. The image shrinks -
Removing color behind sprite.
by CodeMonkey ·Unfortunately collisions are currently box shaped so the transparent part of the image will still collide. If you can, crop off as much of your image that you don't need and resize your actor to fit i -
Removing color behind sprite.
by julesventurini ·I have a sprite with a green background behind it, usually in other programs, there is a function where this gets removed, it looks kind of ugly and messes up collisions. -
Drifting.
by CodeMonkey ·Try the Change Attribute behavior on the actor's Motion->Linear Velocity->X/Y and setting it to 0 for each one as you begin turning. -
Collision Bug?
by Boinkology ·In the physics attribute of an object, you can set a collision group and a bool for collidable. -
Change volume of sound by pressing key
by Yoshi ·How you could do this is to have a new custom attribute called My Volume, and when a key is pressed, change it to be MyVolume + 1 or MyVolume-1, and play the corresponding sound file. I know it's les