Merge pull request #29589 from kbajno/master

Add in missing 'FLAG_DRAW_NEXT_FRAME_IF_VISIBLE' to Flag enun
This commit is contained in:
Rémi Verschelde 2019-06-12 12:52:47 +02:00 committed by GitHub
commit 5688cb40b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -89,6 +89,7 @@ class GeometryInstance : public VisualInstance {
public:
enum Flags {
FLAG_USE_BAKED_LIGHT = VS::INSTANCE_FLAG_USE_BAKED_LIGHT,
FLAG_DRAW_NEXT_FRAME_IF_VISIBLE = VS::INSTANCE_FLAG_DRAW_NEXT_FRAME_IF_VISIBLE,
FLAG_MAX = VS::INSTANCE_FLAG_MAX,
};