BulletMLLib.BulletMLTree.GetValue C# (CSharp) Method

GetValue() public method

public GetValue ( BulletMLTask task ) : float
task BulletMLTask
return float
        public float GetValue(BulletMLTask task)
        {
            int startIndex = 0;

            return GetValue(0, ref startIndex, task);
        }

Same methods

BulletMLTree::GetValue ( float v, int &i, BulletMLTask task ) : float

Usage Example

Example #1
0
 public override BLRunStatus Run(BulletMLBullet bullet)
 {
     bullet.Speed = node.GetValue(this);
     //if(bullet.index == DISP_BULLET_INDEX) Debug.WriteLine("SetSpeed:" + bullet.Speed);
     end = true;
     return(BLRunStatus.End);
 }
All Usage Examples Of BulletMLLib.BulletMLTree::GetValue