Changeset 6982 for 2015/30


Ignore:
Timestamp:
2015-07-23 14:52:13 (8 years ago)
Author:
picakrty
Message:

Animaatoita vielä puuttuu Miisasin hyppy. Pelissä hiomista myös.

Location:
2015/30/CamillaT
Files:
85 added
3 deleted
11 edited

Legend:

Unmodified
Added
Removed
  • 2015/30/CamillaT/YouCombat/YouCombat/YouCombat/YouCombat.cs

    r6941 r6982  
    1010{ 
    1111 
    12     PlatformCharacter rauski; 
    13     PlatformCharacter miisas; 
     12    Ihminen rauski; 
     13    Ihminen miisas; 
    1414    //PlatformCharacter soikku; 
    1515 
    16     Image tubecon = LoadImage("TubeCombat - tausta"); 
    17     Image rauskinKuva = LoadImage("TubeCombat - Rauski"); 
     16    Image tubecon      = LoadImage("TubeCombat - tausta"); 
     17    Image rauskinKuva  = LoadImage("TubeCombat - Rauski"); 
    1818    Image miisasinKuva = LoadImage("TubeCombat - Miisas"); 
    19     Image soikunKuva = LoadImage("TubeCombat - Soikku"); 
    20  
    21     PlatformCharacter pelaaja1; 
    22     PlatformCharacter pelaaja2; 
    23  
    24     double nopeus = 400.0; 
     19    Image soikunKuva   = LoadImage("TubeCombat - Soikku"); 
     20 
     21    Ihminen pelaaja1; 
     22    Ihminen pelaaja2; 
     23 
     24    double nopeus      = 400.0; 
    2525    double hyppynopeus = 800.0; 
    2626 
     27    Animation rauskinHyokkays; 
     28    Animation rauskinHyppy; 
     29    Animation rauskiinaHyokkays; 
     30    Animation rauskinKavely; 
    2731 
    2832    public override void Begin() 
    2933    { 
    3034        // TODO Maisema valmis. Hahmoille hyppy ja hyökkäys animaatiot??? Nosta alarajaa! Menuvalikko ja musiikki! 
    31         LuoKentta(); 
    32         Hahmot(); 
    33         PeliMusiikit(); 
     35                 LuoKentta(); 
     36                    Hahmot(); 
     37              PeliMusiikit(); 
    3438        HahmojenAnimaatiot(); 
    35         pelaaja1 = rauski; 
    36         pelaaja2 = miisas; 
    37         HahmojenOhjaus(); 
     39           pelaaja1 = rauski; 
     40           pelaaja2 = miisas; 
     41            HahmojenOhjaus(); 
    3842 
    3943    } 
     
    4145    void LuoKentta() 
    4246    { 
    43         Level.Width = Screen.Width; 
     47        Level.Width  = Screen.Width; 
    4448        Level.Height = Screen.Height; 
    4549 
    4650        GameObject tausta = new GameObject(Level.Width, Level.Height); 
    47         tausta.Image = tubecon; 
     51        tausta.Image      = tubecon; 
    4852        Add(tausta, -3); 
    4953 
     
    5357        Level.CreateBorders(); 
    5458 
     59        alaReuna.Y = Level.Bottom + 50; 
     60        alaReuna.Color = Color.Transparent; 
     61 
    5562        Gravity = new Vector(0.0, -700.0); 
    5663    } 
     
    5865    void Hahmot() 
    5966    { 
    60         rauski = new PlatformCharacter(270, 450); 
    61         miisas = new PlatformCharacter(270, 450); 
     67        rauski   = new Ihminen(270, 450); 
     68        miisas   = new Ihminen(270, 450); 
    6269        //soikku = new PlatformCharacter(270, 450); 
    63  
    64         rauski.X = 560.00; 
    65         rauski.Y = -200.0; 
    66  
    67         miisas.X = -650.00; 
    68         miisas.Y = -200.0; 
     70        //herba  = new PlatformCharacter (270, 450); 
     71 
     72        rauski.X   = 560.00; 
     73        rauski.Y   = -200.0; 
     74 
     75        miisas.X   = -650.00; 
     76        miisas.Y   = -200.0; 
    6977 
    7078        //soikku.X = -500.00; 
    7179        //soikku.Y = -200.0; 
    7280 
    73         rauski.Image = rauskinKuva; 
    74         miisas.Image = miisasinKuva; 
     81        //herba.X  = 0.0 
     82        //herba.Y  = 0.0 
     83 
     84        rauski.Image   = rauskinKuva; 
     85        miisas.Image   = miisasinKuva; 
    7586        //soikku.Image = soikunKuva; 
    76  
    77         Add(rauski); 
    78         Add(miisas); 
     87        //herba.Image  = herbanKuva; 
     88 
     89          Add(rauski); 
     90          Add(miisas); 
    7991        //Add(soikku); 
     92         //Add(herba); 
    8093 
    8194    } 
     
    8497    void HahmojenAnimaatiot() 
    8598    { 
    86  
    87        Animation rauskinKavely = LoadAnimation("Rauski"); 
    88        rauski.AnimWalk = rauskinKavely; 
    89        rauski.AnimIdle = new Animation(rauskinKuva); 
    90         //Rauskin hyppy! 
     99       rauskinHyppy            = LoadAnimation("RauskiHyppy"); 
     100       rauskinHyokkays         = LoadAnimation("RauskiHyokkays"); 
     101       rauskiinaHyokkays       = LoadAnimation("RauskiinaHyokkays"); 
     102       rauskinKavely           = LoadAnimation("Rauski"); 
     103       rauski.AnimWalk         = rauskinKavely; 
     104       rauski.AnimIdle         = new Animation (rauskinKuva); 
     105       rauski.AnimJump         = rauskinHyppy; 
    91106        
    92         Animation miisaksenKavely = LoadAnimation("Miisas"); 
    93         miisas.AnimWalk = miisaksenKavely; 
    94         miisas.AnimWalk.FPS = 5; 
    95         miisas.AnimIdle = new Animation(miisasinKuva); 
    96         //Animaatiot Miisaskelle! 
    97           
     107        
     108    
     109     Animation miisaksenKavely = LoadAnimation("Miisas"); 
     110        miisas.AnimWalk        = miisaksenKavely; 
     111        miisas.AnimWalk.FPS    = 5; 
     112        miisas.AnimIdle        = new Animation(miisasinKuva); 
     113        //miisas.AnimIdle 
     114         
     115         
     116        //Miisasken hyppy ja Ulti. 
    98117 
    99118    } 
     
    103122    void HahmojenOhjaus() 
    104123    { 
    105         Keyboard.Listen(Key.A, ButtonState.Down, Liikuta, "Liiku Vasemmalle", pelaaja1, -nopeus); 
    106         Keyboard.Listen(Key.W, ButtonState.Pressed, Hyppaa, "Hyppy Ylos", pelaaja1, hyppynopeus); 
    107         Keyboard.Listen(Key.D, ButtonState.Down, Liikuta, "Liiku Oikealle", pelaaja1, nopeus); 
    108  
    109         Keyboard.Listen(Key.Left, ButtonState.Down, Liikuta, "Liiku Vasemmalle", pelaaja2, -nopeus); 
    110         Keyboard.Listen(Key.Up, ButtonState.Pressed, Hyppaa, "Hyppy Ylos", pelaaja2, hyppynopeus); 
    111         Keyboard.Listen(Key.Right, ButtonState.Down, Liikuta, "Liiku Oikealle", pelaaja2, nopeus); 
     124        Keyboard.Listen(Key.A, ButtonState.Down,     Liikuta,  "Liiku Vasemmalle", pelaaja1, -nopeus); 
     125        Keyboard.Listen(Key.W, ButtonState.Pressed,  Hyppaa,   "Hyppy Ylos",   pelaaja1, hyppynopeus); 
     126        Keyboard.Listen(Key.D, ButtonState.Down,     Liikuta,  "Liiku Oikealle",    pelaaja1, nopeus); 
     127        Keyboard.Listen(Key.S, ButtonState.Pressed,  Hyokkaus, "Hyokkaa Eteen",   pelaaja1, pelaaja2); 
     128        Keyboard.Listen(Key.E, ButtonState.Pressed, RauskiinaHyokkays,  "Hyokkaa Eteen",   pelaaja1, pelaaja2); 
     129 
     130        Keyboard.Listen(Key.Left, ButtonState.Down,  Liikuta,  "Liiku Vasemmalle", pelaaja2, -nopeus); 
     131        Keyboard.Listen(Key.Up, ButtonState.Pressed, Hyppaa,   "Hyppy Ylos",   pelaaja2, hyppynopeus); 
     132        Keyboard.Listen(Key.Right, ButtonState.Down, Liikuta,  "Liiku Oikealle",    pelaaja2, nopeus); 
    112133 
    113134        Keyboard.Listen(Key.Escape, ButtonState.Pressed, ConfirmExit, "Lopeta peli"); 
     
    120141    void Hyppaa(PlatformCharacter pelaaja, double suunta) 
    121142    { 
    122         pelaaja.Jump(suunta); 
     143        pelaaja.Jump           (suunta); 
     144         
    123145    } 
    124146 
     
    128150    } 
    129151 
     152    void Hyokkaus(PlatformCharacter pelaaja, Ihminen hyokkayksenKohde) 
     153    { 
     154        pelaaja.AnimIdle = rauskinHyokkays; 
     155        pelaaja.AnimIdle.StopOnLastFrame = true; 
     156 
     157        // Tässä Lisätään tavallinen animaatio päälle kun hyökkäys on ohi. 
     158        pelaaja.AnimIdle.Played += delegate 
     159        { 
     160            pelaaja.AnimIdle = new Animation(rauskinKuva); 
     161            hyokkayksenKohde.OtaVahinkoa(); 
     162 
     163 
     164        }; 
     165 
     166    } 
     167 
     168 
     169    void RauskiinaHyokkays(PlatformCharacter pelaaja, Ihminen hyokkayksenKohde) 
     170    { 
     171        pelaaja.AnimIdle = rauskiinaHyokkays; 
     172        pelaaja.AnimIdle.StopOnLastFrame = true; 
     173 
     174        // Tässä Lisätään tavallinen animaatio päälle kun hyökkäys on ohi. 
     175        pelaaja.AnimIdle.Played += delegate 
     176        { 
     177            pelaaja.AnimIdle = new Animation(rauskinKuva); 
     178            hyokkayksenKohde.OtaVahinkoa(); 
     179 
     180 
     181        }; 
     182 
     183    } 
    130184 
    131185    void VihollinenKuolee() 
     
    139193    void PeliMusiikit() 
    140194    { 
    141         MediaPlayer.PlayFromURL("https://www.youtube.com/watch?v=sJHIbb3vdNM/musaa.mp3"); 
     195        MediaPlayer.Play("TaustaMusa"); 
    142196 
    143197        MediaPlayer.IsRepeating = true; 
    144198    } 
    145  
    146     class Vihu : PhysicsObject 
     199    void MenuJaPause() 
     200    { 
     201        Keyboard.Listen(Key.P, ButtonState.Pressed, Pause, "Pysäyttää pelin"); 
     202 
     203    } 
     204 
     205     
     206} 
     207 
     208 
     209class Ihminen : PlatformCharacter 
    147210    { 
    148211        private IntMeter elamaLaskuri = new IntMeter(3, 0, 3); 
    149212        public IntMeter ElamaLaskuri { get { return elamaLaskuri; } } 
    150213 
    151         public Vihu(double leveys, double korkeus) 
     214        public Ihminen (double leveys, double korkeus) 
    152215            : base(leveys, korkeus) 
    153216        { 
     
    155218        } 
    156219 
    157         void Menu() 
    158         {  
    159          
     220 
     221         
     222  
     223 
     224       public void OtaVahinkoa() 
     225        { 
     226            //  AddCollisionHandler(pelaaja1, Pelaaja1Tormasi); 
     227            elamaLaskuri.Value--; 
     228 
    160229        } 
    161  
    162   
    163  
    164         void Rajahtukset() 
    165         { 
    166             //  AddCollisionHandler(pelaaja1, Pelaaja1Tormasi); 
    167  
    168  
    169         } 
    170     } 
     230    } 
     231 
     232public class Peli : PhysicsGame 
     233{ 
     234    DoubleMeter elamaLaskuri; 
     235 
     236    public override void Begin() 
     237    { 
     238        //... 
     239    } 
     240 
     241    void LuoElamaLaskuri() 
     242    { 
     243        elamaLaskuri = new DoubleMeter(10); 
     244        elamaLaskuri.MaxValue = 10; 
     245        elamaLaskuri.LowerLimit += ElamaLoppui; 
     246 
     247        ProgressBar elamaPalkki = new ProgressBar(150, 20); 
     248        elamaPalkki.X = Screen.Left + 150; 
     249        elamaPalkki.Y = Screen.Top - 20; 
     250        elamaPalkki.BindTo(elamaLaskuri); 
     251        Add(elamaPalkki); 
     252    } 
     253 
     254    void ElamaLoppui() 
     255    { 
     256        MessageDisplay.Add("Elämät loppuivat, Pelaaja1 voitti!."); 
     257    } 
     258 
     259 
     260 
    171261} 
    172       
  • 2015/30/CamillaT/YouCombat/YouCombat/YouCombat/YouCombat.csproj.Debug.cachefile

    r6941 r6982  
    1111Content\Miisas\Miisas3.xnb 
    1212Content\Miisas.xnb 
     13Content\RauskiinaHyokkays\Rauskiina1.xnb 
     14Content\RauskiinaHyokkays\Rauskiina2.xnb 
     15Content\RauskiinaHyokkays\Rauskiina3.xnb 
     16Content\RauskiHyokkays\RauskiH1.xnb 
     17Content\RauskiHyokkays\RauskiH2.xnb 
     18Content\RauskiHyokkays\RauskiH3.xnb 
     19Content\RauskiHyokkays.xnb 
     20Content\RauskiinaHyokkays.xnb 
     21Content\RauskiHyppy\RauskiHyppy1.xnb 
     22Content\RauskiHyppy\RauskiHyppy2.xnb 
     23Content\RauskiHyppy\RauskiHyppy3.xnb 
     24Content\RauskiHyppy.xnb 
     25Content\RauskiHyokkays\RauskiHyppy1_0.xnb 
     26Content\TaustaMusa.xnb 
     27Content\TaustaMusa.wma 
     28Content\Rauski.anim 
     29Content\Miisas.anim 
     30Content\RauskiHyokkays.anim 
     31Content\RauskiinaHyokkays.anim 
     32Content\RauskiHyppy.anim 
  • 2015/30/CamillaT/YouCombat/YouCombat/YouCombat/obj/x86/Debug/YouCombat.csproj.FileListAbsolute.txt

    r6941 r6982  
    1919C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\Miisas\Miisas3.xnb 
    2020C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\Miisas.xnb 
     21C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina1.xnb 
     22C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina2.xnb 
     23C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina3.xnb 
     24C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH1.xnb 
     25C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH2.xnb 
     26C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH3.xnb 
     27C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays.xnb 
     28C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays.xnb 
     29C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy1.xnb 
     30C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy2.xnb 
     31C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy3.xnb 
     32C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy.xnb 
     33C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiHyppy1_0.xnb 
     34C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\TaustaMusa.xnb 
     35C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\TaustaMusa.wma 
     36C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\Rauski.anim 
     37C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\Miisas.anim 
     38C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays.anim 
     39C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays.anim 
     40C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy.anim 
  • 2015/30/CamillaT/YouCombat/YouCombat/YouCombat/obj/x86/Debug/cachefile-{66C8E644-CC23-4609-AD73-46EEDD2FF150}-targetpath.txt

    r6941 r6982  
    1111Content\Miisas\Miisas3.xnb 
    1212Content\Miisas.xnb 
     13Content\RauskiinaHyokkays\Rauskiina1.xnb 
     14Content\RauskiinaHyokkays\Rauskiina2.xnb 
     15Content\RauskiinaHyokkays\Rauskiina3.xnb 
     16Content\RauskiHyokkays\RauskiH1.xnb 
     17Content\RauskiHyokkays\RauskiH2.xnb 
     18Content\RauskiHyokkays\RauskiH3.xnb 
     19Content\RauskiHyokkays.xnb 
     20Content\RauskiinaHyokkays.xnb 
     21Content\RauskiHyppy\RauskiHyppy1.xnb 
     22Content\RauskiHyppy\RauskiHyppy2.xnb 
     23Content\RauskiHyppy\RauskiHyppy3.xnb 
     24Content\RauskiHyppy.xnb 
     25Content\RauskiHyokkays\RauskiHyppy1_0.xnb 
     26Content\TaustaMusa.xnb 
     27Content\TaustaMusa.wma 
     28Content\Rauski.anim 
     29Content\Miisas.anim 
     30Content\RauskiHyokkays.anim 
     31Content\RauskiinaHyokkays.anim 
     32Content\RauskiHyppy.anim 
  • 2015/30/CamillaT/YouCombat/YouCombat/YouCombatContent/YouCombatContent.contentproj

    r6941 r6982  
    7878      <Importer>AnimationImporter</Importer> 
    7979      <Processor>AnimationContentProcessor</Processor> 
     80      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 
    8081    </Compile> 
    8182  </ItemGroup> 
     
    102103      <Importer>AnimationImporter</Importer> 
    103104      <Processor>AnimationContentProcessor</Processor> 
     105      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 
    104106    </Compile> 
    105107  </ItemGroup> 
     
    119121      <Importer>TextureImporter</Importer> 
    120122      <Processor>TextureProcessor</Processor> 
     123    </Compile> 
     124  </ItemGroup> 
     125  <ItemGroup> 
     126    <Compile Include="RauskiinaHyokkays\Rauskiina1.png"> 
     127      <Name>Rauskiina1</Name> 
     128      <Importer>TextureImporter</Importer> 
     129      <Processor>TextureProcessor</Processor> 
     130    </Compile> 
     131    <Compile Include="RauskiinaHyokkays\Rauskiina2.png"> 
     132      <Name>Rauskiina2</Name> 
     133      <Importer>TextureImporter</Importer> 
     134      <Processor>TextureProcessor</Processor> 
     135    </Compile> 
     136    <Compile Include="RauskiinaHyokkays\Rauskiina3.png"> 
     137      <Name>Rauskiina3</Name> 
     138      <Importer>TextureImporter</Importer> 
     139      <Processor>TextureProcessor</Processor> 
     140    </Compile> 
     141  </ItemGroup> 
     142  <ItemGroup> 
     143    <Compile Include="RauskiHyokkays\RauskiH1.png"> 
     144      <Name>RauskiH1</Name> 
     145      <Importer>TextureImporter</Importer> 
     146      <Processor>TextureProcessor</Processor> 
     147    </Compile> 
     148    <Compile Include="RauskiHyokkays\RauskiH2.png"> 
     149      <Name>RauskiH2</Name> 
     150      <Importer>TextureImporter</Importer> 
     151      <Processor>TextureProcessor</Processor> 
     152    </Compile> 
     153    <Compile Include="RauskiHyokkays\RauskiH3.png"> 
     154      <Name>RauskiH3</Name> 
     155      <Importer>TextureImporter</Importer> 
     156      <Processor>TextureProcessor</Processor> 
     157    </Compile> 
     158  </ItemGroup> 
     159  <ItemGroup> 
     160    <Compile Include="RauskiHyokkays.anim"> 
     161      <Name>RauskiHyokkays</Name> 
     162      <Importer>AnimationImporter</Importer> 
     163      <Processor>AnimationContentProcessor</Processor> 
     164      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 
     165    </Compile> 
     166  </ItemGroup> 
     167  <ItemGroup> 
     168    <Compile Include="RauskiinaHyokkays.anim"> 
     169      <Name>RauskiinaHyokkays</Name> 
     170      <Importer>AnimationImporter</Importer> 
     171      <Processor>AnimationContentProcessor</Processor> 
     172      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 
     173    </Compile> 
     174  </ItemGroup> 
     175  <ItemGroup> 
     176    <Compile Include="RauskiHyppy\RauskiHyppy1.png"> 
     177      <Name>RauskiHyppy1</Name> 
     178      <Importer>TextureImporter</Importer> 
     179      <Processor>TextureProcessor</Processor> 
     180    </Compile> 
     181    <Compile Include="RauskiHyppy\RauskiHyppy2.png"> 
     182      <Name>RauskiHyppy2</Name> 
     183      <Importer>TextureImporter</Importer> 
     184      <Processor>TextureProcessor</Processor> 
     185    </Compile> 
     186    <Compile Include="RauskiHyppy\RauskiHyppy3.png"> 
     187      <Name>RauskiHyppy3</Name> 
     188      <Importer>TextureImporter</Importer> 
     189      <Processor>TextureProcessor</Processor> 
     190    </Compile> 
     191  </ItemGroup> 
     192  <ItemGroup> 
     193    <Compile Include="RauskiHyppy.anim"> 
     194      <Name>RauskiHyppy</Name> 
     195      <Importer>AnimationImporter</Importer> 
     196      <Processor>AnimationContentProcessor</Processor> 
     197      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 
     198    </Compile> 
     199  </ItemGroup> 
     200  <ItemGroup> 
     201    <Compile Include="TaustaMusa.mp3"> 
     202      <Name>TaustaMusa</Name> 
     203      <Importer>Mp3Importer</Importer> 
     204      <Processor>SongProcessor</Processor> 
    121205    </Compile> 
    122206  </ItemGroup> 
  • 2015/30/CamillaT/YouCombat/YouCombat/YouCombatContent/obj/x86/Debug/ContentPipeline.xml

    r6941 r6982  
    115115      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\Miisas\Miisas2.xnb</Request> 
    116116      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\Miisas\Miisas3.xnb</Request> 
     117    </Item> 
     118    <Item> 
     119      <Source>RauskiinaHyokkays\Rauskiina1.png</Source> 
     120      <Name>RauskiinaHyokkays\Rauskiina1</Name> 
     121      <Importer>TextureImporter</Importer> 
     122      <Processor>TextureProcessor</Processor> 
     123      <Options>None</Options> 
     124      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina1.xnb</Output> 
     125      <Time>2015-07-23T14:14:28.5433345+03:00</Time> 
     126    </Item> 
     127    <Item> 
     128      <Source>RauskiinaHyokkays\Rauskiina2.png</Source> 
     129      <Name>RauskiinaHyokkays\Rauskiina2</Name> 
     130      <Importer>TextureImporter</Importer> 
     131      <Processor>TextureProcessor</Processor> 
     132      <Options>None</Options> 
     133      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina2.xnb</Output> 
     134      <Time>2015-07-23T14:14:53.6326461+03:00</Time> 
     135    </Item> 
     136    <Item> 
     137      <Source>RauskiinaHyokkays\Rauskiina3.png</Source> 
     138      <Name>RauskiinaHyokkays\Rauskiina3</Name> 
     139      <Importer>TextureImporter</Importer> 
     140      <Processor>TextureProcessor</Processor> 
     141      <Options>None</Options> 
     142      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina3.xnb</Output> 
     143      <Time>2015-07-23T14:15:03.9740002+03:00</Time> 
     144    </Item> 
     145    <Item> 
     146      <Source>RauskiHyokkays\RauskiH1.png</Source> 
     147      <Name>RauskiHyokkays\RauskiH1</Name> 
     148      <Importer>TextureImporter</Importer> 
     149      <Processor>TextureProcessor</Processor> 
     150      <Options>None</Options> 
     151      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH1.xnb</Output> 
     152      <Time>2015-07-23T13:11:12.1960373+03:00</Time> 
     153    </Item> 
     154    <Item> 
     155      <Source>RauskiHyokkays\RauskiH2.png</Source> 
     156      <Name>RauskiHyokkays\RauskiH2</Name> 
     157      <Importer>TextureImporter</Importer> 
     158      <Processor>TextureProcessor</Processor> 
     159      <Options>None</Options> 
     160      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH2.xnb</Output> 
     161      <Time>2015-07-23T13:11:03.954403+03:00</Time> 
     162    </Item> 
     163    <Item> 
     164      <Source>RauskiHyokkays\RauskiH3.png</Source> 
     165      <Name>RauskiHyokkays\RauskiH3</Name> 
     166      <Importer>TextureImporter</Importer> 
     167      <Processor>TextureProcessor</Processor> 
     168      <Options>None</Options> 
     169      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH3.xnb</Output> 
     170      <Time>2015-07-23T13:11:08.5188375+03:00</Time> 
     171    </Item> 
     172    <Item> 
     173      <Source>RauskiHyokkays.anim</Source> 
     174      <Name>RauskiHyokkays</Name> 
     175      <Importer>AnimationImporter</Importer> 
     176      <Processor>AnimationContentProcessor</Processor> 
     177      <Options>None</Options> 
     178      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays.xnb</Output> 
     179      <Time>2015-07-23T14:09:47.3394352+03:00</Time> 
     180      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH1.xnb</Request> 
     181      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH2.xnb</Request> 
     182      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH3.xnb</Request> 
     183      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiHyppy1_0.xnb</Request> 
     184    </Item> 
     185    <Item> 
     186      <Source>RauskiinaHyokkays.anim</Source> 
     187      <Name>RauskiinaHyokkays</Name> 
     188      <Importer>AnimationImporter</Importer> 
     189      <Processor>AnimationContentProcessor</Processor> 
     190      <Options>None</Options> 
     191      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays.xnb</Output> 
     192      <Time>2015-07-23T14:10:59.9485694+03:00</Time> 
     193      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina1.xnb</Request> 
     194      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina2.xnb</Request> 
     195      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina3.xnb</Request> 
     196    </Item> 
     197    <Item> 
     198      <Source>RauskiHyppy\RauskiHyppy1.png</Source> 
     199      <Name>RauskiHyppy\RauskiHyppy1</Name> 
     200      <Importer>TextureImporter</Importer> 
     201      <Processor>TextureProcessor</Processor> 
     202      <Options>None</Options> 
     203      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy1.xnb</Output> 
     204      <Time>2015-07-23T13:44:14.7199001+03:00</Time> 
     205    </Item> 
     206    <Item> 
     207      <Source>RauskiHyppy\RauskiHyppy2.png</Source> 
     208      <Name>RauskiHyppy\RauskiHyppy2</Name> 
     209      <Importer>TextureImporter</Importer> 
     210      <Processor>TextureProcessor</Processor> 
     211      <Options>None</Options> 
     212      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy2.xnb</Output> 
     213      <Time>2015-07-23T13:44:27.2006809+03:00</Time> 
     214    </Item> 
     215    <Item> 
     216      <Source>RauskiHyppy\RauskiHyppy3.png</Source> 
     217      <Name>RauskiHyppy\RauskiHyppy3</Name> 
     218      <Importer>TextureImporter</Importer> 
     219      <Processor>TextureProcessor</Processor> 
     220      <Options>None</Options> 
     221      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy3.xnb</Output> 
     222      <Time>2015-07-23T13:44:43.5863485+03:00</Time> 
     223    </Item> 
     224    <Item> 
     225      <Source>RauskiHyppy.anim</Source> 
     226      <Name>RauskiHyppy</Name> 
     227      <Importer>AnimationImporter</Importer> 
     228      <Processor>AnimationContentProcessor</Processor> 
     229      <Options>None</Options> 
     230      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy.xnb</Output> 
     231      <Time>2015-07-23T13:46:11.5887829+03:00</Time> 
     232      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy1.xnb</Request> 
     233      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy2.xnb</Request> 
     234      <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy3.xnb</Request> 
     235    </Item> 
     236    <Item> 
     237      <Source>RauskiHyokkays\RauskiHyppy1.png</Source> 
     238      <Importer>TextureImporter</Importer> 
     239      <Processor>TextureProcessor</Processor> 
     240      <Options>None</Options> 
     241      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiHyppy1_0.xnb</Output> 
     242      <Time>2015-07-23T13:21:45.464497+03:00</Time> 
     243    </Item> 
     244    <Item> 
     245      <Source>TaustaMusa.mp3</Source> 
     246      <Name>TaustaMusa</Name> 
     247      <Importer>Mp3Importer</Importer> 
     248      <Processor>SongProcessor</Processor> 
     249      <Options>None</Options> 
     250      <Output>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\TaustaMusa.xnb</Output> 
     251      <Extra>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\TaustaMusa.wma</Extra> 
     252      <Time>2015-07-23T13:55:43.3530128+03:00</Time> 
    117253    </Item> 
    118254    <BuildSuccessful>true</BuildSuccessful> 
Note: See TracChangeset for help on using the changeset viewer.