Skip to content

Commit

Permalink
Update flags
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 committed Nov 29, 2024
1 parent 3e29894 commit f4478e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/RE/M/ModelReferenceEffect.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace RE
{
kNone = 0,
kAttached = 1 << 0,
k3rdPersonVisible = 1 << 1
kThirdPerson = 1 << 1
};

~ModelReferenceEffect() override; // 00
Expand Down
3 changes: 2 additions & 1 deletion include/RE/S/ShaderReferenceEffect.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ namespace RE
enum class Flag
{
kNone = 0,
kVisible = 1 << 0,
kThirdPerson = 1 << 0,
kInterfaceEffect = 1 << 1,
kSuspended = 1 << 6,
kAllowTargetRoot = 1 << 7
};

Expand Down

0 comments on commit f4478e5

Please sign in to comment.