Esempio n. 1
0
        public void Update()
        {
            if (ZoneToObserve != null) ZoneTexture = ZoneToObserve.Texture;
            else ZoneTexture = null;

            if (ObjectToObserve != null) ObjectTexture = ObjectToObserve.Texture;
            else ObjectTexture = null;

            if (PersonnageToObserve != null) PersonnageTexture = PersonnageToObserve.Texture;
            else PersonnageTexture = null;

            if (PersonnageTexture == null)
            {
                // BASE
                if (ObjectTexture == null) SetTextures(ZoneTexture);
                else
                {
                    // OBJET + BASE
                    ObjectTexture.SetTextureDeBase(ZoneTexture);
                    this.SetTextures(ObjectTexture);
                }
            }
            else
            {
                if (ObjectTexture == null)
                {
                    // PERSO + BASE
                    PersonnageTexture.SetTextureDeBase(ZoneTexture);
                    this.SetTextures(PersonnageTexture);
                }
                else
                {
                    // PERSO + OBJET + BASE
                    ObjectTexture.SetTextureDeBase(ZoneTexture);
                    PersonnageTexture.SetTextureDeBase(ObjectTexture);
                    this.SetTextures(PersonnageTexture);
                }
            }
        }
Esempio n. 2
0
 public TextureWoodPlatformVertical(Texture decor)
     : base(decor)
 {
 }
Esempio n. 3
0
 public TextureWoodPlatformHorizontal(Texture decor)
     : base(decor)
 {
 }
Esempio n. 4
0
 public TextureTable(Texture decor)
     : base(decor)
 {
 }
Esempio n. 5
0
 public TextureSkull(Texture decor)
     : base(decor)
 {
 }
Esempio n. 6
0
 public TexturePlayer(Texture decor)
     : base(decor)
 {
 }
Esempio n. 7
0
 public TexturePlane1(Texture decor)
     : base(decor)
 {
 }
Esempio n. 8
0
 public Case(Texture textures)
 {
     if (textures != null) Textures = textures;
     else  Textures = new TextureHerbe();
 }
Esempio n. 9
0
 public TextureFootIcon(Texture decor)
     : base(decor)
 {
 }
Esempio n. 10
0
 public TextureDollar3D(Texture decor)
     : base(decor)
 {
 }
Esempio n. 11
0
 public void SetTextureDeBase(Texture decor)
 {
     Decor = decor;
 }
Esempio n. 12
0
 public TextureDecorator(Texture decor)
 {
     SetTextureDeBase(decor);
 }
Esempio n. 13
0
 public void SetTextures(Texture decor)
 {
     Textures = decor;
 }
Esempio n. 14
0
 public TextureBee(Texture decor)
     : base(decor)
 {
 }
Esempio n. 15
0
 public TexturePikachu(Texture decor)
     : base(decor)
 {
 }
Esempio n. 16
0
 public TextureCrossedCircle(Texture decor)
     : base(decor)
 {
 }
Esempio n. 17
0
 public Case()
 {
     Textures = new TextureHerbe();
 }