Exemplo n.º 1
0
        public void ForceReloadProperties()
        {
            RuntimeSerializedProperty prop = GetIterator();

            while (prop.Next(true))
            {
                prop.Value = prop.Value;
            }
            UpdateIfRequiredOrScript();
        }
        public RuntimeSerializedProperty GetEndProperty(bool includeInVisible = false)
        {
            RuntimeSerializedProperty property = Copy();

            if (includeInVisible)
            {
                property.Next(false);
                return(property);
            }
            property.NextVisible(false);
            return(property);
        }