2007.06.30, 08:08 AM
I'm trying to make a script that is almost completely done using object parameters so you don't have to alter the script at all.
Now I have a problem.
Object parameter 5 is set to 20.
If I replace it with only
it works.
Are parameters automaticaly converted into strings?
Is there any work around for this? It's really urgent.
EDIT: For now, I'm going to use a fixed value in order to finish my game in time, but it would be nice if someone could explain this to me.
Now I have a problem.
Code:
obj.event.chain(camera_time,'buttonBack');
var camera_time = obj.setting.getParameter(5);If I replace it with only
Code:
obj.event.chain(20,'buttonBack');Are parameters automaticaly converted into strings?
Is there any work around for this? It's really urgent.

EDIT: For now, I'm going to use a fixed value in order to finish my game in time, but it would be nice if someone could explain this to me.
