Changeset 5600 for 2014/30/AarniAR
- Timestamp:
- 2014-07-23 15:04:29 (8 years ago)
- Location:
- 2014/30/AarniAR/AdventureOfStarKid
- Files:
-
- 2 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid.cs
r5587 r5600 12 12 private Image[] standinganimation = LoadImages("shootinganimation"); 13 13 private Image[] shootinganimation = LoadImages("shootinganimation"); 14 private Image[] jumpinganimation = LoadImages("jumpinganimation"); 14 15 const double nopeus = 200; 15 16 const double hyppyNopeus = 750; … … 77 78 pelaaja1.AnimWalk = new Animation(running); 78 79 pelaaja1.AnimIdle = new Animation(shootinganimation); 80 pelaaja1.AnimJump = new Animation(jumpinganimation); 81 pelaaja1.AnimFall = new Animation(jumpinganimation); 79 82 pelaajan1Ase = new PlasmaCannon(1.0, 1.0); 80 83 pelaajan1Ase.InfiniteAmmo = true; … … 124 127 pelaaja1.Animation.Start(); 125 128 } 129 void LuoPistelaskuri() 130 { 131 IntMeter pelaajanElamat = new IntMeter(10); 132 pelaajanElamat.MinValue = 0; 133 pelaajanElamat.LowerLimit += PelaajaHaviaa; 134 } 135 void PelaajaHaviaa() 136 { 137 MessageDisplay.Add("Life Lost..."); 138 } 126 139 } -
2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid.csproj.Debug.cachefile
r5584 r5600 8 8 Content\running2.xnb 9 9 Content\Shootinganimation.xnb 10 Content\jumpinganimation.xnb -
2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid/obj/x86/Debug/AdventureOfStarKid.csproj.FileListAbsolute.txt
r5584 r5600 16 16 C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\running2.xnb 17 17 C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Shootinganimation.xnb 18 C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\jumpinganimation.xnb -
2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid/obj/x86/Debug/ContentPipeline-{ECF942E0-B21C-45ED-8977-79F4B42A7C44}.xml
r5587 r5600 83 83 <Time>2014-07-23T14:18:58.6095389+03:00</Time> 84 84 </Item> 85 <Item> 86 <Source>jumpinganimation.png</Source> 87 <Name>jumpinganimation</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\jumpinganimation.xnb</Output> 92 <Time>2014-07-23T14:42:04.3043512+03:00</Time> 93 </Item> 85 94 <BuildSuccessful>true</BuildSuccessful> 86 95 <Settings> -
2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid/obj/x86/Debug/cachefile-{ECF942E0-B21C-45ED-8977-79F4B42A7C44}-targetpath.txt
r5584 r5600 8 8 Content\running2.xnb 9 9 Content\Shootinganimation.xnb 10 Content\jumpinganimation.xnb -
2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKidContent/AdventureOfStarKidContent.contentproj
r5584 r5600 102 102 </Compile> 103 103 </ItemGroup> 104 <ItemGroup> 105 <Compile Include="jumpinganimation.png"> 106 <Name>jumpinganimation</Name> 107 <Importer>TextureImporter</Importer> 108 <Processor>TextureProcessor</Processor> 109 </Compile> 110 </ItemGroup> 104 111 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 105 112 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.