- Timestamp:
- 2017-06-14 12:54:23 (6 years ago)
- Location:
- 2017/24/LeeviE/Peli/Jump/Jump
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
2017/24/LeeviE/Peli/Jump/Jump/Jump/Jump.cs
r8638 r8652 10 10 { 11 11 Image pelaajankuva = LoadImage("Tyyppi peliin cropattu"); 12 Image platformi = LoadImage("Plat"); 12 13 double nopeusOikea = 200.0; 13 14 double nopeusVasen = -200.0; … … 61 62 void LuoKentta() 62 63 { 63 64 PhysicsObject plat1 = new PhysicsObject(100.0, 20.0); 65 Add(plat1); 66 plat1.Image = platformi; 64 67 65 68 … … 86 89 void Luolaatta(double x, double y) 87 90 { 88 PhysicsObject laatta1 = new PhysicsObject( 200.0, 10.0);91 PhysicsObject laatta1 = new PhysicsObject(1000.0, 10.0); 89 92 laatta1.MakeStatic(); 90 93 laatta1.Y = y; 91 94 laatta1.X = x; 92 95 Add(laatta1); 96 laatta1.Color = Color.Gray; 97 98 PhysicsObject laatta2 = new PhysicsObject(10.0, 1000.0); 99 laatta2.MakeStatic(); 100 Add(laatta2); 101 laatta2.X = 500; 102 laatta2.Y = 400; 103 laatta2.Color = Color.Gray; 104 105 PhysicsObject laatta3 = new PhysicsObject(10.0, 1000.0); 106 laatta3.MakeStatic(); 107 Add(laatta3); 108 laatta3.X = -500; 109 laatta3.Y = 400; 110 laatta3.Color = Color.Gray; 93 111 } 94 112 -
2017/24/LeeviE/Peli/Jump/Jump/Jump/Jump.csproj.Debug.cachefile
r8627 r8652 1 1 Content\pwr.xnb 2 2 Content\Tyyppi peliin cropattu.xnb 3 Content\Plat.xnb -
2017/24/LeeviE/Peli/Jump/Jump/Jump/obj/x86/Debug/ContentPipeline-{2750B644-1BA7-4D9C-B766-2A8DD7E77FC1}.xml
r8627 r8652 19 19 <Output>C:\MyTemp\LeeviE\Peli\Jump\Jump\Jump\bin\x86\Debug\Content\Tyyppi peliin cropattu.xnb</Output> 20 20 <Time>2017-06-14T09:56:26.4054429+03:00</Time> 21 </Item> 22 <Item> 23 <Source>Plat.png</Source> 24 <Name>Plat</Name> 25 <Importer>TextureImporter</Importer> 26 <Processor>TextureProcessor</Processor> 27 <Options>None</Options> 28 <Output>C:\MyTemp\LeeviE\Peli\Jump\Jump\Jump\bin\x86\Debug\Content\Plat.xnb</Output> 29 <Time>2017-06-14T12:47:07.0101534+03:00</Time> 21 30 </Item> 22 31 <BuildSuccessful>true</BuildSuccessful> -
2017/24/LeeviE/Peli/Jump/Jump/Jump/obj/x86/Debug/Jump.csproj.FileListAbsolute.txt
r8627 r8652 9 9 C:\MyTemp\LeeviE\Peli\Jump\Jump\Jump\obj\x86\Debug\Jump.pdb 10 10 C:\MyTemp\LeeviE\Peli\Jump\Jump\Jump\bin\x86\Debug\Content\Tyyppi peliin cropattu.xnb 11 C:\MyTemp\LeeviE\Peli\Jump\Jump\Jump\bin\x86\Debug\Content\Plat.xnb -
2017/24/LeeviE/Peli/Jump/Jump/Jump/obj/x86/Debug/cachefile-{2750B644-1BA7-4D9C-B766-2A8DD7E77FC1}-targetpath.txt
r8627 r8652 1 1 Content\pwr.xnb 2 2 Content\Tyyppi peliin cropattu.xnb 3 Content\Plat.xnb -
2017/24/LeeviE/Peli/Jump/Jump/JumpContent/JumpContent.contentproj
r8627 r8652 59 59 </Compile> 60 60 </ItemGroup> 61 <ItemGroup> 62 <Compile Include="Plat.png"> 63 <Name>Plat</Name> 64 <Importer>TextureImporter</Importer> 65 <Processor>TextureProcessor</Processor> 66 </Compile> 67 </ItemGroup> 61 68 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 62 69 <!-- 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.