-
How do i do it?
by Socks ·Maybe have a game attribute 'x'. -
Random spawning platforms with no timers! possible?
by Socks ·1) An attribute. -
How to stop game score to 0 ?
by Armelline ·If you've already got the attribute in use in a lot of places and don't want to replace it (though as @The_Gamesalad_Guru says, it's worth using an index if possible), you can also do this: -
How to stop game score to 0 ?
by The_Gamesalad_Guru ·Use an index attribute it only goes positive and stops at zero. -
my Youtube tutorial playlist clean up
by LumpApps ·* GS Quick Tip 3 - Finding an Attribute -
Turning physics.movable on and off for door
by Krellzar ·can I have done wrong? I tried to change the attribute as well, but nothing works. -
Display Text blurry - Android
by Hypnorabbit ·As mentioned I've tried all the fonts and they are all equally blurry on Android. I wonder if the GS text engine is just no good - unfortunately I need a display text attribute to reference off 2000 c -
user controled movement
by zweg25 ·Not sure what type you are looking for. You can drag in a rule and say when touch is pressed constrain attribute self position x and y to mouse position x and y. You can say when mouse button is down -
Display Text blurry - Android
by Hypnorabbit ·Does anyone else find that the display text attribute is real blurry on Android? I've got a white text attribute with a clear background referencing off a table that just looks terrible compared to my -
Moving an Actor to a certain position with one touch
by Simple Apps ·Don't use Move Behaviour,,use Change attribute behaviour..follow this -
Universal Builds for iOS and Android,and anything else,using iPad build and "Stretch" no distortion.
by BBEnk ·So issue is just first scene not reading change attributes correctly or should I say not getting device display size on startup, but will after scene change. -
Universal Builds for iOS and Android,and anything else,using iPad build and "Stretch" no distortion.
by BBEnk ·Well a display text will detect the correct device display size but for some reason a change attribute want. -
Universal Builds for iOS and Android,and anything else,using iPad build and "Stretch" no distortion.
by BBEnk ·No it was fixed because I reported it before but now it's been back, and I do use a white image for my custom loading image and my first scene is my real splash screen which also sets up my attributes -
How to Make a checkpoint ?
by ikad ·(Quote) -
How to Make a checkpoint ?
by JohnPapiomitis ·Save all the attributes for the health, score, position, ect when they reach the checkpoint. Then have load attribute behaviors and load all those attributes you saved when the continue button is pres -
Is there a way to spawn something with random width?
by Dasavur ·So I followed these instructions and put the "Change Attribute: self.size.width to random(20,45)" as the very first thing of the actor that I am wanting to spawn but now it doesn't s -
Trouble spawning actor at certain distance from another actor.
by tatiang ·Change attribute game.randomChoice to random(1,2) -
Is there a way to spawn something with random width?
by tatiang ·So the advice above is correct as far as adding a Change Attribute behavior. Just make sure it's not inside of a rule. The change will occur instantly so you shouldn't even notice it happening; it w -
Is there a way to spawn something with random width?
-
Is there a way to spawn something with random width?
by BBEnk ·use the change attribute behavior in the actor thats being spawned like so change attribute self.size width to Random(20,45) and it will do this once spawned.