Type type = ...; SyncedVariable<typeof(type)> s = new SyncedVariable<typeof(type)>();
public Tween SetProperty(ref float value, float time, float delay, float start, float end){ Action<float> lerp = (past) => { value = Raymath.Lerp(start, end, past); };}
Button:pointerover
<UserControl.Styles> <Style Selector="Button:pointerover"> <Setter Property="Width" Value="300"></Setter> <Setter Property="Background" Value="Red"></Setter> </Style> <Style Selector="Button"> <Setter Property="Background" Value="Green"></Setter> </Style><Button Content="Test"></Button> </UserControl.Styles>