-
Flappy Bird
by joshiwu ·If "mouse button" down change attribute game.action to true -
randomize motion & bullets firing by bossman
by Tosanu ·the every timer's set of functions, a Change attribute, so that when it reactivates on the next loop the expression changes. Is that impossible? -
Passing Actor position data to expression editor
by RThurman ·Change Attribute: game.newAttributeX To: self.Position.XChange Attribute: game.newAttributeY To: self.Position.Y -
randomize motion & bullets firing by bossman
by tatiang ·For random movement within a range, create random movement rules (for example, by using a custom timer) and constrain the actor's position: -
Adding Bonus Points to Score Points in "Game Over" Actor
by tatiang ·Sure. I assume you already have a rule condition for game over (e.g. game.gameOver=true). In that rule, have a change attribute to change game.score to game.score+game.bonus. -
How do I make my actor falls and land?
by Lynkk ·The add/remove row attribute does not work well. I have a table with 15 rows. But sometimes a couple, if not all, of my 3 object is just going straight to the bottom of the screen (value 0). Any ideas -
randomize motion & bullets firing by bossman
by Tosanu ·Well, for the bullets, you should be able to use a timer with an attribute that is determined within the timer as random(3,7) for the value if you don't need any specific variance or patterns, so that -
Passing Actor position data to expression editor
by mouldysoul ·Sorry think I worked it out, make two new attributes and then do change attribute in the second actor, self.postion.x to game.newattributex, then I can link the data back to the expression in the firs -
STEAM JACK - out NOW
by BBEnk ·Also play testing I discovered a bug on mini-Game 2 Plasmag miner once you complete level it want advance to next level somehow I set a attribute back to zero not sure how that happened anyway already -
Beat 'Em Up Attribute Collision? Fighting An Enemy Help!?!?!
by colander ·Try a three game level attribute and use Constrain to record the hero's rotation position, position.x and position.y and use these in you enemy rules to determine the relationship between the two and -
Beat 'Em Up Attribute Collision? Fighting An Enemy Help!?!?!
by KenK ·I have tried setting an attribute called 'PlayerFront' so that when the left button is pressed the 'PlayerFront' attribute is set to the left side of the player (I used the expression: self.position.x -
Destroy actor. spawn actor. then change scene. HELP!!!
by tenrdrmer ·Create a self Boolean attribute called nextscene then at the same time as your play sound behavior change self.nextscene to true. -
How to trigger a Next Button for Drag and Drop Game
by Dude6230 ·(Quote) -
How to trigger a Next Button for Drag and Drop Game
by tatiang ·Give each letter actor a self attribute (text) called self.myLetter. Manually enter the letter in as the default value for each actor. Then add these rules: -
Game works fine on preview player. Bug when testing on device.
by tatiang ·There may be an attribute you've forgotten to reset if it's working once but not after restarting. -
Last question about overscan/letterbox/stretch to fit before publishing
by BonepileGames ·I have Save and Load attribute. Do they work properly when I test my game through TestFlightApp.com ? -
How to fire a bullet in a curve
by deadbeat ·Then get a change attribute behaviour and change self.motion.angularvelocity to 50 (change this number to increase the angle of incidence on the curve.) -
Store Set up with buying different Actors
by bjandthekatz ·You can alter my demo to if game.coins is greater than self.Price and touch is pressed change attribute character selected to <#>. Just replace the Characters Purchased attribute with yo -
how to make actor return to original size when mouse is released??
by Adrenaline ·No problem! I don't know of a tutorial that does exactly this, but you'll see the practice of saving attributes in almost every tutorial out there. -
how to make actor return to original size when mouse is released??
by tatiang ·Create two real attributes called self.startWidth and self.startHeight (what you call them doesn't matter but they should be of type Real).