using UnityEditor; using UnityEditor.UIElements; using UnityEngine.UIElements; namespace UnityEngine.Perception.Randomization.Editor { public class RandomSeedField : IntegerField { public RandomSeedField(SerializedProperty property) { label = "Seed"; this.BindProperty(property.FindPropertyRelative("state")); } } }