-
Is it possible to apply different ID to same actor?
by greedydady ·First of all, I have an actor call A with 3 attribute inside (slot1-3). I constrain the 3 slot to 3 boolean in tables. What i do after is applying a rule whenever clicking on actor "A&quo -
Mid point of a circle and detect outside it
by SingleSparq ·Yes - Actually easier than I thought. Made a self attribute on the moving actor self.distancefrom and constrained to that magnitude( self.Position.X -624, self.Position.Y -380) - The 624 and 380 being -
Custom Font Number not Working
by tatiang ·So what does the DisplayText show? Try it for each digit. Also try creating a new actor and doing a Change Attribute self.Image to "5" and another actor with Change Attribute self. -
Custom Font Number not Working
by tatiang ·Try constraining self.Image to game.score without the ..".png" (this is optional, really, and should work either way but try it without it). -
Custom Font Number not Working
by Pyrite ·(My Constrain Attribute inside of the 0.png actor!(The code in the vid didn't work so I tried this 1 in the pic!) -
Touch not working on bigger scene?
by planetxo ·(Quote) -
Spawn actor can change father attribute
by tatiang ·the positions and other attributes of two actors (in this case an enemy and a health bar but it would be the same for a gun and a bullet): http://forums.gamesalad.com/discussion/comment/384027/#Comme -
Spawn actor can change father attribute
by xitpu ·"In your actor that shoots bullets, add the condition When attribute game.bulletCount < game.maxBullets to whatever rule condition you already have. -
Need some help with Score/time keeping
by tatiang ·To limit bullets, you'll need two game attributes, both integers: game.bulletCount and game.maxBullets. Set the first to 0 and the second to however many you want to limit it to (e.g. 3). -
Spawn actor can change father attribute
by The_Gamesalad_Guru ·Wow I have no idea what that is. Are you using a self attribute in the actor? For other actors to read it it must be a game level attribute. -
Spawn actor can change father attribute
by xitpu ·So I add numFire attribute on ACT1 prototype. -
How to make a piller reach the middle of the screen?
by lpetrowicz ·ok, check that. I changed around my +100 and -100 attribute and now it moves up and down. However, it moves up and down to the right until it's off the screen and I have fixed position checked under t -
simple counting app
by Gdogg ·i have it working, however the count is not accurate, i have a change attribute, game.count to game.count-1 and -2 and 0 the -1 if touched once is ok, if i touch it more times it multiplys ie: -1 -3 -
How To Create A Point Per Kill System?
by BonepileGames ·Change Attribute -
Hey guys I need help with multiple interval speeds?
by tatiang ·Create a game attribute called game.fallingSpeed (real) and set it to the initial speed of the falling item actor. In the falling item actor, use game.fallingSpeed as the speed. In that actor or any -
1 touch changes my attribute+1, how do if touch held continue to increment attribute+1 every x sec?
by tatiang ·Inside of the When Touch is Pressed rule, place an every 0.5 seconds timer with the change attribute behavior inside of it. -
1 touch changes my attribute+1, how do if touch held continue to increment attribute+1 every x sec?
by sawkastee ·I have an actor that if touch is pressed it changes (my attribute+1)%60. How do I when touch is held down continue to increment (my attribute+1)%60 every .5 seconds? -
Auto restart for scene
by CodeMonster ·ok lets just say that your life meter and hit points are both interger attributes and are both default set to 5. -
Run Button = Animate Character
by bjandthekatz ·Create an boolean attribute called jump (or whatever) -
Touch not working on bigger scene?
by tatiang ·(Quote)