some better default values

This commit is contained in:
Duion 2017-02-25 17:44:48 +01:00
parent c44842bf2f
commit 99f7f1a97c
3 changed files with 8 additions and 8 deletions

View file

@ -102,10 +102,10 @@ TSStatic::TSStatic()
mShapeName = ""; mShapeName = "";
mShapeInstance = NULL; mShapeInstance = NULL;
mPlayAmbient = true; mPlayAmbient = false;
mAmbientThread = NULL; mAmbientThread = NULL;
mAllowPlayerStep = false; mAllowPlayerStep = true;
mConvexList = new Convex; mConvexList = new Convex;

View file

@ -44,11 +44,11 @@ ForestItemData::ForestItemData()
mShapeFile( NULL ), mShapeFile( NULL ),
mCollidable( true ), mCollidable( true ),
mRadius( 1 ), mRadius( 1 ),
mWindScale( 0.0f ), mWindScale( 1.0f ),
mTrunkBendScale( 0.0f ), mTrunkBendScale( 0.02f ),
mWindBranchAmp( 0.0f ), mWindBranchAmp( 0.1f ),
mWindDetailAmp( 0.0f ), mWindDetailAmp( 0.1f ),
mWindDetailFreq( 0.0f ), mWindDetailFreq( 0.1f ),
mMass( 5.0f ), mMass( 5.0f ),
mRigidity( 10.0f ), mRigidity( 10.0f ),
mTightnessCoefficient( 0.4f ), mTightnessCoefficient( 0.4f ),

View file

@ -200,7 +200,7 @@ Material::Material()
mAutoGenerated = false; mAutoGenerated = false;
mShowDust = false; mShowDust = false;
mShowFootprints = true; mShowFootprints = false;
dMemset( mEffectColor, 0, sizeof( mEffectColor ) ); dMemset( mEffectColor, 0, sizeof( mEffectColor ) );