Changeset 6996
- Timestamp:
- 2015-07-23 15:04:41 (8 years ago)
- Location:
- 2015/30/EemilR
- Files:
-
- 9 added
- 1 deleted
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
2015/30/EemilR/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli.cs
r6974 r6996 6 6 using Jypeli.Effects; 7 7 using Jypeli.Widgets; 8 9 /// <summary> 10 /// The Jump 11 /// </summary> 8 12 9 13 public class Tasohyppelypeli : PhysicsGame … … 30 34 Image oviVasenKuva = LoadImage("OviVasen"); 31 35 Image paluuOikeaKuva = LoadImage("PaluuOikea"); 36 Image MaaliKuva = LoadImage("Maali"); 32 37 33 38 DoubleMeter avaintenmaara; … … 35 40 IntMeter kuolemat; 36 41 37 SoundEffect maaliAani = LoadSoundEffect("maali ");42 SoundEffect maaliAani = LoadSoundEffect("maali2"); 38 43 39 44 PhysicsObject viimeinenCheckpoint; 40 45 41 bool cheats = false;46 PhysicsObject viimeinenSpawn; 42 47 43 48 bool painovoima = true; … … 93 98 tekstikentta.Y = Screen.Top - 100; 94 99 tekstikentta.TextColor = Color.Black; 95 tekstikentta.Text = tekstikentta + "moimoi";96 100 Add(tekstikentta); 97 101 } … … 117 121 kentta.SetTileMethod('#', LisaaTaso); 118 122 kentta.SetTileMethod('O', LisaaOvi); 119 kentta.SetTileMethod(' N', LisaaPelaaja);123 kentta.SetTileMethod('0', LisaaPelaaja); 120 124 kentta.SetTileMethod('A', LisaaAvain); 121 125 kentta.SetTileMethod('P', LisaaPiikki); … … 124 128 kentta.SetTileMethod('V', LisaaPahis); 125 129 kentta.SetTileMethod('<', LisaaVasenOvi); 130 126 131 127 132 128 133 kentta.SetTileMethod('U', LisaaOikeaPaluu); 134 kentta.SetTileMethod('S', spawn); 135 136 kentta.SetTileMethod('M', LisaaMaali); 129 137 130 138 kentta.Execute(Koko, Koko); … … 133 141 134 142 PhysicsObject liikkuva1 = new PhysicsObject(200.0, 40.0); 143 } 144 145 void LisaaMaali(Vector paikka, double leveys, double korkeus) 146 { 147 PhysicsObject maali = PhysicsObject.CreateStaticObject(leveys, korkeus); 148 maali.Position = paikka; 149 maali.IgnoresCollisionResponse = true; 150 maali.Tag = "maali"; 151 maali.Image = MaaliKuva; 152 Add(maali); 153 } 154 155 void spawn(Vector paikka, double leveys, double korkeus) 156 { 157 PhysicsObject spawnpoint = PhysicsObject.CreateStaticObject(leveys, korkeus); 158 spawnpoint.Position = paikka; 159 spawnpoint.IgnoresCollisionResponse = true; 160 spawnpoint.IsVisible = false; 161 spawnpoint.Tag = "spawnpoint"; 162 163 viimeinenSpawn = spawnpoint; 164 135 165 } 136 166 … … 161 191 Pahis.Tag = "pahis"; 162 192 Pahis.Shape = Shape.FromImage(pahiksenKuva); 193 Pahis.IgnoresExplosions = true; 163 194 164 195 PlatformWandererBrain tasoAivot = new PlatformWandererBrain(); … … 230 261 AddCollisionHandler(pelaaja1, "checkpoint", checkpointAktivoitu); 231 262 AddCollisionHandler(pelaaja1, "pahis", osuiPiikkiin); 263 AddCollisionHandler(pelaaja1, "maali", osuiMaaliin); 232 264 pelaaja1.IgnoresCollisionResponse = false; 233 265 Add(pelaaja1); … … 240 272 } 241 273 274 void osuiMaaliin(PhysicsObject hahmo, PhysicsObject avain) 275 { 276 MessageDisplay.Add("Onnittelut! Pääsit maaliin!"); 277 } 278 242 279 void LisaaNappaimet() 243 280 { … … 247 284 Keyboard.Listen(Key.Enter, ButtonState.Pressed, CheatitPaalle, "Enable Cheats"); 248 285 249 Keyboard.Listen(Key. A, ButtonState.Down, Liikuta, "Liikkuu vasemmalle", pelaaja1, -nopeus);250 Keyboard.Listen(Key. D, ButtonState.Down, Liikuta, "Liikkuu vasemmalle", pelaaja1, nopeus);286 Keyboard.Listen(Key.Left, ButtonState.Down, Liikuta, "Liikkuu vasemmalle", pelaaja1, -nopeus); 287 Keyboard.Listen(Key.Right, ButtonState.Down, Liikuta, "Liikkuu Oikealle", pelaaja1, nopeus); 251 288 Keyboard.Listen(Key.Space, ButtonState.Pressed, Hyppaa, "Pelaaja hyppää", pelaaja1, hyppyNopeus); 252 289 … … 319 356 void osuiPiikkiin(PhysicsObject pelaaja1, PhysicsObject juttu) 320 357 { 358 359 360 kuolemat.Value += 1; 361 362 363 Timer.SingleShot(0.1, PalaaCheckpoint); 364 365 366 367 368 369 } 370 371 void PalaaCheckpoint() 372 { 321 373 pelaaja1.Position = viimeinenCheckpoint.Position; 322 323 kuolemat.Value += 1; 324 374 325 375 } 326 376 … … 366 416 void CheatitPaalle() 367 417 { 418 IsPaused = true; 368 419 InputWindow kysymysIkkuna = new InputWindow("Enter Code To Enable Cheats"); 369 420 kysymysIkkuna.TextEntered += ProcessInput; … … 374 425 { 375 426 string vastaus = ikkuna.InputBox.Text; 376 if (vastaus == "1234") 377 { 378 if (cheats == true) 379 { 380 cheats = false; 381 painovoima = true; 382 pelaaja1.IgnoresCollisionResponse = false; 383 LisaaPainovoima(); 384 Keyboard.Disable(Key.O); 385 Keyboard.Disable(Key.K); 386 Keyboard.Disable(Key.L); 387 Keyboard.Disable(Key.J); 388 } 389 else 390 { 391 cheats = true; 392 painovoima = false; 393 pelaaja1.IgnoresCollisionResponse = true; 394 Keyboard.Enable(Key.O); 395 Keyboard.Enable(Key.K); 396 Keyboard.Enable(Key.L); 397 Keyboard.Enable(Key.J); 398 Keyboard.Listen(Key.I, ButtonState.Pressed, LiikuYlos, "Ylös", pelaaja1, nopeus); 399 Keyboard.Listen(Key.K, ButtonState.Pressed, LiikuAlas, "Alas", pelaaja1, nopeus); 400 Keyboard.Listen(Key.L, ButtonState.Pressed, LiikuOikealle, "Oikealle", pelaaja1, nopeus); 401 Keyboard.Listen(Key.J, ButtonState.Pressed, LiikuVasemmalle, "Vasemmalle", pelaaja1, nopeus); 402 LisaaPainovoima(); 403 404 405 } 406 } 407 } 427 428 IsPaused = false; 429 430 if (vastaus == "allOn") 431 { 432 painovoima = false; 433 LisaaPainovoima(); 434 435 pelaaja1.IgnoresCollisionResponse = true; 436 437 Keyboard.Enable(Key.I); 438 Keyboard.Enable(Key.K); 439 Keyboard.Enable(Key.L); 440 Keyboard.Enable(Key.J); 441 Keyboard.Listen(Key.I, ButtonState.Pressed, LiikuYlos, "Ylös", pelaaja1, nopeus); 442 Keyboard.Listen(Key.K, ButtonState.Pressed, LiikuAlas, "Alas", pelaaja1, nopeus); 443 Keyboard.Listen(Key.L, ButtonState.Pressed, LiikuOikealle, "Oikealle", pelaaja1, nopeus); 444 Keyboard.Listen(Key.J, ButtonState.Pressed, LiikuVasemmalle, "Vasemmalle", pelaaja1, nopeus); 445 } 446 447 if (vastaus == "allOff") 448 { 449 painovoima = true; 450 LisaaPainovoima(); 451 452 pelaaja1.IgnoresCollisionResponse = false; 453 454 Keyboard.Disable(Key.I); 455 Keyboard.Disable(Key.K); 456 Keyboard.Disable(Key.L); 457 Keyboard.Disable(Key.J); 458 } 459 460 if (vastaus == "respawn") 461 { 462 pelaaja1.Position = viimeinenSpawn.Position; 463 } 464 465 if (vastaus == "clearKeys") 466 { 467 avaintenmaara.Value = 0.0; 468 } 469 470 if (vastaus == "addKey2") 471 { 472 avaintenmaara.Value = 2.0; 473 } 474 475 if (vastaus == "addKey1") 476 { 477 avaintenmaara.Value = 1.0; 478 } 479 480 if (vastaus == "gravityOff") 481 { 482 painovoima = false; 483 LisaaPainovoima(); 484 } 485 486 if (vastaus == "gravityOn") 487 { 488 painovoima = true; 489 LisaaPainovoima(); 490 } 491 492 if (vastaus == "moveThruWallsOn") 493 { 494 pelaaja1.IgnoresCollisionResponse = true; 495 } 496 497 if (vastaus == "moveThruWallsOff") 498 { 499 pelaaja1.IgnoresCollisionResponse = false; 500 } 501 502 if (vastaus == "flyOn") 503 { 504 Keyboard.Enable(Key.I); 505 Keyboard.Enable(Key.K); 506 Keyboard.Enable(Key.L); 507 Keyboard.Enable(Key.J); 508 Keyboard.Listen(Key.I, ButtonState.Pressed, LiikuYlos, "Ylös", pelaaja1, nopeus); 509 Keyboard.Listen(Key.K, ButtonState.Pressed, LiikuAlas, "Alas", pelaaja1, nopeus); 510 Keyboard.Listen(Key.L, ButtonState.Pressed, LiikuOikealle, "Oikealle", pelaaja1, nopeus); 511 Keyboard.Listen(Key.J, ButtonState.Pressed, LiikuVasemmalle, "Vasemmalle", pelaaja1, nopeus); 512 } 513 514 if (vastaus == "flyOff") 515 { 516 Keyboard.Disable(Key.I); 517 Keyboard.Disable(Key.K); 518 Keyboard.Disable(Key.L); 519 Keyboard.Disable(Key.J); 520 } 521 } 408 522 409 523 void avaimetTaynna() -
2015/30/EemilR/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli.csproj
r6838 r6996 19 19 <ApplicationIcon>Game.ico</ApplicationIcon> 20 20 <Thumbnail>GameThumbnail.png</Thumbnail> 21 <IsWebBootstrapper>false</IsWebBootstrapper> 22 <ReferencePath>$(registry:HKEY_LOCAL_MACHINE\Software\Jypeli@Install_Dir)\lib\x86</ReferencePath> 21 23 <PublishUrl>publish\</PublishUrl> 22 24 <Install>true</Install> … … 31 33 <ApplicationRevision>0</ApplicationRevision> 32 34 <ApplicationVersion>1.0.0.%2a</ApplicationVersion> 33 <IsWebBootstrapper>false</IsWebBootstrapper>34 35 <UseApplicationTrust>false</UseApplicationTrust> 35 36 <BootstrapperEnabled>true</BootstrapperEnabled> 36 <ReferencePath>$(registry:HKEY_LOCAL_MACHINE\Software\Jypeli@Install_Dir)\lib\x86</ReferencePath>37 37 </PropertyGroup> 38 38 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> -
2015/30/EemilR/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli.csproj.Debug.cachefile
r6974 r6996 1 Content\maali.xnb2 1 Content\tahti.xnb 3 2 Content\kentta1.xnb … … 17 16 Content\OviVasen.xnb 18 17 Content\PaluuOikea.xnb 18 Content\Spawn.xnb 19 Content\maali2.xnb 20 Content\Maali.xnb -
2015/30/EemilR/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli/obj/x86/Debug/Tasohyppelypeli.csproj.FileListAbsolute.txt
r6974 r6996 25 25 C:\MyTemp\EemilR\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\OviVasen.xnb 26 26 C:\MyTemp\EemilR\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\PaluuOikea.xnb 27 C:\MyTemp\EemilR\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\Spawn.xnb 28 C:\MyTemp\EemilR\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\maali2.xnb -
2015/30/EemilR/Tasohyppelypeli/Tasohyppelypeli/Tasohyppelypeli/obj/x86/Debug/cachefile-{7911D202-21FB-4B9E-A087-10D9C7FCB431}-targetpath.txt
r6974 r6996 1 Content\maali.xnb2 1 Content\tahti.xnb 3 2 Content\kentta1.xnb … … 17 16 Content\OviVasen.xnb 18 17 Content\PaluuOikea.xnb 18 Content\Spawn.xnb 19 Content\maali2.xnb 20 Content\Maali.xnb -
2015/30/EemilR/Tasohyppelypeli/Tasohyppelypeli/TasohyppelypeliContent/TasohyppelypeliContent.contentproj
r6974 r6996 46 46 </ItemGroup> 47 47 <ItemGroup> 48 <Compile Include="maali .wav">49 <Name>maali </Name>48 <Compile Include="maali2.wav"> 49 <Name>maali2</Name> 50 50 <Importer>WavImporter</Importer> 51 51 <Processor>SoundEffectProcessor</Processor> … … 159 159 </Compile> 160 160 </ItemGroup> 161 <ItemGroup> 162 <Compile Include="Spawn.png"> 163 <Name>Spawn</Name> 164 <Importer>TextureImporter</Importer> 165 <Processor>TextureProcessor</Processor> 166 </Compile> 167 </ItemGroup> 168 <ItemGroup> 169 <Compile Include="Maali.png"> 170 <Name>Maali</Name> 171 <Importer>TextureImporter</Importer> 172 <Processor>TextureProcessor</Processor> 173 </Compile> 174 </ItemGroup> 161 175 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 162 176 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
2015/30/EemilR/Tasohyppelypeli/Tasohyppelypeli/TasohyppelypeliContent/kentta1.txt
r6974 r6996 1 ..................................................................................................................................................................................... 2 ..................................................................................................................................................................................... 3 ..................................................................................................................................................................................... 4 ..................................................................................................................................................................................... 5 ..................................................................................................................................................................................... 6 ...................################.......##################.......................................................................................................................................... 7 ...................#..............#########................#......................................................................................................................... 8 ####################......................#..#############.#.......................................................................................................................... 9 #..................#......................#..............#.#.......................................................................................................................... 10 #..................#.#.......#....#######O#############..#C#.......................................................................................................................... 11 #..................#A#.#..........#..................2...#.########......................................................................................................................... 12 #..................###...........##.########.....#########.#......#.................................................................................................................... 13 #.......#....##....#...........####.......#.....C#....#....#.#....#..................................................................................................................... 14 #.###..............#..###################.#....##.....#..###.##...#...................................................................................................................... 15 #.#.#............###O#####....#####.....#A##..........#......#....#.................................................................................................................... 16 #A#.#..............#..............#....A###...........#....###...##...................................................................................................................... 17 #.#.#........###...########.......#.#..#..#...#.......#....###....#.................................................................................................................... 18 #.###...#..........#..........#...#.......#...........#PP..####...#.................................................................................................................... 19 #...#..............#..............##......#......#....#....###....#.................................................................................................................... 20 #.N.########.......#..###########A#.......#...........#....###...##.................................................................................................................... 21 #.C...........#....#...#........###...#.........V....##A...###....#.................................................................................................................... 22 #................V.##..2........###PPPP.###############....####...#.................................................................................................................... 23 ######.#######################..#######################..PP###....#.................................................................................................................... 24 .....#O#A....................#..........#.............#....###...##..................................................................................................................... 25 .....#.#................####.##...#.....#.............#....###....#.................................................................................................................. 26 ..#..#.############........#O#........#.#.............#....####...#........................................................................................................................ 27 ..#..#.#...........#.......#C..##.....#A#.............#PP..###....#..................................................................................................................... 28 ..#..#C#...................#.......#..###.............#....###...##..................................................................................................................... 29 ..#..#.................##..#..........###.............#....###....#..................................................................................................................... 30 ..#..#........PP..PP.......#.........##...............#....####...#..................................................................................................................... 31 ..#..#######################PPP..PPP.A#...............#..PP###....#..................................................................................................................... 32 ..#........................############...............#....###...##.............................................................................................................. 33 ..#...................................................#....###....#................................................................................................................... 34 ..################....................................#....####...#................................................................................................................... 35 ..#...................................................#PP..###....#................................................................................................................... 36 ..#...................................................#....###....#................................................................................................................... 37 ..#...................................................#....###...##............................................................................................................. 38 ..#...................................................#....###....#............................................................................................................. 39 ..#...................................................#..PP####...#............................................................................................................. 40 ..#...................................................#....###....#............................................................................................................................... 41 ..#...................................................#....###....#............................................................................................................................... 42 ..#...................................................#....###...##............................................................................................................................... 43 ..#...................................................#PP.A###....#............................................................................................................................... 44 ..#...................................................#....####...#............................................................................................................................... 45 ..#...................................................#....###....#............................................................................................................................... 46 ..#...................................................#....###....#............................................................................................................................... 47 ..#...................................................#..PP###...##............................................................................................................................... 48 ..#...................................................#....###....#............................................................................................................................... 49 ..#...................................................#....####...#............................................................................................................................... 50 ..#...................................................#....###....#............................................................................................................................... 51 ..#..........................................##########PP..###....#......................................................................................................................... 52 ..#..........................................#..............##...##.................................................................................................................... 53 ..#..........................................#..............##....#.................................................................................................................... 54 ..#..........................................#..............###...#........................................................................................................................ 55 ..#..........................................#..............##....#......................................................................................................................... 56 ..#..........................................#..............##...##......................................................................................................................... 57 ..#..........................................#..............##...##......................................................................................................................... 58 ..#..........................................#..................###......................................................................................................................... 59 ..#.........................................C2..........V.......###................................................................................................................... 60 ###################################################################................................................................................................................................. 1 #..................................##########################################################################.................................................................................................................................................... 2 #....................................#.................#.A..............................#...................#............................................................................ 3 #....................................2....#.....#......#................................#A..................#............................................................................ 4 #..................................###################.#.....V....PP............P.......##......###########.#......................................................................................................... 5 #......................#.....#.......................#C#########..##..###.....#####.....#.....PP#.........#O#................................................................................ 6 #....................................................#.#...............................P#...#####A.......A#.#............................................................................... 7 #...................#.............#..................#A#...........................#######......##.......##.#............................................................................. 8 #.............................#......................#.#...........P.........V..........2C......#....#....#.#............................................................................. 9 #...#......#....#....................................#O#..........####.....#######################.......##.#...................................................................................... 10 #A.........................#.........................#.......................#..................#....#....#.#......................................................................................................... 11 ##...................................................#......#########PP.#....O...............A..O....C....#C#.............................................................................................................. 12 ##...........................#...................#########################################################..#......................................................................................................................................... 13 ##................................V........V.....#..............#########................#A.................#....................................................................................................... 14 ##...........................C####################......................#..#############.#..................###########........................................................................................................ 15 ##PPPPPPPPPPPPPPPPPPPP.......##..................#......................#..............#.#..###############P#.........#................................................................................................................ 16 ######################........#..................#.#.......#....#######O#############..#C#........#.......###.........#.................................................................................................. 17 #.........................##..#..................#A#.#..........#..................2...#.########.#................##.#...................................................................................................... 18 #.......................P.....#..................###...........##.########.....#########.#......#A#.#...............#O#................................................................................................. 19 #....V...........########.V...#..P....#....##....#...........####.......#.....C#....#....#.#....#O#.#...##.......#..#.#.................................................................................................. 20 #.#######...#............###..#.###..............#..###################.#....##.....#..###.##...#.#A#........#......#.#................................................................................................... 21 #.#...........................#.###............###O#####....#####.....#A##..........#......#....#.#.#...............#.#................................................................................................. 22 #.#............#..............#A###..............#..............#....A###...........#....###...##.#A#...........#...#.#................................................................................................... 23 #.#...........................#.###........###...########.......#.#..#..#...#.......#....###....#C#.#...............#.#................................................................................................. 24 #.#.........#.................#.###...#..........#..........#...#.......#...........#PP..####...#.#O#.............#.#.#................................................................................................. 25 #.#P..........................#...#..............#..............##......#......#....#....###....#.......PPP...PP....#.#................................................................................................ 26 #.##..###.....................#.0.########.......#..###########A#.......#...........#....###...######################C#................................................................................................................... 27 #A.#........#.................#.CS..........#....#...#........###...#.........V....##A...###....#.....................#............................................................................................... 28 ##.#.............#............#................V.##..2........###PPPP.###############....####...#.............#########............................................................................................... 29 ##.#..................#.......######.#######################..#######################..PP###....#.##..................#............................................................................................... 30 ##.................................#O#A....................#..........#.............#....###...##O#...................#................................................................................................ 31 ##...P...................#....C....#.#................####.##...#.....#.............#....###....#.##..................#............................................................................................. 32 #################################.##.############........#O#........#.#.............#....####...#.####................#................................................................................................... 33 ................................#..#.#...........#.......#C..##.....#A#.............#PP..###....#.#...................#................................................................................................ 34 ................................##.#C#...................#.......#..###.............#....###...##.#..#####............##############################................................................................................................ 35 ................................#..#.................##..#..........###.............#....###....#A#...................#............................#.................................................................... 36 ................................#.##........PP..PP.......#.........##...............#....####...#.#........###........#............................#.................................................................... 37 ................................#..#######################PPP..PPP.A#...............#....###....#.#..............#....#............................#.................................................................... 38 ................................##.......................############...............#....###...##A#...................#............................#............................................................. 39 ................................#...................................................#....###....#.#................#..#............................#.................................................................. 40 ................................################....................................#....####...#.#...................#............................#.................................................................. 41 ................................#........V.....V......V.......................V.....#..PP###.#..#.#.................###............................#.................................................................. 42 ................................#########################################..##########....###....#.#...................#............................#.................................................................. 43 ................................#..........................#.V......2............V..#....###...##.................#####............................#............................................................ 44 ................................#..........................#####AA###################....###....#A....................2...........................M#........................................................... 45 ................................#...........................2....V..................#....####...####################################################......................................................................................................... 46 ................................#...................#################################....###.#..#............................................................................................................................... 47 ................................#..................#..............................A.#....###....#............................................................................................................................... 48 ................................#...................................................#....###...##............................................................................................................................... 49 ................................#..........##########################################PP.A###....#............................................................................................................................... 50 ................................#...V...............................................#....####...#............................................................................................................................... 51 ................................#C.##################################################....###.#..#............................................................................................................................... 52 ................................#...................................................#....###....#............................................................................................................................... 53 ................................##....#############################################.#....###...##............................................................................................................................... 54 ................................#.................................................#A#....###....#............................................................................................................................... 55 ................................###...............................................###....####...#............................................................................................................................... 56 ................................#.................................................###....###.#..#............................................................................................................................... 57 ................................####.......................................##########..PP###....#......................................................................................................................... 58 ................................#.V........................................#..............##...##.................................................................................................................... 59 ................................#######....................................#..............##....#.................................................................................................................... 60 ................................#.V........................................#..............###...#........................................................................................................................ 61 ................................##############.............................#..............##....#......................................................................................................................... 62 ................................#.V........................................#..............##...##......................................................................................................................... 63 ................................########################...................#..............##...##......................................................................................................................... 64 ................................#.............................V............#..................###......................................................................................................................... 65 ................................########################################..C2.......<..V...U...###................................................................................................................... 66 ................................#################################################################................................................................................................................................. 67 ................................................................................................................................................................................................................... 61 68 ..................................................................................................................................................................................... 62 69 ..................................................................................................................................................................................... … … 67 74 ..................................................................................................................................................................................... 68 75 ..................................................................................................................................................................................... 69 ..................................................................................................................................................................................... 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 -
2015/30/EemilR/Tasohyppelypeli/Tasohyppelypeli/TasohyppelypeliContent/obj/x86/Debug/ContentPipeline.xml
r6974 r6996 2 2 <XnaContent xmlns:Pipeline="Microsoft.Xna.Framework.Content.Pipeline"> 3 3 <Asset Type="Pipeline:BuildItemCollection"> 4 <Item>5 <Source>maali.wav</Source>6 <Name>maali</Name>7 <Importer>WavImporter</Importer>8 <Processor>SoundEffectProcessor</Processor>9 <Options>None</Options>10 <Output>C:\MyTemp\EemilR\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\maali.xnb</Output>11 <Time>2015-07-21T10:11:58.6401242+03:00</Time>12 </Item>13 4 <Item> 14 5 <Source>tahti.png</Source> … … 27 18 <Options>None</Options> 28 19 <Output>C:\MyTemp\EemilR\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\kentta1.xnb</Output> 29 <Time>2015-07-23T1 1:39:22.4110125+03:00</Time>20 <Time>2015-07-23T14:59:18.2278559+03:00</Time> 30 21 </Item> 31 22 <Item> … … 163 154 <Output>C:\MyTemp\EemilR\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\PaluuOikea.xnb</Output> 164 155 <Time>2015-07-23T11:14:20.0793125+03:00</Time> 156 </Item> 157 <Item> 158 <Source>Spawn.png</Source> 159 <Name>Spawn</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <Options>None</Options> 163 <Output>C:\MyTemp\EemilR\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\Spawn.xnb</Output> 164 <Time>2015-07-23T13:17:55.4428559+03:00</Time> 165 </Item> 166 <Item> 167 <Source>maali2.wav</Source> 168 <Name>maali2</Name> 169 <Importer>WavImporter</Importer> 170 <Processor>SoundEffectProcessor</Processor> 171 <Options>None</Options> 172 <Output>C:\MyTemp\EemilR\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\maali2.xnb</Output> 173 <Time>2015-07-21T10:11:58.6401242+03:00</Time> 174 </Item> 175 <Item> 176 <Source>Maali.png</Source> 177 <Name>Maali</Name> 178 <Importer>TextureImporter</Importer> 179 <Processor>TextureProcessor</Processor> 180 <Options>None</Options> 181 <Output>C:\MyTemp\EemilR\Tasohyppelypeli\Tasohyppelypeli\Tasohyppelypeli\bin\x86\Debug\Content\Maali.xnb</Output> 182 <Time>2015-07-23T14:53:04.8349559+03:00</Time> 165 183 </Item> 166 184 <BuildSuccessful>true</BuildSuccessful>
Note: See TracChangeset
for help on using the changeset viewer.