mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-27 15:25:40 +00:00
uninitialized and unused value cleanups
(cherry picked from commit 1f08602cf0ad84409cd8b3520510f9c6ce7d5f9c)
This commit is contained in:
parent
1230d0d280
commit
0d4221fa59
38 changed files with 176 additions and 360 deletions
|
|
@ -112,7 +112,18 @@ public:
|
|||
bool mCanDamp;
|
||||
public:
|
||||
|
||||
ProbeInfo() : mScore(0) {}
|
||||
ProbeInfo()
|
||||
{
|
||||
mScore = 0;
|
||||
mAtten = 0.0f;
|
||||
mCanDamp = false;
|
||||
mDirty = false;
|
||||
mIsEnabled = true;
|
||||
mObject = NULL;
|
||||
mPriority = 0;
|
||||
mProbeShapeType = Box;
|
||||
mRadius = 10.0f;
|
||||
}
|
||||
~ProbeInfo() {}
|
||||
|
||||
// Copies data passed in from light
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue