Author Topic: [Solved]Scaling static objects in JVS[Sort of]  (Read 1189 times)

I tried to make some Props Items work in JVS.
You know Props is old and buggy, unusable.
So far, I managed to make the object show up.
But the object is too small.
Originally the object is scaled 7 times bigger in the Props system.
How can I scale a StaticShape using the JVS system?
« Last Edit: August 12, 2011, 07:06:54 PM by Kiwi »

Bump.

I just can't figure out how to scale Static Shapes.
Please provide assistance.

Code: [Select]
datablock fxDtsBrickData(MugBrickData)
{
category="Props";
subCategory="Home";
uiName="Mug";
iconName = "add-ons/props_household/brickicons/Mug";

brickSizeX=1;
brickSizeY=1;
brickSizeZ=2;

//Is a prop!
isProp=1;

//Brick
brickRender=0;
brickCollide=1;
brickRaycast=1;

//Model
spawnModel=MugShape;
modelOffset="0 0 0";
modelScale="1.7 1.7 1.7";

colorCount=1;

colorGroup[0]="ALL";
colorMode[0]="Intensity";
colorShift[0]="1 1 1 1";
};
"modelScale = "X Y Z";
I believe.
« Last Edit: August 08, 2011, 06:49:05 PM by Daenth »

Thanks for trying to help but this is irrelevant.
"modelScale" is just a variable in System_PropSys.
But I am using JVS and apparently JVS has no function for scaling objects.
All door models jet released for JVS are appearantly the right size, making scaling unneccessary for them.
But the models I use are originally Prop models without the right size who where rescaled to fit into Blockland.
I would have two options:
1. Making the models the right size.
2. Rescaling the models.

I don't have the raw model files but only .DTS models. 1 is not possible.
I don't have the knowledge how to properly rescale the model in JVS. 2 is not possible, yet

Thanks for trying to help but this is irrelevant.
"modelScale" is just a variable in System_PropSys.
But I am using JVS and apparently JVS has no function for scaling objects.
All door models jet released for JVS are appearantly the right size, making scaling unneccessary for them.
But the models I use are originally Prop models without the right size who where rescaled to fit into Blockland.
I would have two options:
1. Making the models the right size.
2. Rescaling the models.

I don't have the raw model files but only .DTS models. 1 is not possible.
I don't have the knowledge how to properly rescale the model in JVS. 2 is not possible, yet
Well, take the code from the PropSys that resizes and add it to your content code.

Well, take the code from the PropSys that resizes and add it to your content code.
This exactly is my problem. I do not know how to do this properly.
I tried changing the code but it did not work, it had no point searching blindly anyway.
But it doesn't matter now for someone here did fix the Prop system which I use now.