Fix YMAP entity flags

This commit is contained in:
ook3d 2023-12-28 01:49:58 -05:00
parent 106997f236
commit 21a3953afd

View File

@ -187,27 +187,38 @@
this.EntityFlagsCheckedListBox.CheckOnClick = true; this.EntityFlagsCheckedListBox.CheckOnClick = true;
this.EntityFlagsCheckedListBox.FormattingEnabled = true; this.EntityFlagsCheckedListBox.FormattingEnabled = true;
this.EntityFlagsCheckedListBox.Items.AddRange(new object[] { this.EntityFlagsCheckedListBox.Items.AddRange(new object[] {
"1 - Allow full rotation", "1 - Full matrix (rotation)",
"2 - Stream Low Priority", "2 - Stream low priority",
"4 - Disable embedded collisions", "4 - Disable collision",
"8 - LOD in parent ymap", "8 - LOD in parent map",
"16 - LOD Adopt Me", "16 - Adopt me",
"32 - Static entity", "32 - Fixed (static entity)",
"64 - Is Interior LOD", "64 - Interior LOD",
"128 - LOD Use Alt Fade", "128 - Unused",
"256 - Unused", "256 - Unused",
"512 - Does Not Touch Water", "512 - Unused",
"1024 - Does Not Spawn Peds", "1024 - Unused",
"2048 - Cast Static Shadows", "2048 - Unused",
"4096 - Cast Dynamic Shadows", "4096 - Unused",
"8192 - Dont Render In Shadows", "8192 - Unused",
"16384 - Only Render In Shadows", "16384 - Unused",
"32768 - Dont Render Reflections", "32768 - Drawable LOD use alt fade (wtf does this mean)?",
"65536 - Only Render Reflections", "65536 - Underwater",
"131072 - Dont Render Water Reflections", "131072 - Doesn\'t touch water",
"262144 - Only Render Water Reflections", "262144 - Doesn\'t spawn peds",
"524288 - Dont Render Mirror Reflections", "524288 - cast static shadows",
"1048576 - Only Render Mirror Reflections"}); "1048576 - cast dynamic shadows",
"2097152 - Ignore day night light settings",
"4194304 - Don\'t render shadows",
"8388608 - Only render shadows",
"16777216 - Don\'t render reflections",
"33554432 - Only render reflections",
"67108864 - Don\'t render water reflections",
"134217728 - Only render water reflections",
"268435456 - Don\'t render mirror reflections",
"536870912 - Only render mirror reflections",
"1073741824 -",
"2147483648 -"});
this.EntityFlagsCheckedListBox.Location = new System.Drawing.Point(348, 113); this.EntityFlagsCheckedListBox.Location = new System.Drawing.Point(348, 113);
this.EntityFlagsCheckedListBox.Name = "EntityFlagsCheckedListBox"; this.EntityFlagsCheckedListBox.Name = "EntityFlagsCheckedListBox";
this.EntityFlagsCheckedListBox.Size = new System.Drawing.Size(201, 349); this.EntityFlagsCheckedListBox.Size = new System.Drawing.Size(201, 349);