mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-17 18:35:24 +00:00
fill in the validated variables
This commit is contained in:
parent
fa760fa746
commit
f633ef3a3d
184 changed files with 1359 additions and 1216 deletions
|
|
@ -140,11 +140,11 @@ EndImplementEnumType;
|
|||
void afxPhraseEffectData::initPersistFields()
|
||||
{
|
||||
docsURL;
|
||||
addField("duration", TypeF32, myOffset(duration),
|
||||
addFieldV("duration", TypeRangedF32, myOffset(duration), &CommonValidators::NegDefaultF32,
|
||||
"Specifies a duration for the phrase-effect. If set to infinity, the phrase-effect "
|
||||
"needs to have a phraseType of continuous. Set infinite duration using "
|
||||
"$AFX::INFINITE_TIME.");
|
||||
addField("numLoops", TypeS32, myOffset(n_loops),
|
||||
addFieldV("numLoops", TypeRangedS32, myOffset(n_loops), &CommonValidators::NegDefaultInt,
|
||||
"Specifies the number of times the phrase-effect should loop. If set to infinity, "
|
||||
"the phrase-effect needs to have a phraseType of continuous. Set infinite looping "
|
||||
"using $AFX::INFINITE_REPEATS.");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue