-
Can I make collidables overlap?
by tatiang ·You could constrain the player actor so that the bottom of it is just below the top edge of the platform actor. Like this: -
Tizen Back button help
by wpaten ·Method 2 - 1 Scene Usage - You create a rule that calls for a Key Pressed and type in the word back. Then you create a Real attribute in the scene or game set to 0. Then in your Back Button Rule, ju -
Resetting the table in my game?
by colander ·I adjust my score attribute in replay and save it to a table and then reset the scene. On all my scenes I have a "Load Scene Attributes" actor of screen which sets all my attributes -
Spinning Cartoon Earth
by Socks ·To get it to work with a bouncing ball, all you'd really have to do is constrain the mask (that masks the scrolling earth image) to a ball, as the ball bounces the mask (and earth image) will follow. -
Reseting the gameAttributes
by tatiang ·And more generally speaking, wherever you have a rule that detects the end of the level, add Change Attribute game.BricksOnScreen to 4 to the end of that rule right before you change scene or change l -
Reseting the gameAttributes
by BBEnk ·are you actually changing to another scene? if so just have a actor with a change attribute behaviour thats change "your attribute name" to 4. and make sure this actor is at the bott -
Rotating An Object Whilst Constraining Another Object To Remain In The Same Relative Place.
by Socks ·Watch this video, particularly the yellow and blue indicator circles and the red indicator line . . . . I've taken the constrain behaviour code I posted above and coloured the values to reflect the in -
Automatically set language based on device language
by jonmulcahy ·I think it should be pretty easy to detect the device language settings as an attribute and make changes based on that. -
Spawning actors makes an attribute change value unexpectedly
by tatiang ·I haven't spent too much time on your file but I think you should put the collision rule in the hero actor rather than in the platform actor. Or at least move the Otherwise section to a rule in the h -
Spawning actors makes an attribute change value unexpectedly
by gayanj ·Oh man! I see the problem. How can I keep the value from changing even if an actor spawns? Should I use another attribute to keep track if a collision has happened? -
Spawning actors makes an attribute change value unexpectedly
by tatiang ·In your platform actor, you have a rule called "Change Jump Attribute" and in the Otherwise section you have a Change Attribute behavior that is changing the value of game.isGrounded -
Spawning actors makes an attribute change value unexpectedly
by gayanj ·I'm referring to the isGrounded game attribute. When a block actor spawns even though the hero actor is on a block the attribute changes to false and this makes the hero attribute slide off the block. -
Spawning actors makes an attribute change value unexpectedly
by tatiang ·I have the file... which attribute are you referring to? And what value are you expecting it to have at what point and what value does it actually have at that point? -
Spawning actors makes an attribute change value unexpectedly
by gayanj ·I have setup my rules so that It continuously spawns actors. But as soon as an actor is spawned another attribute changes its value. I am not sure how that happens. -
Rotating An Object Whilst Constraining Another Object To Remain In The Same Relative Place.
by Socks ·Constrain Object2's X position to 100*cos( Object1's rotation)+ Object1's X position -
Help with simple collision glitch?
by jblb2424 ·I am having a glitch in my game involving collisions that I cannot seem to figure out. In my game I have my player with a "collide with wall" behavior, but when I add the same &q -
How to make one actor react when another is touched?
by tatiang ·That or if it depends on the value of a self attribute and that attribute's value has been changed manually on the actor on the scene but not on the prototype actor (essentially giving it an &qu -
Rotating An Object Whilst Constraining Another Object To Remain In The Same Relative Place.
by gamewizard99 ·I have an object which is 200x200. I want to be able to rotate object2 so it remains in the same relative place to object1 even when rotated and moved. I've tried using constrain self.position.Y to (f -
How to make one actor react when another is touched?
by Gordio283 ·U know what I'd suggest, b/c your code is simple. If it isn't working, it must be a simple mistake. Create a new attribute game.Diagnostic1 -
How to make an enemy go after my player?
by jblb2424 ·In my game, I have gravity on all of my players through the "acceleration" attribute, so the enemy cannot simply float to to the player using "move to". Also, I hav