Skip to content

Commit

Permalink
Added flags for Detail and Reflection definitions to govern when the …
Browse files Browse the repository at this point in the history
…definitions will be used (with IWAD, with PWAD etc), analogous to those for Detail textures.
  • Loading branch information
danij committed Nov 16, 2008
1 parent 763a82a commit 9aa9870
Show file tree
Hide file tree
Showing 5 changed files with 893 additions and 831 deletions.
26 changes: 26 additions & 0 deletions doomsday/engine/defs/flags.ded
Expand Up @@ -30,6 +30,32 @@ Flag { # Allow using decoration with external resources.
ID = "dcf_ext"; Value = 0x4;
}

# Reflections
Flag { # Reflection will not be used with IWAD resources.
ID = "rff_noiwad"; Value = 0x1;
}

Flag { # Allow using reflection with PWAD resources.
ID = "rff_pwad"; Value = 0x2;
}

Flag { # Allow using reflection with external resources.
ID = "rff_ext"; Value = 0x4;
}

# Details
Flag { # DetailTex will not be used with IWAD resources.
ID = "dtf_noiwad"; Value = 0x1;
}

Flag { # Allow using detailtex with PWAD resources.
ID = "dtf_pwad"; Value = 0x2;
}

Flag { # Allow using detailtex with external resources.
ID = "dtf_ext"; Value = 0x4;
}

# Lights
Flag { ID = "lgf_nohalo"; Value = 0x1; }
Flag { ID = "lgf_dontturnhalo"; Value = 0x2; }
Expand Down

0 comments on commit 9aa9870

Please sign in to comment.