示例#1
0
 public static void PlayingAnimationWithoutFramesException(PCharacterInstance instance)
 {
     Debug.LogErrorFormat("Trying to play animation without Frames: {0}", instance.gameObject.name);
 }
示例#2
0
 public static void FetchRigFromSolidCharacterException(PCharacterInstance instance)
 {
     Debug.LogErrorFormat("Trying to fetch RigidBody2D Component from a solid Character instance: {0}", instance.gameObject.name);
 }
示例#3
0
 public static void RigidBody2DIsNullException(PCharacterInstance instance)
 {
     Debug.LogErrorFormat("Trying to fetch a null RigidBody2D: {0}", instance.gameObject.name);
 }
示例#4
0
 public static void BaseIsNullExcpetion(PCharacterInstance instance)
 {
     Debug.LogErrorFormat("Base of instance {0} is null", instance.gameObject.name);
 }