Hi, this might be a really stupid question but its very late and im very tired.
What i have accomplished so far is when player presses up on a ladder (its a platform game), an invisible active (a sensor) locks the player's X position to its own so the player can go up and down the ladder. that works really nice until i add a second ladder to the Screen.
Then the player jumps to the newer ladder from the where the sensor for the original ladder is. I thought if i was to spread a value in the sensor alt value it would stop this issue by identifying the active (sensors) as different objects.
i imagine its got somthing horrible to do with fast loops which i have never understood. if soo please explain to me like im a child!
Any ideas??
You were on the right track, though whether this works depends on your setup. It could be something as simple as spreading a value through the sensors (We'll say value A) and doing this:
Repeat while player presses up
+ Player overlaps sensor
>>Set Player Value A to Sensor Value A
Sensor Value A = Player Value A
>>Set Player X To Sensor X.
that will work with my setup. thank you muchness for the help. I cant believe i didnt do that anyway. It seems so very obvious! Cant wait to get that going cause that pretty much finishes my entire game engine! Thanks again