- Timestamp:
- 2016-07-06 14:58:04 (6 years ago)
- Location:
- 2014/koodauskerho/38/PietuR
- Files:
-
- 20 added
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
2014/koodauskerho/38/PietuR/MagicalFlowerParty/MagicalFlowerParty/MagicalFlowerParty/MagicalFlowerParty.cs
r7801 r7904 20 20 } 21 21 } 22 23 class Kilpi : PhysicsObject 24 { 25 public DoubleMeter kestavyys { get; } 26 27 public Kilpi(double width, double height) 28 : base(width, height) 29 { 30 kestavyys = new DoubleMeter(3, 0, 3); 31 } 32 } 33 22 34 public class MagicalFlowerParty : PhysicsGame 23 35 { … … 36 48 Image kookypic = LoadImage("Kooky"); 37 49 Image arenapic = LoadImage("Arena"); 38 39 PhysicsObject arena = new PhysicsObject(1100, 1100); 50 Image wall = LoadImage("Wall"); 51 Image bgpic = LoadImage("Background"); 52 Image bgpic2 = LoadImage("Background2"); 53 54 Level.Background.Image = bgpic; 55 56 PhysicsObject arena = new PhysicsObject(1186, 1186); 40 57 arena.Shape = Shape.FromImage(arenapic); 41 58 arena.Image = arenapic; 42 59 arena.IgnoresCollisionResponse = true; 43 60 Add(arena, -1); 61 62 Camera.ZoomFactor = 0.8; 63 64 Luokilpi(220, 530, wall, 67.5); 65 Luokilpi(530, 220, wall, 22.5); 66 Luokilpi(-220, 530, wall, 112.5); 67 Luokilpi(-530, 220, wall, 157.5); 68 Luokilpi(-220, -530, wall, 247.5); 69 Luokilpi(-530, -220, wall, 202.5); 70 Luokilpi(220, -530, wall, 292.5); 71 Luokilpi(530, -220, wall, 337.5); 72 73 PhysicsObject santtu = new PhysicsObject(100, 100); 74 santtu.IgnoresCollisionResponse = true; 75 santtu.Tag = "tapettavariivio"; 76 Add(santtu); 44 77 45 78 … … 53 86 pelaaja1.Tag = "pallero"; 54 87 AddCollisionHandler(pelaaja1, "pallero", PelaajaOsuu); 88 AddCollisionHandler(pelaaja1, "shield", KilpeenOsuu); 55 89 Add(pelaaja1); 56 90 … … 65 99 pelaaja2.Tag = "pallero"; 66 100 AddCollisionHandler(pelaaja2, "pallero", PelaajaOsuu); 101 AddCollisionHandler(pelaaja2, "shield", KilpeenOsuu); 67 102 Add(pelaaja2); 68 103 … … 77 112 pelaaja3.Tag = "pallero"; 78 113 AddCollisionHandler(pelaaja3, "pallero", PelaajaOsuu); 114 AddCollisionHandler(pelaaja3, "shield", KilpeenOsuu); 79 115 Add(pelaaja3); 80 116 … … 89 125 pelaaja4.Tag = "pallero"; 90 126 AddCollisionHandler(pelaaja4, "pallero", PelaajaOsuu); 127 AddCollisionHandler(pelaaja4, "shield", KilpeenOsuu); 91 128 Add(pelaaja4); 92 129 … … 161 198 162 199 } 200 201 202 void Luokilpi(double X, double Y, Image kuva, double kulma) 203 { 204 Kilpi shield = new Kilpi(104, 343); 205 shield.Position = new Vector(X, Y); 206 shield.Image = kuva; 207 shield.Shape = Shape.FromImage(kuva); 208 shield.AbsoluteAngle = Angle.FromDegrees(kulma); 209 shield.MakeStatic(); 210 shield.Tag = "shield"; 211 Add(shield); 212 } 213 214 void KilpeenOsuu(PhysicsObject tormaaja, PhysicsObject kohde) 215 { 216 217 Image wall = LoadImage("Wall"); 218 Image wall2 = LoadImage("Wall2"); 219 Image wall3 = LoadImage("Wall3"); 220 Image wallp = LoadImage("WallP"); 221 Image wallp2 = LoadImage("WallP2"); 222 Image wallp3 = LoadImage("WallP3"); 223 224 Pelaaja pelaaja = tormaaja as Pelaaja; 225 Kilpi osuttu = kohde as Kilpi; 226 227 int luku = RandomGen.NextInt(1, 4); 228 229 if (luku == 3) 230 { 231 osuttu.kestavyys.Value -= 1; 232 } 233 234 235 236 pelaaja.Hit(new Vector(1, 1) - pelaaja.Velocity.Normalize() * 1200); 237 238 239 if (osuttu.kestavyys.Value == 2) 240 { 241 osuttu.Image = wallp2; 242 243 Timer.SingleShot(0.15, delegate { osuttu.Image = wall2; }); 244 } 245 else if (osuttu.kestavyys.Value == 1) 246 { 247 osuttu.Image = wallp3; 248 249 Timer.SingleShot(0.15, delegate { osuttu.Image = wall3; }); 250 } 251 else if (osuttu.kestavyys.Value == 3) 252 { 253 osuttu.Image = wallp; 254 255 Timer.SingleShot(0.15, delegate { osuttu.Image = wall; }); 256 } 257 258 osuttu.kestavyys.LowerLimit += delegate { osuttu.Destroy(); }; 259 } 260 163 261 void PelaajaOsuu(PhysicsObject tormaaja, PhysicsObject kohde) 164 262 { … … 173 271 osuttu.osunut = true; 174 272 osuttu.kerroin.Value += vahinko; 175 osuttu.Hit(pelaaja.Velocity * osuttu.kerroin.Value / 100.0 * 2.0); 273 osuttu.Hit(pelaaja.Velocity.Normalize() * (osuttu.kerroin.Value * osuttu.kerroin.Value / 50)); 274 //osuttu.Hit(pelaaja.Velocity * osuttu.kerroin.Value / 100.0); 275 //osuttu.Hit(pelaaja.Velocity * osuttu.kerroin.Value / 80.0 + new Vector (osuttu.kerroin.Value / 80.0, osuttu.kerroin.Value / 80.0)); 276 //osuttu.Hit((pelaaja.Velocity * osuttu.kerroin.Value / 100.0)*(pelaaja.Velocity * osuttu.kerroin.Value / 100.0)); 176 277 pelaaja.Stop(); 177 178 //Color.Lerp(Color.Green, Color.Red) 278 179 279 ((Label)osuttu.Objects[0]).TextColor = Color.Lerp(Color.White, Color.Red, (osuttu.kerroin.Value - 100) / 200.0); 180 280 … … 191 291 192 292 } 293 void Luoeste(Image kuva, string esteennimi) 294 { 295 296 Image dandy = LoadImage("Dandelion"); 297 298 PhysicsObject este = new PhysicsObject(766, 224); 299 este.Image = kuva; 300 este.Shape = Shape.FromImage(dandy); 301 string[] tags = new string[2]; 302 tags[0] = "obs"; 303 tags[1] = esteennimi; 304 este.Tag = tags; 305 306 307 308 Vector vektori1 = new Vector(RandomGen.NextDouble(Level.Right, Level.Right + 300), RandomGen.NextDouble(Level.Bottom, Level.Top)); 309 Vector vektori2 = new Vector(RandomGen.NextDouble(Level.Left - 300, Level.Left), RandomGen.NextDouble(Level.Bottom, Level.Top)); 310 Vector vektori3 = new Vector(RandomGen.NextDouble(Level.Left - 300, Level.Right + 300), RandomGen.NextDouble(Level.Top, Level.Top + 300)); 311 312 int vektorinumero; 313 vektorinumero = RandomGen.NextInt(1, 4); 314 315 if (vektorinumero == 1) 316 { 317 este.Position = vektori1; 318 } 319 else 320 { 321 if (vektorinumero == 2) 322 { 323 este.Position = vektori2; 324 } 325 else 326 { 327 este.Position = vektori3; 328 } 329 } 330 331 } 332 193 333 } -
2014/koodauskerho/38/PietuR/MagicalFlowerParty/MagicalFlowerParty/MagicalFlowerParty/MagicalFlowerParty.csproj.Debug.cachefile
r7801 r7904 4 4 Content\Puffy.xnb 5 5 Content\Wibbly.xnb 6 Content\Background.xnb 7 Content\Dandelion.xnb 8 Content\Wall.xnb 9 Content\Background2.xnb 10 Content\Wall2.xnb 11 Content\Wall3.xnb 12 Content\WallP.xnb 13 Content\WallP2.xnb 14 Content\WallP3.xnb -
2014/koodauskerho/38/PietuR/MagicalFlowerParty/MagicalFlowerParty/MagicalFlowerParty/obj/x86/Debug/ContentPipeline-{6C722133-F995-4AFB-9261-19C720A2FD1C}.xml
r7801 r7904 46 46 <Output>C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Wibbly.xnb</Output> 47 47 <Time>2016-07-04T13:53:17.8172417+03:00</Time> 48 </Item> 49 <Item> 50 <Source>Background.png</Source> 51 <Name>Background</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Background.xnb</Output> 56 <Time>2016-07-06T11:14:41.4082334+03:00</Time> 57 </Item> 58 <Item> 59 <Source>Dandelion.png</Source> 60 <Name>Dandelion</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Dandelion.xnb</Output> 65 <Time>2016-07-06T01:04:30+03:00</Time> 66 </Item> 67 <Item> 68 <Source>Wall.png</Source> 69 <Name>Wall</Name> 70 <Importer>TextureImporter</Importer> 71 <Processor>TextureProcessor</Processor> 72 <Options>None</Options> 73 <Output>C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Wall.xnb</Output> 74 <Time>2016-07-06T01:45:58+03:00</Time> 75 </Item> 76 <Item> 77 <Source>Background2.png</Source> 78 <Name>Background2</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 <Options>None</Options> 82 <Output>C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Background2.xnb</Output> 83 <Time>2016-07-06T12:35:57.1557594+03:00</Time> 84 </Item> 85 <Item> 86 <Source>Wall2.png</Source> 87 <Name>Wall2</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Wall2.xnb</Output> 92 <Time>2016-07-06T13:40:33.1653216+03:00</Time> 93 </Item> 94 <Item> 95 <Source>Wall3.png</Source> 96 <Name>Wall3</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Wall3.xnb</Output> 101 <Time>2016-07-06T13:42:41.8751913+03:00</Time> 102 </Item> 103 <Item> 104 <Source>WallP.png</Source> 105 <Name>WallP</Name> 106 <Importer>TextureImporter</Importer> 107 <Processor>TextureProcessor</Processor> 108 <Options>None</Options> 109 <Output>C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\WallP.xnb</Output> 110 <Time>2016-07-06T14:09:23.402328+03:00</Time> 111 </Item> 112 <Item> 113 <Source>WallP2.png</Source> 114 <Name>WallP2</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 117 <Options>None</Options> 118 <Output>C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\WallP2.xnb</Output> 119 <Time>2016-07-06T14:09:42.4972373+03:00</Time> 120 </Item> 121 <Item> 122 <Source>WallP3.png</Source> 123 <Name>WallP3</Name> 124 <Importer>TextureImporter</Importer> 125 <Processor>TextureProcessor</Processor> 126 <Options>None</Options> 127 <Output>C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\WallP3.xnb</Output> 128 <Time>2016-07-06T14:10:26.7066578+03:00</Time> 48 129 </Item> 49 130 <BuildSuccessful>true</BuildSuccessful> -
2014/koodauskerho/38/PietuR/MagicalFlowerParty/MagicalFlowerParty/MagicalFlowerParty/obj/x86/Debug/MagicalFlowerParty.csproj.FileListAbsolute.txt
r7801 r7904 12 12 C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\obj\x86\Debug\MagicalFlowerParty.exe 13 13 C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\obj\x86\Debug\MagicalFlowerParty.pdb 14 C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Background.xnb 15 C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Dandelion.xnb 16 C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Wall.xnb 17 C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Background2.xnb 18 C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Wall2.xnb 19 C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\Wall3.xnb 20 C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\WallP.xnb 21 C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\WallP2.xnb 22 C:\MyTemp\PietuR\MagicalFlowerParty\MagicalFlowerParty\MagicalFlowerParty\bin\x86\Debug\Content\WallP3.xnb -
2014/koodauskerho/38/PietuR/MagicalFlowerParty/MagicalFlowerParty/MagicalFlowerParty/obj/x86/Debug/cachefile-{6C722133-F995-4AFB-9261-19C720A2FD1C}-targetpath.txt
r7801 r7904 4 4 Content\Puffy.xnb 5 5 Content\Wibbly.xnb 6 Content\Background.xnb 7 Content\Dandelion.xnb 8 Content\Wall.xnb 9 Content\Background2.xnb 10 Content\Wall2.xnb 11 Content\Wall3.xnb 12 Content\WallP.xnb 13 Content\WallP2.xnb 14 Content\WallP3.xnb -
2014/koodauskerho/38/PietuR/MagicalFlowerParty/MagicalFlowerParty/MagicalFlowerPartyContent/MagicalFlowerPartyContent.contentproj
r7801 r7904 72 72 </Compile> 73 73 </ItemGroup> 74 <ItemGroup> 75 <Compile Include="Background.png"> 76 <Name>Background</Name> 77 <Importer>TextureImporter</Importer> 78 <Processor>TextureProcessor</Processor> 79 </Compile> 80 </ItemGroup> 81 <ItemGroup> 82 <Compile Include="Dandelion.png"> 83 <Name>Dandelion</Name> 84 <Importer>TextureImporter</Importer> 85 <Processor>TextureProcessor</Processor> 86 </Compile> 87 <Compile Include="Wall.png"> 88 <Name>Wall</Name> 89 <Importer>TextureImporter</Importer> 90 <Processor>TextureProcessor</Processor> 91 </Compile> 92 </ItemGroup> 93 <ItemGroup> 94 <Compile Include="Background2.png"> 95 <Name>Background2</Name> 96 <Importer>TextureImporter</Importer> 97 <Processor>TextureProcessor</Processor> 98 </Compile> 99 </ItemGroup> 100 <ItemGroup> 101 <Compile Include="Wall2.png"> 102 <Name>Wall2</Name> 103 <Importer>TextureImporter</Importer> 104 <Processor>TextureProcessor</Processor> 105 </Compile> 106 <Compile Include="Wall3.png"> 107 <Name>Wall3</Name> 108 <Importer>TextureImporter</Importer> 109 <Processor>TextureProcessor</Processor> 110 </Compile> 111 </ItemGroup> 112 <ItemGroup> 113 <Compile Include="WallP.png"> 114 <Name>WallP</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 117 </Compile> 118 <Compile Include="WallP2.png"> 119 <Name>WallP2</Name> 120 <Importer>TextureImporter</Importer> 121 <Processor>TextureProcessor</Processor> 122 </Compile> 123 <Compile Include="WallP3.png"> 124 <Name>WallP3</Name> 125 <Importer>TextureImporter</Importer> 126 <Processor>TextureProcessor</Processor> 127 </Compile> 128 </ItemGroup> 74 129 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 75 130 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
2014/koodauskerho/38/PietuR/Ukkelipeli/Ukkelipeli/Ukkelipeli/obj/x86/Debug/ContentPipeline-{766035AA-3007-4DAD-9EA9-92D669CE3E8D}.xml
r7151 r7904 9 9 <Options>None</Options> 10 10 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Ukkeli.xnb</Output> 11 <Time>201 5-11-14T09:54:48.9598324+02:00</Time>11 <Time>2016-07-04T10:13:23.8428269+03:00</Time> 12 12 </Item> 13 13 <Item> … … 18 18 <Options>None</Options> 19 19 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Kenttä.xnb</Output> 20 <Time>201 5-11-14T09:54:48.8506317+02:00</Time>20 <Time>2016-07-04T10:13:23.7180261+03:00</Time> 21 21 </Item> 22 22 <Item> … … 27 27 <Options>None</Options> 28 28 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Miekka.xnb</Output> 29 <Time>201 5-11-14T09:54:48.8818319+02:00</Time>29 <Time>2016-07-04T10:13:23.7492263+03:00</Time> 30 30 </Item> 31 31 <Item> … … 36 36 <Options>None</Options> 37 37 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Tahtain.xnb</Output> 38 <Time>201 5-11-14T09:54:49.053433+02:00</Time>38 <Time>2016-07-04T10:13:23.9832278+03:00</Time> 39 39 </Item> 40 40 <Item> … … 45 45 <Options>None</Options> 46 46 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Tikari.xnb</Output> 47 <Time>201 5-11-14T09:54:48.9442323+02:00</Time>47 <Time>2016-07-04T10:13:23.8272268+03:00</Time> 48 48 </Item> 49 49 <Item> … … 54 54 <Options>None</Options> 55 55 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Keho1.xnb</Output> 56 <Time>201 5-11-14T09:54:48.897432+02:00</Time>56 <Time>2016-07-04T10:13:23.7648264+03:00</Time> 57 57 </Item> 58 58 <Item> … … 63 63 <Options>None</Options> 64 64 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Keho2.xnb</Output> 65 <Time>201 5-11-14T09:54:48.897432+02:00</Time>65 <Time>2016-07-04T10:13:23.7648264+03:00</Time> 66 66 </Item> 67 67 <Item> … … 72 72 <Options>None</Options> 73 73 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Paa1.xnb</Output> 74 <Time>201 5-11-14T09:54:48.9286322+02:00</Time>74 <Time>2016-07-04T10:13:23.7960266+03:00</Time> 75 75 </Item> 76 76 <Item> … … 81 81 <Options>None</Options> 82 82 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Paa2.xnb</Output> 83 <Time>201 5-11-14T09:54:48.9442323+02:00</Time>83 <Time>2016-07-04T10:13:23.8272268+03:00</Time> 84 84 </Item> 85 85 <Item> … … 90 90 <Options>None</Options> 91 91 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Veri.xnb</Output> 92 <Time>201 5-11-14T09:54:48.8818319+02:00</Time>92 <Time>2016-07-04T10:13:23.7492263+03:00</Time> 93 93 </Item> 94 94 <Item> … … 99 99 <Options>None</Options> 100 100 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Luoti.xnb</Output> 101 <Time>201 5-11-14T09:54:48.8506317+02:00</Time>101 <Time>2016-07-04T10:13:23.7180261+03:00</Time> 102 102 </Item> 103 103 <Item> … … 108 108 <Options>None</Options> 109 109 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Tikari2.xnb</Output> 110 <Time>201 5-11-14T09:54:48.8818319+02:00</Time>110 <Time>2016-07-04T10:13:23.7648264+03:00</Time> 111 111 </Item> 112 112 <Item> … … 117 117 <Options>None</Options> 118 118 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Magic.xnb</Output> 119 <Time>201 5-11-14T09:54:48.9130321+02:00</Time>119 <Time>2016-07-04T10:13:23.7804265+03:00</Time> 120 120 </Item> 121 121 <Item> … … 126 126 <Options>None</Options> 127 127 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Kentta.xnb</Output> 128 <Time>201 5-11-14T09:54:48.9130321+02:00</Time>128 <Time>2016-07-04T10:13:23.7960266+03:00</Time> 129 129 </Item> 130 130 <Item> … … 136 136 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Hakunetsu.xnb</Output> 137 137 <Extra>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Hakunetsu.wma</Extra> 138 <Time>201 5-11-14T09:54:48.9286322+02:00</Time>138 <Time>2016-07-04T10:13:23.8116267+03:00</Time> 139 139 </Item> 140 140 <Item> … … 145 145 <Options>None</Options> 146 146 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Miekka2.xnb</Output> 147 <Time>201 5-11-14T09:54:48.8506317+02:00</Time>147 <Time>2016-07-04T10:13:23.7180261+03:00</Time> 148 148 </Item> 149 149 <Item> … … 154 154 <Options>None</Options> 155 155 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Ase.xnb</Output> 156 <Time>201 5-11-14T09:54:48.9130321+02:00</Time>156 <Time>2016-07-04T10:13:23.7960266+03:00</Time> 157 157 </Item> 158 158 <Item> … … 163 163 <Options>None</Options> 164 164 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Miekka1.xnb</Output> 165 <Time>201 5-11-14T09:54:49.053433+02:00</Time>165 <Time>2016-07-04T10:13:23.9832278+03:00</Time> 166 166 </Item> 167 167 <Item> … … 172 172 <Options>None</Options> 173 173 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Splash.xnb</Output> 174 <Time>201 5-11-14T09:54:48.8818319+02:00</Time>174 <Time>2016-07-04T10:13:23.7492263+03:00</Time> 175 175 </Item> 176 176 <Item> … … 181 181 <Options>None</Options> 182 182 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Splash2.xnb</Output> 183 <Time>201 5-11-14T09:54:48.9598324+02:00</Time>183 <Time>2016-07-04T10:13:23.8428269+03:00</Time> 184 184 </Item> 185 185 <Item> … … 190 190 <Options>None</Options> 191 191 <Output>C:\MyTemp\PietuR\Ukkelipeli\Ukkelipeli\Ukkelipeli\bin\x86\Debug\Content\Magicaani.xnb</Output> 192 <Time>201 5-11-14T09:54:48.9286322+02:00</Time>192 <Time>2016-07-04T10:13:23.8116267+03:00</Time> 193 193 </Item> 194 194 <BuildSuccessful>true</BuildSuccessful> … … 239 239 <Assembly> 240 240 <Key>C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.Xna.Framework.Content.Pipeline\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.Content.Pipeline.dll</Key> 241 <Value>2015-09-16T 19:09:43.6453658+03:00</Value>241 <Value>2015-09-16T20:00:09.2376023+03:00</Value> 242 242 </Assembly> 243 243 </Assemblies>
Note: See TracChangeset
for help on using the changeset viewer.