Danmaku_no_Kyojin.BulletEngine.BulletMLNode.GetValue C# (CSharp) Method

GetValue() public method

Gets the value of this node for a specific instance of a task.
public GetValue ( BulletMLTask task ) : float
task BulletMLTask Task.
return float
        public float GetValue(BulletMLTask task)
        {
            //send to the equation for an answer
            return NodeEquation.Solve(task.GetParamValue);
        }