stride icon indicating copy to clipboard operation
stride copied to clipboard

Property Grid only updates properties that are directly touched by the user

Open Eideren opened this issue 8 months ago • 0 comments

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 Image

Eideren avatar Apr 24 '25 17:04 Eideren