Esempio n. 1
0
 public OBJ_Player(string gameObject_name) : base(
         GActorProperties.GetDefaultProperties(GActorPropertiesType.nonNPC)
         )
 {
     gameObjectName = gameObject_name;
     Init();
 }
Esempio n. 2
0
 public GAnimal() : base(
         GActorProperties.GetDefaultProperties(GActorPropertiesType.Animal)
         )
 {
     sprite = SpriteDatabase.sprites.default_object;
     type   = GObjectType.Animal;
 }
Esempio n. 3
0
 public GActor(GActorProperties properties)
 {
     base.type = GObjectType.Actor;
     this.properties = properties;
     idle = true;
     reflist_index = new GActor_RefList_Index ();
 }
Esempio n. 4
0
 public GActor(GActorProperties properties)
 {
     base.type       = GObjectType.Actor;
     this.properties = properties;
     idle            = true;
     reflist_index   = new GActor_RefList_Index();
 }
Esempio n. 5
0
 public GCharacter(GActorProperties properties)
     : base(properties)
 {
     Init ();
 }
Esempio n. 6
0
 public OBJ_Player() : base(
         GActorProperties.GetDefaultProperties(GActorPropertiesType.nonNPC)
         )
 {
     Init();
 }
Esempio n. 7
0
 public GCharacter() : base(
         GActorProperties.GetDefaultProperties(GActorPropertiesType.NPC)
         )
 {
     Init();
 }
Esempio n. 8
0
 public GCharacter(GActorProperties properties) : base(properties)
 {
     Init();
 }