- Timestamp:
- 2015-07-23 14:52:13 (8 years ago)
- 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 10 10 { 11 11 12 PlatformCharacterrauski;13 PlatformCharactermiisas;12 Ihminen rauski; 13 Ihminen miisas; 14 14 //PlatformCharacter soikku; 15 15 16 Image tubecon = LoadImage("TubeCombat - tausta");17 Image rauskinKuva = LoadImage("TubeCombat - Rauski");16 Image tubecon = LoadImage("TubeCombat - tausta"); 17 Image rauskinKuva = LoadImage("TubeCombat - Rauski"); 18 18 Image miisasinKuva = LoadImage("TubeCombat - Miisas"); 19 Image soikunKuva = LoadImage("TubeCombat - Soikku");20 21 PlatformCharacterpelaaja1;22 PlatformCharacterpelaaja2;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; 25 25 double hyppynopeus = 800.0; 26 26 27 Animation rauskinHyokkays; 28 Animation rauskinHyppy; 29 Animation rauskiinaHyokkays; 30 Animation rauskinKavely; 27 31 28 32 public override void Begin() 29 33 { 30 34 // 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(); 34 38 HahmojenAnimaatiot(); 35 pelaaja1 = rauski;36 pelaaja2 = miisas;37 HahmojenOhjaus();39 pelaaja1 = rauski; 40 pelaaja2 = miisas; 41 HahmojenOhjaus(); 38 42 39 43 } … … 41 45 void LuoKentta() 42 46 { 43 Level.Width = Screen.Width;47 Level.Width = Screen.Width; 44 48 Level.Height = Screen.Height; 45 49 46 50 GameObject tausta = new GameObject(Level.Width, Level.Height); 47 tausta.Image = tubecon;51 tausta.Image = tubecon; 48 52 Add(tausta, -3); 49 53 … … 53 57 Level.CreateBorders(); 54 58 59 alaReuna.Y = Level.Bottom + 50; 60 alaReuna.Color = Color.Transparent; 61 55 62 Gravity = new Vector(0.0, -700.0); 56 63 } … … 58 65 void Hahmot() 59 66 { 60 rauski = new PlatformCharacter(270, 450);61 miisas = new PlatformCharacter(270, 450);67 rauski = new Ihminen(270, 450); 68 miisas = new Ihminen(270, 450); 62 69 //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; 69 77 70 78 //soikku.X = -500.00; 71 79 //soikku.Y = -200.0; 72 80 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; 75 86 //soikku.Image = soikunKuva; 76 77 Add(rauski); 78 Add(miisas); 87 //herba.Image = herbanKuva; 88 89 Add(rauski); 90 Add(miisas); 79 91 //Add(soikku); 92 //Add(herba); 80 93 81 94 } … … 84 97 void HahmojenAnimaatiot() 85 98 { 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; 91 106 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. 98 117 99 118 } … … 103 122 void HahmojenOhjaus() 104 123 { 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); 112 133 113 134 Keyboard.Listen(Key.Escape, ButtonState.Pressed, ConfirmExit, "Lopeta peli"); … … 120 141 void Hyppaa(PlatformCharacter pelaaja, double suunta) 121 142 { 122 pelaaja.Jump(suunta); 143 pelaaja.Jump (suunta); 144 123 145 } 124 146 … … 128 150 } 129 151 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 } 130 184 131 185 void VihollinenKuolee() … … 139 193 void PeliMusiikit() 140 194 { 141 MediaPlayer.Play FromURL("https://www.youtube.com/watch?v=sJHIbb3vdNM/musaa.mp3");195 MediaPlayer.Play("TaustaMusa"); 142 196 143 197 MediaPlayer.IsRepeating = true; 144 198 } 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 209 class Ihminen : PlatformCharacter 147 210 { 148 211 private IntMeter elamaLaskuri = new IntMeter(3, 0, 3); 149 212 public IntMeter ElamaLaskuri { get { return elamaLaskuri; } } 150 213 151 public Vihu(double leveys, double korkeus)214 public Ihminen (double leveys, double korkeus) 152 215 : base(leveys, korkeus) 153 216 { … … 155 218 } 156 219 157 void Menu() 158 { 159 220 221 222 223 224 public void OtaVahinkoa() 225 { 226 // AddCollisionHandler(pelaaja1, Pelaaja1Tormasi); 227 elamaLaskuri.Value--; 228 160 229 } 161 162 163 164 void Rajahtukset() 165 { 166 // AddCollisionHandler(pelaaja1, Pelaaja1Tormasi); 167 168 169 } 170 } 230 } 231 232 public 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 171 261 } 172 -
2015/30/CamillaT/YouCombat/YouCombat/YouCombat/YouCombat.csproj.Debug.cachefile
r6941 r6982 11 11 Content\Miisas\Miisas3.xnb 12 12 Content\Miisas.xnb 13 Content\RauskiinaHyokkays\Rauskiina1.xnb 14 Content\RauskiinaHyokkays\Rauskiina2.xnb 15 Content\RauskiinaHyokkays\Rauskiina3.xnb 16 Content\RauskiHyokkays\RauskiH1.xnb 17 Content\RauskiHyokkays\RauskiH2.xnb 18 Content\RauskiHyokkays\RauskiH3.xnb 19 Content\RauskiHyokkays.xnb 20 Content\RauskiinaHyokkays.xnb 21 Content\RauskiHyppy\RauskiHyppy1.xnb 22 Content\RauskiHyppy\RauskiHyppy2.xnb 23 Content\RauskiHyppy\RauskiHyppy3.xnb 24 Content\RauskiHyppy.xnb 25 Content\RauskiHyokkays\RauskiHyppy1_0.xnb 26 Content\TaustaMusa.xnb 27 Content\TaustaMusa.wma 28 Content\Rauski.anim 29 Content\Miisas.anim 30 Content\RauskiHyokkays.anim 31 Content\RauskiinaHyokkays.anim 32 Content\RauskiHyppy.anim -
2015/30/CamillaT/YouCombat/YouCombat/YouCombat/obj/x86/Debug/YouCombat.csproj.FileListAbsolute.txt
r6941 r6982 19 19 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\Miisas\Miisas3.xnb 20 20 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\Miisas.xnb 21 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina1.xnb 22 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina2.xnb 23 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays\Rauskiina3.xnb 24 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH1.xnb 25 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH2.xnb 26 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiH3.xnb 27 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays.xnb 28 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays.xnb 29 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy1.xnb 30 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy2.xnb 31 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy\RauskiHyppy3.xnb 32 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyppy.xnb 33 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays\RauskiHyppy1_0.xnb 34 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\TaustaMusa.xnb 35 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\TaustaMusa.wma 36 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\Rauski.anim 37 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\Miisas.anim 38 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiHyokkays.anim 39 C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\RauskiinaHyokkays.anim 40 C:\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 11 11 Content\Miisas\Miisas3.xnb 12 12 Content\Miisas.xnb 13 Content\RauskiinaHyokkays\Rauskiina1.xnb 14 Content\RauskiinaHyokkays\Rauskiina2.xnb 15 Content\RauskiinaHyokkays\Rauskiina3.xnb 16 Content\RauskiHyokkays\RauskiH1.xnb 17 Content\RauskiHyokkays\RauskiH2.xnb 18 Content\RauskiHyokkays\RauskiH3.xnb 19 Content\RauskiHyokkays.xnb 20 Content\RauskiinaHyokkays.xnb 21 Content\RauskiHyppy\RauskiHyppy1.xnb 22 Content\RauskiHyppy\RauskiHyppy2.xnb 23 Content\RauskiHyppy\RauskiHyppy3.xnb 24 Content\RauskiHyppy.xnb 25 Content\RauskiHyokkays\RauskiHyppy1_0.xnb 26 Content\TaustaMusa.xnb 27 Content\TaustaMusa.wma 28 Content\Rauski.anim 29 Content\Miisas.anim 30 Content\RauskiHyokkays.anim 31 Content\RauskiinaHyokkays.anim 32 Content\RauskiHyppy.anim -
2015/30/CamillaT/YouCombat/YouCombat/YouCombatContent/YouCombatContent.contentproj
r6941 r6982 78 78 <Importer>AnimationImporter</Importer> 79 79 <Processor>AnimationContentProcessor</Processor> 80 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 80 81 </Compile> 81 82 </ItemGroup> … … 102 103 <Importer>AnimationImporter</Importer> 103 104 <Processor>AnimationContentProcessor</Processor> 105 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 104 106 </Compile> 105 107 </ItemGroup> … … 119 121 <Importer>TextureImporter</Importer> 120 122 <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> 121 205 </Compile> 122 206 </ItemGroup> -
2015/30/CamillaT/YouCombat/YouCombat/YouCombatContent/obj/x86/Debug/ContentPipeline.xml
r6941 r6982 115 115 <Request>C:\MyTemp\CamillaT\YouCombat\YouCombat\YouCombat\bin\x86\Debug\Content\Miisas\Miisas2.xnb</Request> 116 116 <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> 117 253 </Item> 118 254 <BuildSuccessful>true</BuildSuccessful>
Note: See TracChangeset
for help on using the changeset viewer.