Changeset 4987 for 2014/24


Ignore:
Timestamp:
2014-06-12 14:58:30 (9 years ago)
Author:
frmaenpa
Message:

Nt olen tehnyt lisaa objekteja ja nyt viholliset seuraavat!!!

Location:
2014/24/FransM/Supermerjo
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • 2014/24/FransM/Supermerjo/Supermerjo/Supermerjo/Supermerjo.cs

    r4925 r4987  
    1313    const int RUUDUN_KOKO = 40; 
    1414 
     15    //int pelaajanTerveys; 
     16    Vector pelaajanAloitus; 
     17 
    1518    PlatformCharacter pelaaja1; 
    1619 
    17     Image pelaajanKuva = LoadImage("imgres"); 
     20    Image pelaajanKuva = LoadImage("Supermerjohahmo"); 
    1821    Image tahtiKuva = LoadImage("tahti"); 
    19     Image taustakuva = LoadImage("Aero_woods"); 
     22    Image taustakuva = LoadImage("Supermerjokentantausta"); 
     23    Image Lattiakuva = LoadImage("Dirt"); 
     24    Image Laava = LoadImage("Laava"); 
     25    IntMeter pisteLaskuri; 
     26    private Image laavakuva = LoadImage("Laava"); 
     27    Image OrkkiKuva = LoadImage("Cooba"); 
     28    Image VehjeKuva = LoadImage("Vehje"); 
     29    Image Linna = LoadImage("Talo"); 
    2030 
    2131    SoundEffect maaliAani = LoadSoundEffect("maali"); 
    22  
     32    Vector aloitusPiste; 
     33    YesNoWindow Lopetus; 
     34    DoubleMeter HealttiMittari = new DoubleMeter(3, 0, 3); 
    2335    public override void Begin() 
    2436    { 
     
    2739        LuoKentta(); 
    2840        LisaaNappaimet(); 
    29  
     41        LuoElama(); 
     42         
    3043        Camera.Follow(pelaaja1); 
    3144        Camera.ZoomFactor = 1.2; 
    3245        Camera.StayInLevel = true; 
    3346    } 
     47    void PelaajaKuolee() 
     48    { 
     49        pelaaja1.Position = pelaajanAloitus; 
     50        HealttiMittari.Value = HealttiMittari.MaxValue; 
     51    } 
     52  
     53    void PainettiinValikonNappia(int valinta) 
     54{ 
     55  switch (valinta) 
     56  { 
     57    case 0: 
     58          Exit(); 
     59        break; 
     60    case 1: 
     61        pelaaja1.Position = aloitusPiste; 
     62        break; 
     63  }  
     64    } 
     65    void LuoMusiikki() 
     66    {  
     67     
     68    } 
    3469 
    3570    void LuoKentta() 
    3671    { 
    37         TileMap kentta = TileMap.FromLevelAsset("kentta1"); 
    38         kentta.SetTileMethod('#', LisaaTaso); 
    39         kentta.SetTileMethod('*', LisaaTahti); 
    40         kentta.SetTileMethod('N', LisaaPelaaja); 
    41         kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 
     72        //1. Luetaan kuva uuteen ColorTileMappiin, kuvan nimen perässä ei .png-päätettä. 
     73        ColorTileMap ruudut = ColorTileMap.FromLevelAsset("Supermerjokentta"); 
     74 
     75        //2. Kerrotaan mitä aliohjelmaa kutsutaan, kun tietyn värinen pikseli tulee vastaan kuvatiedostossa. 
     76        ruudut.SetTileMethod(Color.FromHexCode("B97A57"), LisaaLattia); 
     77        ruudut.SetTileMethod(Color.FromHexCode("9D8635"), LisaaPelaaja); 
     78        ruudut.SetTileMethod(Color.FromHexCode("22B14C"), LisaaPutki); 
     79        ruudut.SetTileMethod(Color.FromHexCode("E6E1F4"), LisaaPilvi); 
     80        ruudut.SetTileMethod(Color.FromHexCode("11FF88"), LisaaMyrkky); 
     81        ruudut.SetTileMethod(Color.FromHexCode("ED1C24"), LisaaLaava); 
     82        ruudut.SetTileMethod(Color.FromHexCode("FE12EC"), LisaaOrkki); 
     83        ruudut.SetTileMethod(Color.FromHexCode("A349A4"), LisaaVehje); 
     84        ruudut.SetTileMethod(Color.FromHexCode("84E2FF"), LisaaTalo); 
     85 
     86        //3. Execute luo kentän 
     87        //   Parametreina leveys ja korkeus 
     88        ruudut.Execute(20, 20); 
    4289        Level.CreateBorders(); 
    43        // Level.Background.CreateGradient(Color.White, Color.SkyBlue); 
     90        // Level.Background.CreateGradient(Color.White, Color.SkyBlue); 
    4491        Level.Background.Image = taustakuva; 
    45         Level.Background.Image = pelaajanKuva; 
    46     } 
    47  
    48     void LisaaTaso(Vector paikka, double leveys, double korkeus) 
    49     { 
     92        Level.Background.FitToLevel(); 
     93        //Level.Background.Image = pelaajanKuva; 
     94        //Level.Background.CreateGradient(Color.White, Color.Blue); 
     95 
     96 
     97    } 
     98    void LisaaValikko(PhysicsObject pelaaja,PhysicsObject kohde  
     99        ) 
     100    { 
     101        MultiSelectWindow valikko = new MultiSelectWindow("Uudelleen plz", 
     102"Exit", "Aloita!"); 
     103        valikko.ItemSelected += PainettiinValikonNappia; 
     104        Add(valikko); 
     105    } 
     106 
     107    void LisaaLattia(Vector paikka, double leveys, double korkeus) 
     108    { 
     109      //  LisaaSeina(paikka, leveys, korkeus, Color.Brown); 
    50110        PhysicsObject taso = PhysicsObject.CreateStaticObject(leveys, korkeus); 
    51111        taso.Position = paikka; 
    52         taso.Color = Color.Green; 
     112        taso.Image = Lattiakuva; 
     113        taso.CollisionIgnoreGroup = 1; 
    53114        Add(taso); 
    54115    } 
    55  
     116    void LisaaPilvi(Vector paikka, double leveys, double korkeus) 
     117    { 
     118        LisaaSeina(paikka, leveys, korkeus, Color.FromHexCode("E6E1F4")); 
     119    } 
    56120    void LisaaTahti(Vector paikka, double leveys, double korkeus) 
    57121    { 
     
    63127        Add(tahti); 
    64128    } 
     129    void LisaaLaavaAine(Vector paikka, double leveys, double korkeus) 
     130    {  
     131    PhysicsObject aine = PhysicsObject.CreateStaticObject(leveys,korkeus); 
     132    aine.Position = paikka; 
     133    aine.Image = laavakuva; 
     134    aine.Tag = "Laava"; 
     135    Add(aine); 
     136    aine.Color = Color.FromHexCode("ED1C24"); 
     137 
     138    } 
     139 
     140    void LisaaVahinkoAine(Vector paikka, double leveys, double korkeus) 
     141    { 
     142    PhysicsObject aine = PhysicsObject.CreateStaticObject(leveys,korkeus); 
     143    aine.Position = paikka; 
     144    aine.Tag = "Myrkky"; 
     145    Add(aine); 
     146    aine.Color = Color.FromHexCode("11FF88"); 
     147     
     148    } 
    65149 
    66150    void LisaaPelaaja(Vector paikka, double leveys, double korkeus) 
    67151    { 
     152        aloitusPiste = paikka; 
    68153        pelaaja1 = new PlatformCharacter(leveys, korkeus); 
    69154        pelaaja1.Position = paikka; 
     155        pelaajanAloitus = paikka; 
    70156        pelaaja1.Mass = 4.0; 
    71157        pelaaja1.Image = pelaajanKuva; 
    72         AddCollisionHandler(pelaaja1, "tahti", TormaaTahteen); 
     158        AddCollisionHandler(pelaaja1, "Vehje", PelaajaMenettaaHealtti); 
     159        AddCollisionHandler(pelaaja1, "Myrkky", PelaajaOsuuMyrkky); 
     160        AddCollisionHandler(pelaaja1, "Laava", PelaajaMenettaaHealtti); 
     161        AddCollisionHandler(pelaaja1, "Talo", LisaaValikko); 
     162 
    73163        Add(pelaaja1); 
     164        pelaaja1.Tag = ("pelaaja"); 
     165 
     166 
     167    } 
     168    void LisaaVehje(Vector paikka, double leveys, double korkeus) 
     169    { 
     170      PlatformCharacter vehje = new PlatformCharacter(leveys, korkeus); 
     171      vehje.Position = paikka; 
     172       
     173      vehje.Mass = 4.0; 
     174      vehje.Image = VehjeKuva; 
     175      Add(vehje); 
     176      PlatformWandererBrain tasoAivot = new PlatformWandererBrain(); 
     177      tasoAivot.Speed = 100; 
     178      vehje.Tag = "Vehje"; 
     179 
     180      vehje.Brain = tasoAivot; 
     181 
     182    } 
     183    void LisaaOrkki(Vector paikka, double leveys, double korkeus) 
     184    { 
     185        PlatformCharacter orkki = new PlatformCharacter(leveys, korkeus); 
     186        orkki.Position = paikka; 
     187 
     188        orkki.Mass = 4.0; 
     189        orkki.Image = OrkkiKuva; 
     190        Add(orkki); 
     191        PlatformWandererBrain tasoAivot = new PlatformWandererBrain(); 
     192        tasoAivot.Speed = 100; 
     193 
     194        orkki.Tag = "Orkki"; 
     195        tasoAivot.FallsOffPlatforms = true; 
     196        tasoAivot.TriesToJump = true; 
     197        tasoAivot.JumpSpeed = 900; 
     198        FollowerBrain seuraajanAivot = new FollowerBrain("pelaaja"); 
     199        seuraajanAivot.Speed = 300;                 // Millä nopeudella kohdetta seurataan 
     200        seuraajanAivot.DistanceFar = 40;           // Etäisyys jolla aletaan seurata kohdetta 
     201        seuraajanAivot.DistanceClose = 10; 
     202            ;         // Etäisyys jolloin ollaan lähellä kohdetta 
     203        seuraajanAivot.StopWhenTargetClose = false;  // Pysähdytään kun ollaan lähellä kohdetta 
     204        seuraajanAivot.FarBrain = tasoAivot; // Käytetään satunnaisaivoja kun ollaan kaukana 
     205        orkki.Brain = seuraajanAivot; 
     206 
     207    } 
     208    void LisaaMyrkky(Vector paikka, double leveys, double korkeus) 
     209    { 
     210        LisaaVahinkoAine(paikka,leveys,korkeus); 
     211    } 
     212 
     213    void LisaaLaava(Vector paikka, double leveys, double korkeus) 
     214    { 
     215        LisaaLaavaAine(paikka, leveys, korkeus); 
    74216    } 
    75217 
     
    108250        tahti.Destroy(); 
    109251    } 
     252 
     253    void LuoPistelaskuri() 
     254    { 
     255        pisteLaskuri = new IntMeter(0); 
     256 
     257        Label pisteNaytto = new Label(); 
     258        pisteNaytto.X = Screen.Left + 100; 
     259        pisteNaytto.Y = Screen.Top - 100; 
     260        pisteNaytto.TextColor = Color.Black; 
     261        pisteNaytto.Color = Color.White; 
     262 
     263        pisteNaytto.BindTo(pisteLaskuri); 
     264        Add(pisteNaytto); 
     265    } 
     266 
     267    void LisaaPutki(Vector paikka, double leveys, double korkeus) 
     268    { 
     269        LisaaSeina(paikka,leveys,korkeus, Color.Green); 
     270    } 
     271    void LisaaSeina(Vector paikka,double leveys,double korkeus,Color vari) 
     272    { 
     273        PhysicsObject taso = PhysicsObject.CreateStaticObject(leveys, korkeus); 
     274        taso.Position = paikka; 
     275        taso.Color = vari; 
     276        Add(taso); 
     277    } 
     278    void PelaajaOsuuMyrkky(PhysicsObject pelaaja, PhysicsObject kohde) 
     279    { 
     280        PelaajaKuolee(); 
     281    } 
     282    void PelaajaMenettaaHealtti(PhysicsObject pelaaja, PhysicsObject kohde) 
     283    { 
     284        HealttiMittari.Value--; 
     285        pelaaja.Hit(new Vector(1000, 1000)); 
     286    } 
     287 
     288    //void PelaajaParantuu(PhysicsObject pelaaja, PhysicsObject klohde) 
     289    //{ 
     290    //    pelaajanTerveys++; 
     291    //} 
     292 
     293    void Kuolematon(Double Aika) 
     294    {  
     295     
     296    } 
     297 
     298 
     299    void LuoElama() 
     300    { 
     301         
     302        Label pisteNaytto = new Label(); 
     303        pisteNaytto.X = Screen.Left + 100; 
     304        pisteNaytto.Y = Screen.Top - 100; 
     305        pisteNaytto.TextColor = Color.Black; 
     306        pisteNaytto.Color = Color.White; 
     307        pisteNaytto.Image = LoadImage("Healtti"); 
     308        pisteNaytto.Image = LoadImage("HealttiTyhja"); 
     309        ProgressBar voimaPalkki = new ProgressBar(150, 10); 
     310        voimaPalkki.BindTo(HealttiMittari); 
     311        Add(voimaPalkki); 
     312        HealttiMittari.LowerLimit += PelaajaKuolee; 
     313    } 
     314    void LisaaTalo(Vector paikka,double leveys,double korkeus) 
     315    { 
     316        PhysicsObject talo = PhysicsObject.CreateStaticObject(leveys, korkeus); 
     317        Add(talo); 
     318        talo.Position = paikka; 
     319        talo.Image = Linna; 
     320        talo.Tag = "Talo"; 
     321 
     322    } 
     323 
     324 
    110325} 
  • 2014/24/FransM/Supermerjo/Supermerjo/Supermerjo/Supermerjo.csproj

    r4925 r4987  
    118118    <Content Include="Game.ico" /> 
    119119    <Content Include="GameThumbnail.png" /> 
     120    <Content Include="Untitled.png" /> 
    120121  </ItemGroup> 
    121122  <ItemGroup> 
  • 2014/24/FransM/Supermerjo/Supermerjo/Supermerjo/Supermerjo.csproj.Debug.cachefile

    r4925 r4987  
    44Content\kentta1.xnb 
    55Content\Aero_Woods.xnb 
    6 Content\imgres.xnb 
     6Content\Supermerjokentantausta.xnb 
     7Content\Supermerjokentta.xnb 
     8Content\Supermerjohahmo.xnb 
     9Content\Healtti.xnb 
     10Content\HealttiTyhja.xnb 
     11Content\Dirt.xnb 
     12Content\Lava.xnb 
     13Content\Laava.xnb 
     14Content\Cooba.xnb 
     15Content\Vehje.xnb 
     16Content\Talo.xnb 
  • 2014/24/FransM/Supermerjo/Supermerjo/Supermerjo/obj/x86/Debug/ContentPipeline-{8DE58630-3F3F-45C3-A5BB-4AF8DED7A7D3}.xml

    r4925 r4987  
    4848    </Item> 
    4949    <Item> 
    50       <Source>imgres.jpg</Source> 
    51       <Name>imgres</Name> 
     50      <Source>Supermerjokentantausta.png</Source> 
     51      <Name>Supermerjokentantausta</Name> 
    5252      <Importer>TextureImporter</Importer> 
    5353      <Processor>TextureProcessor</Processor> 
    5454      <Options>None</Options> 
    55       <Output>c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\imgres.xnb</Output> 
    56       <Time>2014-06-09T14:52:00.2998009+03:00</Time> 
     55      <Output>c:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Supermerjokentantausta.xnb</Output> 
     56      <Time>2014-06-10T13:32:19.6851158+03:00</Time> 
     57    </Item> 
     58    <Item> 
     59      <Source>Supermerjokentta.png</Source> 
     60      <Name>Supermerjokentta</Name> 
     61      <Importer>TextureImporter</Importer> 
     62      <Processor>TextureProcessor</Processor> 
     63      <Options>None</Options> 
     64      <Output>c:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Supermerjokentta.xnb</Output> 
     65      <Time>2014-06-12T14:49:54.2813208+03:00</Time> 
     66    </Item> 
     67    <Item> 
     68      <Source>Supermerjohahmo.png</Source> 
     69      <Name>Supermerjohahmo</Name> 
     70      <Importer>TextureImporter</Importer> 
     71      <Processor>TextureProcessor</Processor> 
     72      <Options>None</Options> 
     73      <Output>c:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Supermerjohahmo.xnb</Output> 
     74      <Time>2014-06-10T13:32:22.2371158+03:00</Time> 
     75    </Item> 
     76    <Item> 
     77      <Source>Healtti.png</Source> 
     78      <Name>Healtti</Name> 
     79      <Importer>TextureImporter</Importer> 
     80      <Processor>TextureProcessor</Processor> 
     81      <Options>None</Options> 
     82      <Output>c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Healtti.xnb</Output> 
     83      <Time>2014-06-11T10:53:49.8080449+03:00</Time> 
     84    </Item> 
     85    <Item> 
     86      <Source>HealttiTyhja.png</Source> 
     87      <Name>HealttiTyhja</Name> 
     88      <Importer>TextureImporter</Importer> 
     89      <Processor>TextureProcessor</Processor> 
     90      <Options>None</Options> 
     91      <Output>c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\HealttiTyhja.xnb</Output> 
     92      <Time>2014-06-11T12:24:29.4022295+03:00</Time> 
     93    </Item> 
     94    <Item> 
     95      <Source>Dirt.png</Source> 
     96      <Name>Dirt</Name> 
     97      <Importer>TextureImporter</Importer> 
     98      <Processor>TextureProcessor</Processor> 
     99      <Options>None</Options> 
     100      <Output>c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Dirt.xnb</Output> 
     101      <Time>2014-06-11T12:57:59.4662158+03:00</Time> 
     102    </Item> 
     103    <Item> 
     104      <Source>Lava.png</Source> 
     105      <Name>Lava</Name> 
     106      <Importer>TextureImporter</Importer> 
     107      <Processor>TextureProcessor</Processor> 
     108      <Options>None</Options> 
     109      <Output>c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Lava.xnb</Output> 
     110      <Time>2014-06-11T13:45:11.4133822+03:00</Time> 
     111    </Item> 
     112    <Item> 
     113      <Source>Laava.jpg</Source> 
     114      <Name>Laava</Name> 
     115      <Importer>TextureImporter</Importer> 
     116      <Options>None</Options> 
     117      <Output>c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Laava.xnb</Output> 
     118      <Time>2014-06-11T13:26:39.0811601+03:00</Time> 
     119    </Item> 
     120    <Item> 
     121      <Source>Cooba.png</Source> 
     122      <Name>Cooba</Name> 
     123      <Importer>TextureImporter</Importer> 
     124      <Processor>TextureProcessor</Processor> 
     125      <Options>None</Options> 
     126      <Output>C:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Cooba.xnb</Output> 
     127      <Time>2014-06-12T09:48:40.1660206+03:00</Time> 
     128    </Item> 
     129    <Item> 
     130      <Source>Vehje.png</Source> 
     131      <Name>Vehje</Name> 
     132      <Importer>TextureImporter</Importer> 
     133      <Processor>TextureProcessor</Processor> 
     134      <Options>None</Options> 
     135      <Output>C:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Vehje.xnb</Output> 
     136      <Time>2014-06-12T10:06:37.7827777+03:00</Time> 
     137    </Item> 
     138    <Item> 
     139      <Source>Talo.png</Source> 
     140      <Name>Talo</Name> 
     141      <Importer>TextureImporter</Importer> 
     142      <Processor>TextureProcessor</Processor> 
     143      <Options>None</Options> 
     144      <Output>C:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Talo.xnb</Output> 
     145      <Time>2014-06-12T12:14:41.7853472+03:00</Time> 
    57146    </Item> 
    58147    <BuildSuccessful>true</BuildSuccessful> 
     
    63152      <BuildConfiguration>Debug</BuildConfiguration> 
    64153      <CompressContent>false</CompressContent> 
    65       <RootDirectory>c:\mytemp\FransM\Supermerjo\Supermerjo\SupermerjoContent\</RootDirectory> 
    66       <LoggerRootDirectory>c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\</LoggerRootDirectory> 
    67       <IntermediateDirectory>c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\obj\x86\Debug\</IntermediateDirectory> 
    68       <OutputDirectory>c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\</OutputDirectory> 
     154      <RootDirectory>C:\MyTemp\FransM\Supermerjo\Supermerjo\SupermerjoContent\</RootDirectory> 
     155      <LoggerRootDirectory>C:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\</LoggerRootDirectory> 
     156      <IntermediateDirectory>C:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\obj\x86\Debug\</IntermediateDirectory> 
     157      <OutputDirectory>C:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\</OutputDirectory> 
    69158    </Settings> 
    70159    <Assemblies> 
  • 2014/24/FransM/Supermerjo/Supermerjo/Supermerjo/obj/x86/Debug/Supermerjo.csproj.FileListAbsolute.txt

    r4925 r4987  
    1111c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\obj\x86\Debug\Supermerjo.pdb 
    1212c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Aero_Woods.xnb 
    13 c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\imgres.xnb 
     13c:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\obj\x86\Debug\Supermerjo.csprojResolveAssemblyReference.cache 
     14c:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Supermerjokentantausta.xnb 
     15c:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Supermerjokentta.xnb 
     16c:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Supermerjohahmo.xnb 
     17c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Healtti.xnb 
     18c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Dirt.xnb 
     19c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\HealttiTyhja.xnb 
     20c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Lava.xnb 
     21c:\mytemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Laava.xnb 
     22C:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Cooba.xnb 
     23C:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Vehje.xnb 
     24C:\MyTemp\FransM\Supermerjo\Supermerjo\Supermerjo\bin\x86\Debug\Content\Talo.xnb 
  • 2014/24/FransM/Supermerjo/Supermerjo/Supermerjo/obj/x86/Debug/cachefile-{8DE58630-3F3F-45C3-A5BB-4AF8DED7A7D3}-targetpath.txt

    r4925 r4987  
    44Content\kentta1.xnb 
    55Content\Aero_Woods.xnb 
    6 Content\imgres.xnb 
     6Content\Supermerjokentantausta.xnb 
     7Content\Supermerjokentta.xnb 
     8Content\Supermerjohahmo.xnb 
     9Content\Healtti.xnb 
     10Content\HealttiTyhja.xnb 
     11Content\Dirt.xnb 
     12Content\Lava.xnb 
     13Content\Laava.xnb 
     14Content\Cooba.xnb 
     15Content\Vehje.xnb 
     16Content\Talo.xnb 
  • 2014/24/FransM/Supermerjo/Supermerjo/SupermerjoContent/SupermerjoContent.contentproj

    r4925 r4987  
    7575  </ItemGroup> 
    7676  <ItemGroup> 
    77     <Compile Include="imgres.jpg"> 
    78       <Name>imgres</Name> 
     77    <Compile Include="Supermerjokentta.png"> 
     78      <Name>Supermerjokentta</Name> 
     79      <Importer>TextureImporter</Importer> 
     80      <Processor>TextureProcessor</Processor> 
     81    </Compile> 
     82  </ItemGroup> 
     83  <ItemGroup> 
     84    <Compile Include="Supermerjokentantausta.png"> 
     85      <Name>Supermerjokentantausta</Name> 
     86      <Importer>TextureImporter</Importer> 
     87      <Processor>TextureProcessor</Processor> 
     88    </Compile> 
     89  </ItemGroup> 
     90  <ItemGroup> 
     91    <Compile Include="Supermerjohahmo.png"> 
     92      <Name>Supermerjohahmo</Name> 
     93      <Importer>TextureImporter</Importer> 
     94      <Processor>TextureProcessor</Processor> 
     95    </Compile> 
     96  </ItemGroup> 
     97  <ItemGroup> 
     98    <Compile Include="Healtti.png"> 
     99      <Name>Healtti</Name> 
     100      <Importer>TextureImporter</Importer> 
     101      <Processor>TextureProcessor</Processor> 
     102    </Compile> 
     103  </ItemGroup> 
     104  <ItemGroup> 
     105    <Compile Include="HealttiTyhja.png"> 
     106      <Name>HealttiTyhja</Name> 
     107      <Importer>TextureImporter</Importer> 
     108      <Processor>TextureProcessor</Processor> 
     109    </Compile> 
     110  </ItemGroup> 
     111  <ItemGroup> 
     112    <Compile Include="Dirt.png"> 
     113      <Name>Dirt</Name> 
     114      <Importer>TextureImporter</Importer> 
     115      <Processor>TextureProcessor</Processor> 
     116    </Compile> 
     117  </ItemGroup> 
     118  <ItemGroup> 
     119    <Compile Include="Laava.jpg"> 
     120      <Name>Laava</Name> 
     121      <Importer>TextureImporter</Importer> 
     122    </Compile> 
     123    <Compile Include="Lava.png"> 
     124      <Name>Lava</Name> 
     125      <Importer>TextureImporter</Importer> 
     126      <Processor>TextureProcessor</Processor> 
     127    </Compile> 
     128  </ItemGroup> 
     129  <ItemGroup> 
     130    <Compile Include="Cooba.png"> 
     131      <Name>Cooba</Name> 
     132      <Importer>TextureImporter</Importer> 
     133      <Processor>TextureProcessor</Processor> 
     134    </Compile> 
     135  </ItemGroup> 
     136  <ItemGroup> 
     137    <Compile Include="Vehje.png"> 
     138      <Name>Vehje</Name> 
     139      <Importer>TextureImporter</Importer> 
     140      <Processor>TextureProcessor</Processor> 
     141    </Compile> 
     142  </ItemGroup> 
     143  <ItemGroup> 
     144    <Compile Include="Talo.png"> 
     145      <Name>Talo</Name> 
    79146      <Importer>TextureImporter</Importer> 
    80147      <Processor>TextureProcessor</Processor> 
Note: See TracChangeset for help on using the changeset viewer.