Changeset 6596
- Timestamp:
- 2015-06-30 14:35:43 (8 years ago)
- Location:
- 2015/27/JimiS/tasohyppely/hyppely
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
2015/27/JimiS/tasohyppely/hyppely/hyppely/hyppely/hyppely.cs
r6591 r6596 14 14 15 15 PhysicsObject alaReuna; 16 PhysicsObject vasenReuna; 17 PhysicsObject oikeaReuna; 16 18 17 19 18 20 PlatformCharacter pelaaja1; 19 21 20 Image pelaajanKuva = LoadImage("pelaaja ");22 Image pelaajanKuva = LoadImage("pelaajahahmo"); 21 23 Image tahtiKuva = LoadImage("tahti"); 24 Image vihukuva = LoadImage("vihu"); 22 25 23 26 IntMeter pelaajan1Elamat; … … 56 59 alaReuna.Restitution = 1.0; 57 60 alaReuna.IsVisible = false; 61 62 vasenReuna = Level.CreateLeftBorder(); 63 vasenReuna.Restitution = 1.0; 64 alaReuna.IsVisible = false; 65 66 oikeaReuna = Level.CreateRightBorder(); 67 oikeaReuna.Restitution = 1.0; 68 oikeaReuna.IsVisible = false; 69 70 58 71 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 59 72 } … … 65 78 vihu.Color = Color.Black; 66 79 vihu.Tag = "pahis"; 80 vihu.Image = vihukuva; 67 81 Add(vihu); 82 83 PlatformWandererBrain tasoaivot = new PlatformWandererBrain(); 84 tasoaivot.Speed = 100; 85 tasoaivot.FallsOffPlatforms = true; 86 tasoaivot.JumpSpeed = 400; 87 tasoaivot.TriesToJump = true; 88 89 vihu.Brain = tasoaivot; 90 68 91 } 69 92 -
2015/27/JimiS/tasohyppely/hyppely/hyppely/hyppely/hyppely.csproj.Debug.cachefile
r6580 r6596 4 4 Content\pelaaja.xnb 5 5 Content\kentta1.xnb 6 Content\pelaajahahmo.xnb 7 Content\vihu.xnb -
2015/27/JimiS/tasohyppely/hyppely/hyppely/hyppely/obj/x86/Debug/ContentPipeline-{9937689A-33E5-40B9-A7B6-3F1206C3B37D}.xml
r6591 r6596 46 46 <Output>C:\MyTemp\JimiS\tasohyppely\hyppely\hyppely\hyppely\bin\x86\Debug\Content\kentta1.xnb</Output> 47 47 <Time>2015-06-30T14:15:37.697181+03:00</Time> 48 </Item> 49 <Item> 50 <Source>pelaajahahmo.png</Source> 51 <Name>pelaajahahmo</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\MyTemp\JimiS\tasohyppely\hyppely\hyppely\hyppely\bin\x86\Debug\Content\pelaajahahmo.xnb</Output> 56 <Time>2015-06-30T14:23:01.3775446+03:00</Time> 57 </Item> 58 <Item> 59 <Source>vihu.png</Source> 60 <Name>vihu</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\MyTemp\JimiS\tasohyppely\hyppely\hyppely\hyppely\bin\x86\Debug\Content\vihu.xnb</Output> 65 <Time>2015-06-30T14:23:07.3291397+03:00</Time> 48 66 </Item> 49 67 <BuildSuccessful>true</BuildSuccessful> -
2015/27/JimiS/tasohyppely/hyppely/hyppely/hyppely/obj/x86/Debug/cachefile-{9937689A-33E5-40B9-A7B6-3F1206C3B37D}-targetpath.txt
r6580 r6596 4 4 Content\pelaaja.xnb 5 5 Content\kentta1.xnb 6 Content\pelaajahahmo.xnb 7 Content\vihu.xnb -
2015/27/JimiS/tasohyppely/hyppely/hyppely/hyppely/obj/x86/Debug/hyppely.csproj.FileListAbsolute.txt
r6572 r6596 12 12 C:\MyTemp\JimiS\tasohyppely\hyppely\hyppely\hyppely\obj\x86\Debug\hyppely.pdb 13 13 C:\MyTemp\JimiS\tasohyppely\hyppely\hyppely\hyppely\bin\x86\Debug\Content\pelaaja.xnb 14 C:\MyTemp\JimiS\tasohyppely\hyppely\hyppely\hyppely\bin\x86\Debug\Content\pelaajahahmo.xnb 15 C:\MyTemp\JimiS\tasohyppely\hyppely\hyppely\hyppely\bin\x86\Debug\Content\vihu.xnb -
2015/27/JimiS/tasohyppely/hyppely/hyppely/hyppelyContent/hyppelyContent.contentproj
r6572 r6596 74 74 </Compile> 75 75 </ItemGroup> 76 <ItemGroup> 77 <Compile Include="pelaajahahmo.png"> 78 <Name>pelaajahahmo</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 </Compile> 82 </ItemGroup> 83 <ItemGroup> 84 <Compile Include="vihu.png"> 85 <Name>vihu</Name> 86 <Importer>TextureImporter</Importer> 87 <Processor>TextureProcessor</Processor> 88 </Compile> 89 </ItemGroup> 76 90 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 77 91 <!-- 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.