mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- looks like the last commit missed a few files.
This commit is contained in:
parent
845c43876c
commit
2c789a2d75
3 changed files with 24 additions and 3 deletions
|
@ -98,6 +98,7 @@ DEFINE_FIELD(AWeapon, FOVScale)
|
|||
DEFINE_FIELD(AWeapon, Crosshair)
|
||||
DEFINE_FIELD(AWeapon, GivenAsMorphWeapon)
|
||||
DEFINE_FIELD(AWeapon, bAltFire)
|
||||
DEFINE_FIELD(AWeapon, SlotNumber)
|
||||
DEFINE_FIELD_BIT(AWeapon, WeaponFlags, bDehAmmo, WIF_DEHAMMO)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
@ -7,6 +7,10 @@ class PowerupGiver : Inventory
|
|||
Name Mode; // Meaning depends on powerup - used for Invulnerability and Invisibility
|
||||
double Strength; // Meaning depends on powerup - currently used only by Invisibility
|
||||
|
||||
property prefix: Powerup;
|
||||
property Strength: Strength;
|
||||
property Mode: Mode;
|
||||
|
||||
Default
|
||||
{
|
||||
Inventory.DefMaxAmount;
|
||||
|
@ -67,6 +71,9 @@ class Powerup : Inventory
|
|||
int Colormap;
|
||||
const SPECIALCOLORMAP_MASK = 0x00b60000;
|
||||
|
||||
property Strength: Strength;
|
||||
property Mode: Mode;
|
||||
|
||||
// Note, that while this is an inventory flag, it only has meaning on an active powerup.
|
||||
override bool GetNoTeleportFreeze()
|
||||
{
|
||||
|
|
|
@ -38,9 +38,22 @@ class PlayerPawn : Actor native
|
|||
meta Name HealingRadiusType;
|
||||
meta Name InvulMode;
|
||||
|
||||
Property prefix: Player;
|
||||
Property HealRadiusType: HealingradiusType;
|
||||
Property InvulnerabilityMode: InvulMode;
|
||||
property prefix: Player;
|
||||
property HealRadiusType: HealingradiusType;
|
||||
property InvulnerabilityMode: InvulMode;
|
||||
property AttackZOffset: AttackZOffset;
|
||||
property JumpZ: JumpZ;
|
||||
property GruntSpeed: GruntSpeed;
|
||||
property FallingScreamSpeed: FallingScreamMinSpeed, FallingScreamMaxSpeed;
|
||||
property ViewHeight: ViewHeight;
|
||||
property UseRange: UseRange;
|
||||
property AirCapacity: AirCapacity;
|
||||
property MaxHealth: MaxHealth;
|
||||
property MugshotMaxHealth: MugshotMaxHealth;
|
||||
property RunHealth: RunHealth;
|
||||
property MorphWeapon: MorphWeapon;
|
||||
property FlechetteType: FlechetteType;
|
||||
property Portrait: Portrait;
|
||||
|
||||
Default
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue