コード例 #1
0
ファイル: MousePickEvent.cs プロジェクト: DevZhav/The-Forest
        public override string ErrorCheck()
        {
            string str = string.Empty;

            str += ActionHelpers.CheckRayDistance(this.rayDistance.Value);
            return(str + ActionHelpers.CheckPhysicsSetup(this.GameObject));
        }
コード例 #2
0
        public override string ErrorCheck()
        {
            string text = "";

            text += ActionHelpers.CheckRayDistance(rayDistance.Value);
            return(text + ActionHelpers.CheckPhysicsSetup(GameObject));
        }
コード例 #3
0
        public override string ErrorCheck()
        {
            string errorString = "";

            errorString += ActionHelpers.CheckRayDistance(rayDistance.Value);
            errorString += ActionHelpers.CheckPhysicsSetup(Fsm.GetOwnerDefaultTarget(GameObject));

            return(errorString);
        }
コード例 #4
0
        public override string ErrorCheck()
        {
            string errorString = "";

            errorString += ActionHelpers.CheckRayDistance(rayDistance.Value);
            errorString += ActionHelpers.CheckPhysicsSetup(GameObject);

            return(errorString);
        }