コード例 #1
0
        /* Setter & Getter */

        public void SetObjectType(JCS_UnityObjectType ob)
        {
            this.mObjectType = ob;
        }
コード例 #2
0
 /// <summary>
 /// Check if TYPE is current object type.
 /// </summary>
 /// <param name="type"> Object type you want to confirm. </param>
 /// <returns>
 /// Return true, if TYPE is this object type.
 /// Return false, if TYPE isn't this object type.
 /// </returns>
 public bool IsObjectType(JCS_UnityObjectType type)
 {
     return(this.GetObjectType() == type);
 }