-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[InfoBox] for Collections #71
Comments
At this version, not yet. We need to add a new |
Hi, this feature has been implemented in 3.3.0. As it's a breaking changes, please read the changelog before upgrading. using SaintsField.Playa;
[PlayaInfoBox("Please Note: special label like <icon=star.png/> only works for <color=lime>UI Toolkit</color> <color=red>(not IMGUI)</color> in InfoBox.")]
[PlayaBelowInfoBox("$" + nameof(DynamicFromArray))] // callback
public string[] strings = {};
private string DynamicFromArray(string[] value) => value.Length > 0? string.Join("\n", value): "null";
public string dynamic;
[PlayaInfoBox("MethodWithButton")]
[Button("Click Me!")]
[PlayaBelowInfoBox("GroupExample", groupBy: "group")]
[PlayaBelowInfoBox("$" + nameof(dynamic), groupBy: "group")]
public void MethodWithButton()
{
}
[PlayaInfoBox("Method")]
[PlayaBelowInfoBox("$" + nameof(dynamic))]
public void Method()
{
} |
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. |
Is there a way to display ONE Infobox per Array, not ONE Infobox per Array element?
The text was updated successfully, but these errors were encountered: