mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
13 lines
239 B
C#
13 lines
239 B
C#
using TriInspector;
|
|
using UnityEngine;
|
|
|
|
public class Styling_HideLabelSample : ScriptableObject
|
|
{
|
|
[Title("Wide Vector")]
|
|
[HideLabel]
|
|
public Vector3 vector;
|
|
|
|
[Title("Wide String")]
|
|
[HideLabel]
|
|
public string str;
|
|
} |