Results 197 comments of Tyler Temp

Hi, this feature has been implemented in [3.3.0](https://github.com/TylerTemp/SaintsField/releases/tag/3.3.0). As it's a breaking changes, please read the changelog before upgrading. ```csharp using SaintsField.Playa; [PlayaInfoBox("Please Note: special label like only works for...

This issue is now closed as it's been implemented. Please comment below if you still have this issue so I can open it again.

No at this point as `ShowIf` is only a `PropertyDrawer` which only works on a single field.

Hi, this feature has been implemented in [3.7.0](https://github.com/TylerTemp/SaintsField/releases/tag/3.7.0) ```csharp using SaintsField.Playa; public bool editableMain; public bool visibleMain; [LayoutEnableIf(nameof(editableMain))] [LayoutShowIf(nameof(visibleMain))] [LayoutStart("Main", ELayout.FoldoutBox)] public bool editable1; public bool visible1; [LayoutEnableIf(nameof(editable1))] [LayoutShowIf(nameof(visible1))] [LayoutStart("./1",...

Yes, UI Toolkit got this issue fixed in [3.4.11](https://github.com/TylerTemp/SaintsField/releases/tag/3.4.11), which has not been implemented in IMGUI yet. It'll be processed in the feature (but not sure when tho... depending on...

Not yet. This situation will be better when I finish #70 . At this moment it's not possible

Hi, First of all, `HideInInspector`, uses some hack that changes the flow of `AttributeDrawer`. So `HideInInspector` will not be supported. In [3.4.0](https://github.com/TylerTemp/SaintsField/releases/tag/3.4.0), if you're on UI Toolkit, it's possible to...

Yes ```csharp [Serializable] public enum ANIMSTATE { None, State, AnotherState, } [Serializable] public struct AudioStateClips { public ANIMSTATE state; } [RichLabel(nameof(LabelAudioStateClips), true)] public AudioStateClips[] audioClips; public string LabelAudioStateClips(AudioStateClips clip, int...

> 哈哈哈,两位大神都是中国人? 是,这个项目也是之前写游戏时遗留下来的资产([Google Play](https://play.google.com/store/apps/details?id=studio.bobo.grooverpg&hl=en), [App Store](https://apps.apple.com/us/app/groobo/id1552831622?ct=Tap247288)),结果游戏死了,这个开源项目的功能反而越做越多…

There is some weird issue with struct + progressbar. Im looking into it