-
make wheel?
by Clouds ·Constrain the actor's X position to . . . AAA*cos(self.time*BBB)+CCC -
Physic (gravity) issue
by rebzone ·Thanks MotherHoose... I still have to get confident with some behaviours (like constrain attribute), and your hint sounds like it could be the answer I needed (Image) -
Music that loops forever - even between scenes?
by Chobbiface ·I presume you have the play music behaviour in your game scene? - Which is why it triggers new each time you get to that scene. You'll need an attribute with it. -
Math problem - the higher attribute is...
by Clouds ·You can simply constrain the actors height to the game.attribute (or some scale of it). -
Math problem - the higher attribute is...
by POM ·Constrain self.size.height To game.attribute*10 (or any other value that works for you) -
Math problem - the higher attribute is...
by IsabelleK ·I have a problem - I have an actor, and I need it to change its height: the bigger game.attribute is, the higher the actor becomes, and the other way: the smaller game.attribute is, the lower the acto -
Physic (gravity) issue
by MotherHoose ·tell the computer with a changeAttribute or constrainAttribute to make it so. -
Jet Fighter - Work in Progress...
by ozboybrian ·I would like to see collisions for if the Jet flies in to a foe (Image) -
making a limitless scene
by UnicornInvasion ·Change Attribute, Change self.position.Y to 500 ( or something like that) -
Help with positioning a line!
by JohnPapiomitis ·Make 5 game attributes. 1 boolean, and 4 real. Call them showLine(boolean), targetX, targetY, characterX and characterY (real) -
Changing Actor Number When Another Deleted
by robert.mccarthy ·change attribute game.destroyedactor to self.mynumber -
Dragged Actor move/jump on release
by robert.mccarthy ·When you drag your actor, do you just constrain the X/Y of the mouse to your finger (so it snaps to the centre), or are you able to drag the actor from any part of it? -
Making a swiping menu that wraps in X direction
by inmonjones ·Method #1: When touch is pressed, constrain the actors x position to the mouse position + an offset calculated when touch is pressed (initial touch location - self.position). -
Conversations?
by MotherHoose ·you can do easily with a game/scene/actor attribute: text# -
How Do I make An Attribute = A number after something is clicked
by Philie ·Just do a rule when actor receives touch then change attribute game.lives to 3 (no need to put in the game.lives or plus sign) -
How Do I make An Attribute = A number after something is clicked
by teamepiphany ·Im having some trouble with changing My attributes values. I would like it so that I could have a button that when clicked changes an atribute to an exact number rather then just adding on to my alrea -
Clicking One Actor to Change Image in Another!
by Philie ·Basically, I have letters, each is an image, you tap that letter, it will add that letter to an attribute, and I also want it to change the image of a tile to the image of the tile with that letter. T -
Works in GS but not device...
by The_Gamesalad_Guru ·Post your code and we can look at it. You're unlock attribute need to be a game level attribute or it won't load until the scene does. So say you have a game level attribute that says level one is unl -
Change Attribute to Add Letter
by Philie ·Bit confused on this one - when I do a change attribute, instead of adding say.. 25, or whatever, I would like to add a letter. I understand it would be game.word then whatever allows me to add a lett -
Collision Problems!
by SlickZero ·If they are coming at you from the side, then you can constrain their position Y to a specific value, and they won't go down when you land on them.