mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2025-02-17 07:43:10 +08:00
Fix for light flags not being populated on ModelLightForm
This commit is contained in:
parent
0fef64ece9
commit
bbdbb6ae59
@ -120,6 +120,7 @@ namespace CodeWalker.Forms
|
|||||||
ColourGUpDown.Value = 0;
|
ColourGUpDown.Value = 0;
|
||||||
ColourBUpDown.Value = 0;
|
ColourBUpDown.Value = 0;
|
||||||
IntensityTextBox.Text = "";
|
IntensityTextBox.Text = "";
|
||||||
|
FlagsTextBox.Text = "";
|
||||||
FlashinessUpDown.Value = 0;
|
FlashinessUpDown.Value = 0;
|
||||||
BoneIDUpDown.Value = 0;
|
BoneIDUpDown.Value = 0;
|
||||||
GroupIDUpDown.Value = 0;
|
GroupIDUpDown.Value = 0;
|
||||||
@ -163,6 +164,7 @@ namespace CodeWalker.Forms
|
|||||||
ColourBUpDown.Value = light.ColorB;
|
ColourBUpDown.Value = light.ColorB;
|
||||||
ColourLabel.BackColor = System.Drawing.Color.FromArgb(light.ColorR, light.ColorG, light.ColorB);
|
ColourLabel.BackColor = System.Drawing.Color.FromArgb(light.ColorR, light.ColorG, light.ColorB);
|
||||||
IntensityTextBox.Text = FloatUtil.ToString(light.Intensity);
|
IntensityTextBox.Text = FloatUtil.ToString(light.Intensity);
|
||||||
|
FlagsTextBox.Text = light.Flags.ToString();
|
||||||
FlashinessUpDown.Value = light.Flashiness;
|
FlashinessUpDown.Value = light.Flashiness;
|
||||||
BoneIDUpDown.Value = light.BoneId;
|
BoneIDUpDown.Value = light.BoneId;
|
||||||
GroupIDUpDown.Value = light.GroupId;
|
GroupIDUpDown.Value = light.GroupId;
|
||||||
|
Loading…
Reference in New Issue
Block a user