- Timestamp:
- 2011-06-30 10:53:03 (12 years ago)
- Location:
- 2011/26/JaakkoL/Rogue Agent 2372/Rogue Agent 2372/Rogue Agent 2372
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
2011/26/JaakkoL/Rogue Agent 2372/Rogue Agent 2372/Rogue Agent 2372/Player.cs
r2341 r2342 22 22 AddedToGame += addControls; 23 23 this.Image = portrait; 24 this.CollisionIgnoreGroup = 1; 24 25 25 26 walker = new Timer(); -
2011/26/JaakkoL/Rogue Agent 2372/Rogue Agent 2372/Rogue Agent 2372/Weapons.cs
r2341 r2342 15 15 AmmoIgnoresGravity = true; 16 16 InfiniteAmmo = true; 17 Power.DefaultValue = 1000; 17 18 } 18 19 19 20 protected override PhysicsObject CreateProjectile() 20 21 { 21 return new Projectile(1, 1, Color.DarkGray); 22 Projectile proj = new Projectile(1, 1, Color.DarkGray); 23 proj.CollisionIgnoreGroup = 1; 24 return proj; 22 25 } 23 26 }
Note: See TracChangeset
for help on using the changeset viewer.