stride
stride copied to clipboard
Property Grid only updates properties that are directly touched by the user
Release Type: GitHub
Version: Latest as of writing
Platform(s): GameStudio
Describe the bug Add this script to an entity.
public class CompTest : StartupScript
{
public bool Gamepad { get; set; } = false;
public bool GamePad2 { get { return Gamepad; } set { Gamepad = value; } }
}
Changing GamePad2 through the property grid does not update the value shown on the property grid for Gamepad even though the actual object's value changed.
Expected behavior Self explanatory
Screenshots