Changeset 9421 for 2017/31/PatrikK/Tasohyppelypeli
- Timestamp:
- 2017-08-04 11:21:38 (6 years ago)
- Location:
- 2017/31/PatrikK/Tasohyppelypeli
- Files:
-
- 10 added
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
2017/31/PatrikK/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli/BEST_GAME_EVER.cs
r9401 r9421 22 22 EasyHighScore topLista = new EasyHighScore(); 23 23 Hahmo pelaaja1; 24 IntMeter pisteLaskuri ;24 IntMeter pisteLaskuri = new IntMeter(0); 25 25 IntMeter tahtilaskuri= new IntMeter(0); 26 IntMeter tappolaskuri ;27 IntMeter aivolaskuri ;26 IntMeter tappolaskuri = new IntMeter(0); 27 IntMeter aivolaskuri = new IntMeter(0); 28 28 //DoubleMeter elamalaskuri; 29 29 Image pelaajanKuva = LoadImage("norsu"); … … 39 39 double vaikeus = 1.0; 40 40 41 Weapon ostettuAse; 42 41 43 42 44 public override void Begin() … … 47 49 MediaPlayer.Play("background_music"); 48 50 MediaPlayer.IsRepeating = true; 51 52 topLista.HighScoreWindow.Closed += (w) => AlkuValikko(); 49 53 //IsFullScreen = true; 50 54 } … … 72 76 void LuoKentta() 73 77 { 78 74 79 TileMap kentta = TileMap.FromLevelAsset("kentta" + kenttaJossaOllaanNyt); 75 80 … … 86 91 Level.CreateBorders(); 87 92 //Level.Background.CreateGradient(Color.White, Color.SkyBlue); 88 Level.Background.Image = LoadImage(" parallax-mountain-bg");93 Level.Background.Image = LoadImage("vortex"); 89 94 //Level.Background.TextureWrapSize = new Vector(2.0, 1.0); 90 95 Level.Background.FitToLevel(); … … 110 115 PhysicsObject taso = PhysicsObject.CreateStaticObject(leveys, korkeus); 111 116 taso.Position = paikka; 112 taso.Image = LoadImage(" bricks");117 taso.Image = LoadImage("steel"); 113 118 Add(taso); 114 119 //taso.MakeOneWay(); … … 181 186 pelaaja1.Weapon.FireRate = 0.2; 182 187 pelaaja1.Weapon.AmmoIgnoresGravity = false; 188 189 if (ostettuAse is Kranaatinheitin) 190 { 191 OtaKranuHeitin(); 192 } 193 else if(ostettuAse is LaserGun) 194 { 195 OtaLaser(); 196 } 197 else if(ostettuAse is PlasmaCannon) 198 { 199 OtaPlasma(); 200 } 201 else if(ostettuAse is AssaultRifle) 202 { 203 OtaRifle(); 204 } 205 206 GameObject tahtain = new GameObject(30,30); 207 tahtain.Image = LoadImage("crosshair"); 208 Add(tahtain); 209 210 Timer ammuajastinhajalle2 = new Timer(); 211 ammuajastinhajalle2.Interval = 0.01; 212 ammuajastinhajalle2.Timeout += delegate { tahtain.Position = Mouse.PositionOnWorld; }; 213 ammuajastinhajalle2.Start(); 214 215 183 216 pelaaja1.Destroyed += GameOver; 184 217 //Ammusten määrä aluksi: … … 338 371 } 339 372 } 340 void AmmuAseella(PlatformCharacter pelaaja) 341 { 373 void AmmuAseella(PlatformCharacter pelaaja) 374 { 375 pelaaja.Weapon.AbsoluteAngle = (Mouse.PositionOnWorld - pelaaja1.Position).Angle; 376 342 377 PhysicsObject ammus = pelaaja.Weapon.Shoot(); 343 378 … … 350 385 ammus.Image = LoadImage("grenade"); 351 386 ammus.Size *= 1.5; 352 Timer.SingleShot(3,delegate387 ammus.Destroyed+= delegate 353 388 { 354 389 Explosion rajahdys = new Explosion(125); … … 357 392 rajahdys.AddShockwaveHandler("VIHOLLINEN", KranaattiOsui); 358 393 359 }); 394 }; 395 AddCollisionHandler(ammus, "VIHOLLINEN", CollisionHandler.DestroyObject); 360 396 } 361 397 else if (pelaaja1.Weapon is Cannon) … … 375 411 { 376 412 ammus.Image = LoadImage("laser"); 377 ammus.Width *= 7.5;378 ammus.Velocity *= 0. 1;413 ammus.Width *= 30.0; 414 ammus.Velocity *= 0.7; 379 415 //ammus.CollisionIgnoreGroup = 3; 380 416 } … … 470 506 { 471 507 aivolaskuri.Value -= 10; 472 pelaaja1.Weapon = new AssaultRifle(30, 10); 508 OtaRifle(); 509 } 510 511 } 512 void OtaRifle() 513 { 514 pelaaja1.Weapon = new AssaultRifle(30, 10); 473 515 pelaaja1.Weapon.ProjectileCollision = PelaajanAmmusOsui; 474 516 pelaaja1.Weapon.FireRate = 5; 475 517 pelaaja1.Weapon.Image = LoadImage("assaultrifle"); 476 } 477 518 ostettuAse = pelaaja1.Weapon; 478 519 } 479 520 void OstaPlasma() … … 482 523 { 483 524 aivolaskuri.Value -= 25; 484 pelaaja1.Weapon = new PlasmaCannon(30, 10); 525 OtaPlasma(); 526 } 527 528 } 529 void OtaPlasma() 530 { 531 pelaaja1.Weapon = new PlasmaCannon(30, 10); 485 532 pelaaja1.Weapon.ProjectileCollision = PelaajanAmmusOsui; 486 533 pelaaja1.Weapon.FireRate = 5; 487 534 pelaaja1.Weapon.Image = LoadImage("plasmacannon"); 488 } 489 535 ostettuAse = pelaaja1.Weapon; 490 536 } 491 537 void OstaLaser() … … 494 540 { 495 541 aivolaskuri.Value -= 50; 496 pelaaja1.Weapon = new LaserGun(30, 10); 542 OtaLaser(); 543 } 544 545 } 546 void OtaLaser() 547 { 548 pelaaja1.Weapon = new LaserGun(30, 10); 497 549 pelaaja1.Weapon.ProjectileCollision = PelaajanAmmusOsui; 498 550 pelaaja1.Weapon.FireRate = 25; 499 551 pelaaja1.Weapon.Image = LoadImage("lasercannon"); 500 } 501 552 ostettuAse = pelaaja1.Weapon; 502 553 } 503 554 void OstaKranuHeitin() … … 506 557 { 507 558 aivolaskuri.Value -= 100; 508 pelaaja1.Weapon = new Kranaatinheitin(30, 10); 559 OtaKranuHeitin(); 560 } 561 } 562 void OtaKranuHeitin() 563 { 564 pelaaja1.Weapon = new Kranaatinheitin(30, 10); 509 565 pelaaja1.Weapon.ProjectileCollision = PelaajanAmmusOsui; 510 566 pelaaja1.Weapon.FireRate = 0.5; 511 567 pelaaja1.Weapon.Image = LoadImage("lol"); 512 }568 ostettuAse = pelaaja1.Weapon; 513 569 } 514 570 void VihuAmmuAseella(PlatformCharacter pelaaja) … … 754 810 { 755 811 topLista.Show(); 812 756 813 } 757 814 … … 759 816 void LuoPistelaskuri() 760 817 { 761 pisteLaskuri = new IntMeter(0);818 //pisteLaskuri = new IntMeter(0); 762 819 763 820 Label pisteNaytto = new Label(); … … 811 868 if(tahtilaskuri.Value>100) 812 869 { 813 if(kenttaJossaOllaanNyt==1) kenttaJossaOllaanNyt = 2; 814 else if (kenttaJossaOllaanNyt == 2) kenttaJossaOllaanNyt = 1; 815 AloitaPeli(); 870 //if(kenttaJossaOllaanNyt==1) kenttaJossaOllaanNyt = 2; 871 //else if (kenttaJossaOllaanNyt == 2) kenttaJossaOllaanNyt = 1; 872 kenttaJossaOllaanNyt += 1; 873 if(kenttaJossaOllaanNyt == 5) 874 { 875 LoppuTekstit(); 876 } 877 else 878 { 879 AloitaPeli(); 880 881 } 882 816 883 } 817 884 } … … 845 912 void LuoTappoLaskuri() 846 913 { 847 tappolaskuri = new IntMeter(0);914 //tappolaskuri = new IntMeter(0); 848 915 849 916 Label pisteNaytto = new Label(); … … 858 925 void LuoAivoLaskuri() 859 926 { 860 aivolaskuri = new IntMeter(0);927 //aivolaskuri = new IntMeter(0); 861 928 862 929 Label pisteNaytto = new Label(); … … 878 945 else 879 946 { 880 topLista.EnterAndShow(pisteLaskuri.Value + tahtilaskuri.Value );881 topLista.HighScoreWindow.Closed += (w) => AlkuValikko();947 topLista.EnterAndShow(pisteLaskuri.Value + tahtilaskuri.Value + tappolaskuri.Value + aivolaskuri.Value); 948 882 949 883 950 } … … 1031 1098 Timer.SingleShot(4, AlkuValikko); 1032 1099 } 1100 void LoppuTekstit() 1101 { 1102 Label teksti = new Label("Tekijät:"); 1103 Add(teksti); 1104 Label teksti1 = new Label("Patrik Käpyaho"); 1105 teksti1.X = 0; 1106 teksti1.Y = -60; 1107 Add(teksti1); 1108 Label teksti2 = new Label("Avustajat:"); 1109 teksti2.X = 0; 1110 teksti2.Y = -120; 1111 Add(teksti2); 1112 Label teksti3 = new Label("Simo, Jouni ja Mikko"); 1113 teksti3.X = 0; 1114 teksti3.Y = -180; 1115 Add(teksti3); 1116 teksti3.Color = Color.MediumPurple; 1117 teksti2.Color = Color.MediumPurple; 1118 teksti1.Color = Color.MediumPurple; 1119 teksti.Color = Color.MediumPurple; 1120 Label logo = new Label(LoadImage("logo")); 1121 logo.X = 0; 1122 logo.Y = 200; 1123 Add(logo); 1124 Timer.SingleShot(4, GameOver); 1125 } 1033 1126 1034 1127 -
2017/31/PatrikK/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli.csproj.Debug.cachefile
r9401 r9421 36 36 Content\box.xnb 37 37 Content\flame.xnb 38 Content\vortex.xnb 39 Content\kentta3.xnb 40 Content\kentta4.xnb 41 Content\steel.xnb 42 Content\crosshair.xnb 38 43 Content\background_music.wma 39 44 Content\music1.wma -
2017/31/PatrikK/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli/bin/x86/Debug/Data/_score.xml
r9401 r9421 30 30 <Item Index="3" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 31 31 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 32 <Value>KING</Value> 33 </Field> 34 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 35 <Value>66685398</Value> 36 </Field> 37 </Item> 38 <Item Index="4" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 39 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 32 40 <Value>hacker</Value> 33 41 </Field> … … 36 44 </Field> 37 45 </Item> 38 <Item Index=" 4" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null">46 <Item Index="5" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 39 47 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 40 48 <Value>. . . . . . . . .</Value> … … 44 52 </Field> 45 53 </Item> 46 <Item Index=" 5" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null">54 <Item Index="6" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 47 55 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 48 56 <Value>MESTARI</Value> … … 52 60 </Field> 53 61 </Item> 54 <Item Index=" 6" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null">62 <Item Index="7" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 55 63 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 56 64 <Value>MESTARI</Value> … … 60 68 </Field> 61 69 </Item> 62 <Item Index=" 7" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null">70 <Item Index="8" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 63 71 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 64 72 <Value>huijauskoodaaja</Value> … … 68 76 </Field> 69 77 </Item> 70 <Item Index=" 8" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null">78 <Item Index="9" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 71 79 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 72 80 <Value>huijauskoodaaja</Value> … … 76 84 </Field> 77 85 </Item> 78 <Item Index="9" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null">79 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">80 <Value>huijauskoodaaja</Value>81 </Field>82 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">83 <Value>437</Value>84 </Field>85 </Item>86 86 </Array> 87 87 </Field> 88 88 <Field Name="LastEnteredName" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 89 <Value> lol</Value>89 <Value>KING</Value> 90 90 </Field> 91 91 </Object> -
2017/31/PatrikK/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli/obj/x86/Debug/ContentPipeline-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}.xml
r9401 r9421 108 108 <Options>None</Options> 109 109 <Output>C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\kentta2.xnb</Output> 110 <Time>2017-08-0 1T14:33:06.4860846+03:00</Time>110 <Time>2017-08-04T10:02:44.8630089+03:00</Time> 111 111 </Item> 112 112 <Item> … … 340 340 <Output>C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\flame.xnb</Output> 341 341 <Time>2017-08-03T14:01:06.2115847+03:00</Time> 342 </Item> 343 <Item> 344 <Source>vortex.png</Source> 345 <Name>vortex</Name> 346 <Importer>TextureImporter</Importer> 347 <Processor>TextureProcessor</Processor> 348 <Options>None</Options> 349 <Output>C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\vortex.xnb</Output> 350 <Time>2017-08-04T09:39:50.1291502+03:00</Time> 351 </Item> 352 <Item> 353 <Source>kentta3.txt</Source> 354 <Name>kentta3</Name> 355 <Importer>TextFileImporter</Importer> 356 <Processor>TextFileContentProcessor</Processor> 357 <Options>None</Options> 358 <Output>C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\kentta3.xnb</Output> 359 <Time>2017-08-04T10:48:10.9978867+03:00</Time> 360 </Item> 361 <Item> 362 <Source>kentta4.txt</Source> 363 <Name>kentta4</Name> 364 <Importer>TextFileImporter</Importer> 365 <Processor>TextFileContentProcessor</Processor> 366 <Options>None</Options> 367 <Output>C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\kentta4.xnb</Output> 368 <Time>2017-08-04T10:47:54.1244393+03:00</Time> 369 </Item> 370 <Item> 371 <Source>steel.png</Source> 372 <Name>steel</Name> 373 <Importer>TextureImporter</Importer> 374 <Processor>TextureProcessor</Processor> 375 <Options>None</Options> 376 <Output>C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\steel.xnb</Output> 377 <Time>2017-08-04T10:52:31.6939173+03:00</Time> 378 </Item> 379 <Item> 380 <Source>crosshair.png</Source> 381 <Name>crosshair</Name> 382 <Importer>TextureImporter</Importer> 383 <Processor>TextureProcessor</Processor> 384 <Options>None</Options> 385 <Output>C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\crosshair.xnb</Output> 386 <Time>2017-08-04T11:02:50.5713183+03:00</Time> 342 387 </Item> 343 388 <BuildSuccessful>true</BuildSuccessful> -
2017/31/PatrikK/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli/obj/x86/Debug/Tasohyppelypeli.csproj.FileListAbsolute.txt
r9401 r9421 50 50 C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\box.xnb 51 51 C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\flame.xnb 52 C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\vortex.xnb 53 C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\kentta3.xnb 54 C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\kentta4.xnb 55 C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\steel.xnb 56 C:\MyTemp\PatrikK\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\crosshair.xnb -
2017/31/PatrikK/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli/obj/x86/Debug/cachefile-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}-targetpath.txt
r9401 r9421 42 42 Content\box.xnb 43 43 Content\flame.xnb 44 Content\vortex.xnb 45 Content\kentta3.xnb 46 Content\kentta4.xnb 47 Content\steel.xnb 48 Content\crosshair.xnb -
2017/31/PatrikK/Tasohyppelypeli/Tasohyppelypeli/TasohyppelypeliContent/TasohyppelypeliContent.contentproj
r9401 r9421 117 117 </ItemGroup> 118 118 <ItemGroup> 119 <Compile Include="kentta3.txt"> 120 <Name>kentta3</Name> 121 <Importer>TextFileImporter</Importer> 122 <Processor>TextFileContentProcessor</Processor> 123 </Compile> 124 </ItemGroup> 125 <ItemGroup> 126 <Compile Include="blackhole.png"> 127 <Name>blackhole</Name> 128 <Importer>TextureImporter</Importer> 129 <Processor>TextureProcessor</Processor> 130 </Compile> 131 </ItemGroup> 132 <ItemGroup> 133 <Compile Include="background_music.mp3"> 134 <Name>background_music</Name> 135 <Importer>Mp3Importer</Importer> 136 <Processor>SongProcessor</Processor> 137 </Compile> 138 </ItemGroup> 139 <ItemGroup> 140 <Compile Include="music1.mp3"> 141 <Name>music1</Name> 142 <Importer>Mp3Importer</Importer> 143 <Processor>SongProcessor</Processor> 144 </Compile> 145 </ItemGroup> 146 <ItemGroup> 147 <Compile Include="music2.mp3"> 148 <Name>music2</Name> 149 <Importer>Mp3Importer</Importer> 150 <Processor>SongProcessor</Processor> 151 </Compile> 152 </ItemGroup> 153 <ItemGroup> 154 <Compile Include="logo.png"> 155 <Name>logo</Name> 156 <Importer>TextureImporter</Importer> 157 <Processor>TextureProcessor</Processor> 158 </Compile> 159 </ItemGroup> 160 <ItemGroup> 161 <Compile Include="store.png"> 162 <Name>store</Name> 163 <Importer>TextureImporter</Importer> 164 <Processor>TextureProcessor</Processor> 165 </Compile> 166 </ItemGroup> 167 <ItemGroup> 168 <Compile Include="plasmacannon.png"> 169 <Name>plasmacannon</Name> 170 <Importer>TextureImporter</Importer> 171 <Processor>TextureProcessor</Processor> 172 </Compile> 173 </ItemGroup> 174 <ItemGroup> 175 <Compile Include="lasercannon.png"> 176 <Name>lasercannon</Name> 177 <Importer>TextureImporter</Importer> 178 <Processor>TextureProcessor</Processor> 179 </Compile> 180 </ItemGroup> 181 <ItemGroup> 182 <Compile Include="assaultrifle.png"> 183 <Name>assaultrifle</Name> 184 <Importer>TextureImporter</Importer> 185 <Processor>TextureProcessor</Processor> 186 </Compile> 187 </ItemGroup> 188 <ItemGroup> 189 <Compile Include="cannon.png"> 190 <Name>cannon</Name> 191 <Importer>TextureImporter</Importer> 192 <Processor>TextureProcessor</Processor> 193 </Compile> 194 </ItemGroup> 195 <ItemGroup> 196 <Compile Include="laser.png"> 197 <Name>laser</Name> 198 <Importer>TextureImporter</Importer> 199 <Processor>TextureProcessor</Processor> 200 </Compile> 201 </ItemGroup> 202 <ItemGroup> 203 <Compile Include="plasma.png"> 204 <Name>plasma</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 </Compile> 208 </ItemGroup> 209 <ItemGroup> 210 <Compile Include="bullet.png"> 211 <Name>bullet</Name> 212 <Importer>TextureImporter</Importer> 213 <Processor>TextureProcessor</Processor> 214 </Compile> 215 </ItemGroup> 216 <ItemGroup> 217 <Compile Include="cannonball.png"> 218 <Name>cannonball</Name> 219 <Importer>TextureImporter</Importer> 220 <Processor>TextureProcessor</Processor> 221 </Compile> 222 </ItemGroup> 223 <ItemGroup> 224 <Compile Include="rajahdys.png"> 225 <Name>rajahdys</Name> 226 <Importer>TextureImporter</Importer> 227 <Processor>TextureProcessor</Processor> 228 </Compile> 229 </ItemGroup> 230 <ItemGroup> 231 <Compile Include="dollar.png"> 232 <Name>dollar</Name> 233 <Importer>TextureImporter</Importer> 234 <Processor>TextureProcessor</Processor> 235 </Compile> 236 </ItemGroup> 237 <ItemGroup> 238 <Compile Include="lol.png"> 239 <Name>lol</Name> 240 <Importer>TextureImporter</Importer> 241 <Processor>TextureProcessor</Processor> 242 </Compile> 243 </ItemGroup> 244 <ItemGroup> 245 <Compile Include="bricks.png"> 246 <Name>bricks</Name> 247 <Importer>TextureImporter</Importer> 248 <Processor>TextureProcessor</Processor> 249 </Compile> 250 </ItemGroup> 251 <ItemGroup> 252 <Compile Include="parallax-mountain-bg.png"> 253 <Name>parallax-mountain-bg</Name> 254 <Importer>TextureImporter</Importer> 255 <Processor>TextureProcessor</Processor> 256 </Compile> 257 </ItemGroup> 258 <ItemGroup> 259 <Compile Include="lol1.mp3"> 260 <Name>lol1</Name> 261 <Importer>Mp3Importer</Importer> 262 <Processor>SongProcessor</Processor> 263 </Compile> 264 </ItemGroup> 265 <ItemGroup> 266 <Compile Include="lol2.mp3"> 267 <Name>lol2</Name> 268 <Importer>Mp3Importer</Importer> 269 <Processor>SongProcessor</Processor> 270 </Compile> 271 </ItemGroup> 272 <ItemGroup> 273 <Compile Include="bruh.mp3"> 274 <Name>bruh</Name> 275 <Importer>Mp3Importer</Importer> 276 <Processor>SongProcessor</Processor> 277 </Compile> 278 </ItemGroup> 279 <ItemGroup> 280 <Compile Include="star.png"> 281 <Name>star</Name> 282 <Importer>TextureImporter</Importer> 283 <Processor>TextureProcessor</Processor> 284 </Compile> 285 </ItemGroup> 286 <ItemGroup> 287 <Compile Include="box.png"> 288 <Name>box</Name> 289 <Importer>TextureImporter</Importer> 290 <Processor>TextureProcessor</Processor> 291 </Compile> 292 </ItemGroup> 293 <ItemGroup> 294 <Compile Include="flame.png"> 295 <Name>flame</Name> 296 <Importer>TextureImporter</Importer> 297 <Processor>TextureProcessor</Processor> 298 </Compile> 299 </ItemGroup> 300 <ItemGroup> 301 <Compile Include="vortex.png"> 302 <Name>vortex</Name> 303 <Importer>TextureImporter</Importer> 304 <Processor>TextureProcessor</Processor> 305 </Compile> 306 </ItemGroup> 307 <ItemGroup> 308 <Compile Include="kentta4.txt"> 309 <Name>kentta4</Name> 310 <Importer>TextFileImporter</Importer> 311 <Processor>TextFileContentProcessor</Processor> 312 </Compile> 313 </ItemGroup> 314 <ItemGroup> 119 315 <Compile Include="kentta2.txt"> 120 316 <Name>kentta2</Name> … … 124 320 </ItemGroup> 125 321 <ItemGroup> 126 <Compile Include="blackhole.png"> 127 <Name>blackhole</Name> 128 <Importer>TextureImporter</Importer> 129 <Processor>TextureProcessor</Processor> 130 </Compile> 131 </ItemGroup> 132 <ItemGroup> 133 <Compile Include="background_music.mp3"> 134 <Name>background_music</Name> 135 <Importer>Mp3Importer</Importer> 136 <Processor>SongProcessor</Processor> 137 </Compile> 138 </ItemGroup> 139 <ItemGroup> 140 <Compile Include="music1.mp3"> 141 <Name>music1</Name> 142 <Importer>Mp3Importer</Importer> 143 <Processor>SongProcessor</Processor> 144 </Compile> 145 </ItemGroup> 146 <ItemGroup> 147 <Compile Include="music2.mp3"> 148 <Name>music2</Name> 149 <Importer>Mp3Importer</Importer> 150 <Processor>SongProcessor</Processor> 151 </Compile> 152 </ItemGroup> 153 <ItemGroup> 154 <Compile Include="logo.png"> 155 <Name>logo</Name> 156 <Importer>TextureImporter</Importer> 157 <Processor>TextureProcessor</Processor> 158 </Compile> 159 </ItemGroup> 160 <ItemGroup> 161 <Compile Include="store.png"> 162 <Name>store</Name> 163 <Importer>TextureImporter</Importer> 164 <Processor>TextureProcessor</Processor> 165 </Compile> 166 </ItemGroup> 167 <ItemGroup> 168 <Compile Include="plasmacannon.png"> 169 <Name>plasmacannon</Name> 170 <Importer>TextureImporter</Importer> 171 <Processor>TextureProcessor</Processor> 172 </Compile> 173 </ItemGroup> 174 <ItemGroup> 175 <Compile Include="lasercannon.png"> 176 <Name>lasercannon</Name> 177 <Importer>TextureImporter</Importer> 178 <Processor>TextureProcessor</Processor> 179 </Compile> 180 </ItemGroup> 181 <ItemGroup> 182 <Compile Include="assaultrifle.png"> 183 <Name>assaultrifle</Name> 184 <Importer>TextureImporter</Importer> 185 <Processor>TextureProcessor</Processor> 186 </Compile> 187 </ItemGroup> 188 <ItemGroup> 189 <Compile Include="cannon.png"> 190 <Name>cannon</Name> 191 <Importer>TextureImporter</Importer> 192 <Processor>TextureProcessor</Processor> 193 </Compile> 194 </ItemGroup> 195 <ItemGroup> 196 <Compile Include="laser.png"> 197 <Name>laser</Name> 198 <Importer>TextureImporter</Importer> 199 <Processor>TextureProcessor</Processor> 200 </Compile> 201 </ItemGroup> 202 <ItemGroup> 203 <Compile Include="plasma.png"> 204 <Name>plasma</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 </Compile> 208 </ItemGroup> 209 <ItemGroup> 210 <Compile Include="bullet.png"> 211 <Name>bullet</Name> 212 <Importer>TextureImporter</Importer> 213 <Processor>TextureProcessor</Processor> 214 </Compile> 215 </ItemGroup> 216 <ItemGroup> 217 <Compile Include="cannonball.png"> 218 <Name>cannonball</Name> 219 <Importer>TextureImporter</Importer> 220 <Processor>TextureProcessor</Processor> 221 </Compile> 222 </ItemGroup> 223 <ItemGroup> 224 <Compile Include="rajahdys.png"> 225 <Name>rajahdys</Name> 226 <Importer>TextureImporter</Importer> 227 <Processor>TextureProcessor</Processor> 228 </Compile> 229 </ItemGroup> 230 <ItemGroup> 231 <Compile Include="dollar.png"> 232 <Name>dollar</Name> 233 <Importer>TextureImporter</Importer> 234 <Processor>TextureProcessor</Processor> 235 </Compile> 236 </ItemGroup> 237 <ItemGroup> 238 <Compile Include="lol.png"> 239 <Name>lol</Name> 240 <Importer>TextureImporter</Importer> 241 <Processor>TextureProcessor</Processor> 242 </Compile> 243 </ItemGroup> 244 <ItemGroup> 245 <Compile Include="bricks.png"> 246 <Name>bricks</Name> 247 <Importer>TextureImporter</Importer> 248 <Processor>TextureProcessor</Processor> 249 </Compile> 250 </ItemGroup> 251 <ItemGroup> 252 <Compile Include="parallax-mountain-bg.png"> 253 <Name>parallax-mountain-bg</Name> 254 <Importer>TextureImporter</Importer> 255 <Processor>TextureProcessor</Processor> 256 </Compile> 257 </ItemGroup> 258 <ItemGroup> 259 <Compile Include="lol1.mp3"> 260 <Name>lol1</Name> 261 <Importer>Mp3Importer</Importer> 262 <Processor>SongProcessor</Processor> 263 </Compile> 264 </ItemGroup> 265 <ItemGroup> 266 <Compile Include="lol2.mp3"> 267 <Name>lol2</Name> 268 <Importer>Mp3Importer</Importer> 269 <Processor>SongProcessor</Processor> 270 </Compile> 271 </ItemGroup> 272 <ItemGroup> 273 <Compile Include="bruh.mp3"> 274 <Name>bruh</Name> 275 <Importer>Mp3Importer</Importer> 276 <Processor>SongProcessor</Processor> 277 </Compile> 278 </ItemGroup> 279 <ItemGroup> 280 <Compile Include="star.png"> 281 <Name>star</Name> 282 <Importer>TextureImporter</Importer> 283 <Processor>TextureProcessor</Processor> 284 </Compile> 285 </ItemGroup> 286 <ItemGroup> 287 <Compile Include="box.png"> 288 <Name>box</Name> 289 <Importer>TextureImporter</Importer> 290 <Processor>TextureProcessor</Processor> 291 </Compile> 292 </ItemGroup> 293 <ItemGroup> 294 <Compile Include="flame.png"> 295 <Name>flame</Name> 322 <Compile Include="steel.png"> 323 <Name>steel</Name> 324 <Importer>TextureImporter</Importer> 325 <Processor>TextureProcessor</Processor> 326 </Compile> 327 </ItemGroup> 328 <ItemGroup> 329 <Compile Include="crosshair.png"> 330 <Name>crosshair</Name> 296 331 <Importer>TextureImporter</Importer> 297 332 <Processor>TextureProcessor</Processor>
Note: See TracChangeset
for help on using the changeset viewer.