Game Development Community

Broken stairs

by Caleb · in General Discussion · 06/14/2006 (2:51 pm) · 2 replies

Ok here's the problem, I made a very large world but needed to be twice as big, making it bigger caused some terrain problems so I cut my guys size and speed in have. After doing that I need to make my buildings have as large to. But when I shrink my building (in quark or torque) I can't go up stairs without jumping.

I'm prepared to remodel my building if I need to, but I'm hoping it won't come to that.

#1
06/14/2006 (2:57 pm)
There is a step height somewhere for this player.
modify that.
I cannot remember if it is in the script.
or code.

but I'm sure if you poke around you will find it.
#2
06/14/2006 (3:25 pm)
I tried to change my step height already but let me take another look................

Well I fixed it, here's what I was doing wrong if someonelse needs to look at this.

I tried to change my step height with this:

maxStepHeight = 2;
when it needed to be this:
PlayerShape.maxStepHeight = 2;

Thanks BadGuy.