- Timestamp:
- 2011-06-10 12:21:30 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
2011/23/latakoso/Gladiaattori X720/Gladiaattori X720/Gladiaattori X720/Peli.cs
r1859 r1887 88 88 if (Mouse.IsCursorOn(kohta)) 89 89 { 90 kohta.TextColor = Color. Blue;90 kohta.TextColor = Color.White; 91 91 } 92 92 else … … 406 406 if (laskuri2.Value == 0) 407 407 { 408 End(); 408 Explosion rajahdys = new Explosion(5); 409 rajahdys.Position = X720.Position; 410 rajahdys.Force = 0; 411 rajahdys.Speed = 50; 412 rajahdys.ShockwaveColor = Color.Purple; 413 Add(rajahdys); 414 MediaPlayer.Stop(); 415 X720.Destroy(); 416 Timer.SingleShot(1.2, End); 409 417 } 410 418 } … … 419 427 if (elkut == 0) 420 428 { 421 Explosion rajahdys = new Explosion( 10);429 Explosion rajahdys = new Explosion(5); 422 430 rajahdys.Position = Pahis.Position; 423 431 rajahdys.Force = 0; 424 rajahdys.Speed = 100;432 rajahdys.Speed = 50; 425 433 rajahdys.ShockwaveColor = Color.Blue; 426 434 Add(rajahdys); … … 477 485 void End() 478 486 { 479 MediaPlayer.Stop(); 487 if (X720.IsDestroyed == false) 488 { 489 X720.Destroy(); 490 } 480 491 SoundEffect Havio = LoadSoundEffect("Havio"); 481 492 Havio.Play(); 482 X720.Destroy();483 493 Loppu(); 484 494 }
Note: See TracChangeset
for help on using the changeset viewer.