Hi! Welcome to the forum for Platinum Arts Sandbox Free 3D Game Maker. I currently have the forums locked as I am attempting to properly update them.

In the meantime please join the new Discord Server!

If you have any questions please e-mail me through the Platinum Arts website.

Level transitions in SSP

Having issues not related to a specific Sandbox game mode? Get help here!
Please also read the rules for support when posting support requests.
Failure to comply with the forum rules may result in your topic being locked without resolution.
Locked
DbRek
Member
Member
Posts: 2
Joined: April 8th, 2012, 5:07 pm

Level transitions in SSP

Post by DbRek »

Hey.

I've been working on a ssp game with a friend of mine, and we've come across a serious problem.
We have 3 levels (of which 2 are already completed, I know we should've checked this before but
what can you do, right) in our game and we'd really need to be able to change levels once a level is complete.

Now my question is, is it possible to do level transitions in SSP mode using for example, triggers or any
other method or is this only possible in FPS and RPG modes.

Thanks for the help.
chocolatepie33
Support Team
Support Team
Posts: 2458
Joined: April 27th, 2010, 5:31 pm
IRC Username: CP

Re: Level transitions in SSP

Post by chocolatepie33 »

I've tried the same thing before using FPS Cubescript (as opposed to RPG Cubescript), and it doesn't work. From what I know, SSP mode pretty much doesn't have a scripting language to do stuff. I think you can do some things with entities related to SSP mode (such as camera entities), but that's about it. If you look under packages/base/ssp/ssptest.cfg, you find this:

Code: Select all

axis_script_5 = [
	setcamera (if (|| (= (getyaw) 90) (= (getyaw) 270)) 0 1)
]
This is scripting, but I don't know if you could use that to change maps. You might find the answer through experimentation.
Julius wrote:Contribute to http://www.opengameart.org NOW!
Save the wiki!
DbRek
Member
Member
Posts: 2
Joined: April 8th, 2012, 5:07 pm

Re: Level transitions in SSP

Post by DbRek »

Ok. Thanks for the info, Chocolatepie33. I'm gonna try experimenting with the entities.
Locked