Exemplo n.º 1
0
        public float GetInputWeight(int inputIndex)
        {
            float result;

            if (this.CheckInputBounds(inputIndex))
            {
                result = PlayableHandle.GetInputWeightFromIndexInternal(ref this, inputIndex);
            }
            else
            {
                result = 0f;
            }
            return(result);
        }