示例#1
0
 private void ResetState()
 {
     Children.Clear();
     DependencyProperties = new PropertyContainer(this);
     InvalidateMeasure();
     InvalidateArrange();
 }
 private void ResetElementState()
 {
     Margin = Thickness.UniformCuboid(0f);
     Visibility = Visibility.Visible;
     Opacity = 1.0f;
     IsEnabled = true;
     ClipToBounds = false;
     Width = float.NaN;
     Height = float.NaN;
     Depth = float.NaN;
     MaximumWidth = float.PositiveInfinity;
     MaximumHeight = float.PositiveInfinity;
     MaximumDepth = float.PositiveInfinity;
     MinimumWidth = 0.0f;
     MinimumHeight = 0.0f;
     MinimumDepth = 0.0f;
     LocalMatrix = Matrix.Identity;
     HorizontalAlignment = HorizontalAlignment.Stretch;
     VerticalAlignment = VerticalAlignment.Stretch;
     DepthAlignment = DepthAlignment.Back;
     DependencyProperties = new PropertyContainer(this);
     onMeasureOverride = null;
     onArrageOverride = null;
     Arrange(Vector3.Zero, false);
     InvalidateArrange();
     InvalidateMeasure();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ObjectContext"/> struct.
 /// </summary>
 /// <param name="serializerContext">The serializer context.</param>
 /// <param name="instance">The instance.</param>
 /// <param name="descriptor">The descriptor.</param>
 public ObjectContext(SerializerContext serializerContext, object instance, ITypeDescriptor descriptor) : this()
 {
     SerializerContext = serializerContext;
     Instance = instance;
     Descriptor = descriptor;
     Properties = new PropertyContainer();
 }
示例#4
0
 private void ResetState()
 {
     DependencyProperties = new PropertyContainer();
     InvalidateArrange();
     InvalidateMeasure();
     Content = null;
     LocalMatrix = Matrix.Identity;
 }
示例#5
0
 private static object OnSceneComponentGet(ref PropertyContainer props)
 {
     var scene = props.Owner as Scene;
     if (scene != null)
     {
         return scene.Settings;
     }
     return null;
 }
示例#6
0
 public GameObject()
 {
     Type = "GameObject";
     Active = true;
     Name = "";
     Properties = new PropertyContainer();
     Components = new Dictionary<String, GameObjectComponent>();
     DrawableComponents = new Dictionary<String, DrawableGameObjectComponent>();
 }
示例#7
0
        public GameObject(MinerGame game)
        {
            Game = game;
            Type = "GameObject";
            Properties = new PropertyContainer();

            Components = new Dictionary<String, GameObjectComponent>();
            DrawableComponents = new Dictionary<String, DrawableGameObjectComponent>();
            DrawableComponents.Add("Animation", new AnimationComponent(this));
        }
示例#8
0
 public MicroThread(Scheduler scheduler, MicroThreadFlags flags = MicroThreadFlags.None)
 {
     Id = Interlocked.Increment(ref globalCounterId);
     Scheduler = scheduler;
     ScheduledLinkedListNode = new PriorityQueueNode<SchedulerEntry>(new SchedulerEntry(this));
     AllLinkedListNode = new LinkedListNode<MicroThread>(this);
     ScheduleMode = ScheduleMode.Last;
     Flags = flags;
     Tags = new PropertyContainer(this);
     cancellationTokenSource = new CancellationTokenSource();
 }
示例#9
0
        private static void OnSceneComponentSet(ref PropertyContainer props, object value)
        {
            var scene = props.Owner as Scene;
            if (scene == null)
            {
                throw new InvalidOperationException("A SceneComponent is only valid for the Scene object");
            }

            //// TODO: Check if this is possible with serialization? // Not working with Yaml
            //if (scene.Settings != null)
            //{
            //    throw new InvalidOperationException("A SceneComponent cannot be changed");
            //}

            scene.Settings = (SceneComponent)value;
        }
示例#10
0
        internal void ReadValueWithoutAdapters <TValue>(ref TValue value, UnsafeValueView view, bool isRoot = false)
        {
#if UNITY_EDITOR
            if (RuntimeTypeInfoCache <TValue> .IsLazyLoadReference && view.Type == TokenType.String)
            {
                var json = view.AsStringView().ToString();

                if (json == s_EmptyGlobalObjectId) // Workaround issue where GlobalObjectId.TryParse returns false for empty GlobalObjectId
                {
                    return;
                }

                if (UnityEditor.GlobalObjectId.TryParse(json, out var id))
                {
                    var instanceID = UnityEditor.GlobalObjectId.GlobalObjectIdentifierToInstanceIDSlow(id);
                    PropertyContainer.SetValue(ref value, "m_InstanceID", instanceID);
                    return;
                }

                m_SerializedTypeProvider.Events.Add(new DeserializationEvent(EventType.Error, $"An error occured while deserializing asset reference Value=[{json}]."));
                return;
            }
#endif

            switch (view.Type)
            {
            case TokenType.String:
            {
                var v = view.AsStringView().ToString();
                TypeConversion.TryConvert(ref v, out value);
                break;
            }

            case TokenType.Primitive:
            {
                var p = view.AsPrimitiveView();

                if (p.IsIntegral())
                {
                    if (p.IsSigned())
                    {
                        var v = p.AsInt64();
                        TypeConversion.TryConvert(ref v, out value);
                    }
                    else
                    {
                        var v = p.AsUInt64();
                        TypeConversion.TryConvert(ref v, out value);
                    }
                }
                else if (p.IsDecimal() || p.IsInfinity() || p.IsNaN())
                {
                    var v = p.AsFloat();
                    TypeConversion.TryConvert(ref v, out value);
                }
                else if (p.IsBoolean())
                {
                    var v = p.AsBoolean();
                    TypeConversion.TryConvert(ref v, out value);
                }
                else if (p.IsNull())
                {
                    value = default;
                }

                break;
            }

            default:
            {
                var metadata = view.Type == TokenType.Object ? GetSerializedContainerMetadata(view.AsObjectView()) : default;

                m_SerializedTypeProvider.View           = view;
                m_SerializedTypeProvider.SerializedType = isRoot ? m_SerializedType : null;

                if (RuntimeTypeInfoCache <TValue> .IsNullable)
                {
                    m_SerializedTypeProvider.SerializedType = Nullable.GetUnderlyingType(typeof(TValue));
                }

                if (metadata.IsSerializedReference)
                {
                    if (null == m_SerializedReferences)
                    {
                        m_SerializedTypeProvider.Events.Add(new DeserializationEvent(EventType.Exception, new Exception("Deserialization encountered a serialized object reference while running with DisableSerializedReferences.")));
                        return;
                    }

                    value = (TValue)m_SerializedReferences.GetDeserializedReference(metadata.SerializedId);
                    return;
                }

                try
                {
                    DefaultTypeConstruction.Construct(ref value, m_SerializedTypeProvider);
                }
                catch (ArgumentException e)
                {
                    m_SerializedTypeProvider.Events.Add(new DeserializationEvent(EventType.Exception, new ArgumentException(e.Message)));
                    return;
                }

                if (metadata.HasSerializedId)
                {
                    // This call is harmless to skip if we don't have serialized references.
                    m_SerializedReferences?.AddDeserializedReference(metadata.SerializedId, value);
                }

                using (new SerializedContainerMetadataScope(this, metadata))
                    using (new UnsafeViewScope(this, view))
                    {
                        if (RuntimeTypeInfoCache <TValue> .IsNullable)
                        {
                            // Unpack Nullable<T> as T
                            var underlyingType  = Nullable.GetUnderlyingType(typeof(TValue));
                            var underlyingValue = System.Convert.ChangeType(value, underlyingType);

                            if (!PropertyContainer.TryAccept(this, ref underlyingValue, out var errorCode))
                            {
                                switch (errorCode)
                                {
                                case VisitErrorCode.NullContainer:
                                    throw new ArgumentNullException(nameof(value));

                                case VisitErrorCode.InvalidContainerType:
                                    throw new InvalidContainerTypeException(value.GetType());

                                case VisitErrorCode.MissingPropertyBag:
                                    throw new MissingPropertyBagException(value.GetType());

                                default:
                                    throw new Exception($"Unexpected {nameof(VisitErrorCode)}=[{errorCode}]");
                                }
                            }

                            // Repack the T as Nullable<T>
                            value = (TValue)underlyingValue;
                        }
                        else
                        {
                            if (!PropertyContainer.TryAccept(this, ref value, out var errorCode))
                            {
                                switch (errorCode)
                                {
                                case VisitErrorCode.NullContainer:
                                    throw new ArgumentNullException(nameof(value));

                                case VisitErrorCode.InvalidContainerType:
                                    throw new InvalidContainerTypeException(value.GetType());

                                case VisitErrorCode.MissingPropertyBag:
                                    throw new MissingPropertyBagException(value.GetType());

                                default:
                                    throw new Exception($"Unexpected {nameof(VisitErrorCode)}=[{errorCode}]");
                                }
                            }
                        }
                    }

                break;
            }
            }
        }
示例#11
0
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Action.Save.SequenceActionSaveExist", base.GetFieldProperties(), 432194755, 1542500431);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 184, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 216, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 248, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 252, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 256, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.pinName_", 1137295951, "Base.String", 280, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.name_", 2182257194, "Base.String", 296, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.connections_", 2048532136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 312, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayType_", 124432558, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 344, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayTime_", 3264366185, "float", 348, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayMaxTime_", 456551125, "float", 352, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("success_.pinName_", 1962615580, "Base.String", 376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("success_.name_", 2079804551, "Base.String", 392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("success_.connections_", 4009535943, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 408, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("success_.delayType_", 377348673, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 440, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("success_.delayTime_", 534960694, "float", 444, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("success_.delayMaxTime_", 1319114012, "float", 448, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fail_.pinName_", 3982442913, "Base.String", 472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fail_.name_", 576645468, "Base.String", 488, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fail_.connections_", 1393603394, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 504, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("fail_.delayType_", 1008167392, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 536, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fail_.delayTime_", 667780171, "float", 540, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fail_.delayMaxTime_", 2411130483, "float", 544, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("exist_.pinName_", 760776704, "Base.String", 568, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("exist_.name_", 4025597931, "Base.String", 584, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("exist_.connections_", 3380869923, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 600, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("exist_.delayType_", 3372365709, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 632, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("exist_.delayTime_", 887217946, "float", 636, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("exist_.delayMaxTime_", 1888333920, "float", 640, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("not_exist_.pinName_", 2513721806, "Base.String", 664, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("not_exist_.name_", 2045666057, "Base.String", 680, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("not_exist_.connections_", 2719461753, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 696, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("not_exist_.delayType_", 4200856419, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 728, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("not_exist_.delayTime_", 1709600648, "float", 732, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("not_exist_.delayMaxTime_", 655537026, "float", 736, 4, 1, Property.PrimitiveType.Float, 0, (char)0));


            fieldProperties.AddProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 176, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("out_", 1514340864, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 272, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("success_", 867838301, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 368, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("fail_", 4018000822, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 464, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("exist_", 264114297, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 560, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("not_exist_", 2061756507, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 656, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("load_type_", 1566135543, "Black.Save.SAVE_TYPE", 752, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddProperty(new Property("block_", 1108207367, "bool", 756, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));


            return(fieldProperties);
        }
示例#12
0
 internal PoolInformation(Models.PoolInformation protocolObject)
 {
     this.propertyContainer = new PropertyContainer(protocolObject);
 }
示例#13
0
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Action.Vehicle.SequenceActionGetPositionOnCurve", base.GetFieldProperties(), 1613419617, 602484320);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 192, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 208, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 224, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 256, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 260, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 264, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBaseActor_.pinName_", 3993738548, "Base.String", 288, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBaseActor_.name_", 2159827791, "Base.String", 304, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBaseActor_.connections_", 498787551, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 320, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inBaseActor_.pinValueType_", 3626497874, "Base.String", 352, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inDistance_.pinName_", 3918885289, "Base.String", 376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inDistance_.name_", 3560070900, "Base.String", 392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inDistance_.connections_", 1375196746, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 408, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inDistance_.pinValueType_", 1994735145, "Base.String", 440, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inIsFrontOfBase_.pinName_", 435746129, "Base.String", 464, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inIsFrontOfBase_.name_", 4013374988, "Base.String", 480, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inIsFrontOfBase_.connections_", 1204922770, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 496, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inIsFrontOfBase_.pinValueType_", 2896676193, "Base.String", 528, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("success_.pinName_", 1962615580, "Base.String", 552, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("success_.name_", 2079804551, "Base.String", 568, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("success_.connections_", 4009535943, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 584, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("success_.delayType_", 377348673, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 616, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("success_.delayTime_", 534960694, "float", 620, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("success_.delayMaxTime_", 1319114012, "float", 624, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failure_.pinName_", 3603782141, "Base.String", 648, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failure_.name_", 3582140168, "Base.String", 664, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failure_.connections_", 2752406854, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 680, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("failure_.delayType_", 921163524, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 712, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failure_.delayTime_", 3350018215, "float", 716, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failure_.delayMaxTime_", 1939103487, "float", 720, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curvePos_.pinName_", 3976178358, "Base.String", 744, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curvePos_.name_", 1793463681, "Base.String", 760, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curvePos_.connections_", 2585702113, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 776, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("curvePos_.pinValueType_", 3272741624, "Base.String", 808, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curveDir_.pinName_", 4025341491, "Base.String", 832, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curveDir_.name_", 1351432798, "Base.String", 848, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curveDir_.connections_", 1954614468, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 864, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("curveDir_.pinValueType_", 3646335895, "Base.String", 896, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curveRight_.pinName_", 569201862, "Base.String", 920, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curveRight_.name_", 1615486289, "Base.String", 936, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curveRight_.connections_", 2084287825, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 952, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("curveRight_.pinValueType_", 2425365896, "Base.String", 984, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("distanceToPos_.pinName_", 2740489911, "Base.String", 1008, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("distanceToPos_.name_", 3257108834, "Base.String", 1024, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("distanceToPos_.connections_", 3523318960, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1040, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("distanceToPos_.pinValueType_", 814647019, "Base.String", 1072, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            fieldProperties.AddProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 184, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("inBaseActor_", 3689150629, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 280, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("inDistance_", 3901678606, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 368, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("inIsFrontOfBase_", 3074439238, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 456, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("success_", 867838301, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 544, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("failure_", 3824596522, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 640, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("curvePos_", 3538277075, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 736, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("curveDir_", 2284042044, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 824, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("curveRight_", 3558259779, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 912, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("distanceToPos_", 3963797208, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 1000, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("distance_", 3236486151, "float", 1088, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddProperty(new Property("isFrontOfBase_", 2973078337, "bool", 1092, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));


            return(fieldProperties);
        }
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Action.Level.Reinforcement.SequenceActionRandomNiflShip", base.GetFieldProperties(), -1952085699, 1117718072);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("start_", 3266844032, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 176, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("start_.pinName_", 898319567, "Base.String", 184, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("start_.name_", 2336428458, "Base.String", 200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("start_.connections_", 2500938024, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 216, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("start_.delayType_", 1828337454, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 248, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("start_.delayTime_", 673303785, "float", 252, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("start_.delayMaxTime_", 240013909, "float", 256, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_", 1514340864, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 272, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.pinName_", 1137295951, "Base.String", 280, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.name_", 2182257194, "Base.String", 296, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.connections_", 2048532136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 312, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayType_", 124432558, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 344, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayTime_", 3264366185, "float", 348, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayMaxTime_", 456551125, "float", 352, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("error_", 3860306698, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 368, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("error_.pinName_", 3177496541, "Base.String", 376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("error_.name_", 2065769128, "Base.String", 392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("error_.connections_", 1849106918, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 408, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("error_.delayType_", 1770262628, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 440, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("error_.delayTime_", 1627227783, "float", 444, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("error_.delayMaxTime_", 1850781087, "float", 448, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputCreateTeam_", 1207420935, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 464, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputCreateTeam_.pinName_", 1273950850, "Base.String", 472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputCreateTeam_.name_", 3119643453, "Base.String", 488, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputCreateTeam_.connections_", 968663621, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 504, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inputCreateTeam_.delayType_", 3636034255, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 536, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputCreateTeam_.delayTime_", 3063755580, "float", 540, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputCreateTeam_.delayMaxTime_", 349556646, "float", 544, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputDescentShip_", 2149145490, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 560, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputDescentShip_.pinName_", 2667262101, "Base.String", 568, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputDescentShip_.name_", 568774928, "Base.String", 584, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputDescentShip_.connections_", 2412850910, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 600, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inputDescentShip_.delayType_", 2475076492, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 632, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputDescentShip_.delayTime_", 2395090367, "float", 636, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputDescentShip_.delayMaxTime_", 3748847431, "float", 640, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputOpenHatch_", 2449879636, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 656, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputOpenHatch_.pinName_", 2955333819, "Base.String", 664, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputOpenHatch_.name_", 1871914422, "Base.String", 680, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputOpenHatch_.connections_", 3799934156, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 696, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inputOpenHatch_.delayType_", 1948359362, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 728, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputOpenHatch_.delayTime_", 3166756037, "float", 732, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputOpenHatch_.delayMaxTime_", 3617997153, "float", 736, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputFinish_", 703142241, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 752, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputFinish_.pinName_", 3613278264, "Base.String", 760, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputFinish_.name_", 3152251539, "Base.String", 776, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputFinish_.connections_", 2646956155, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 792, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inputFinish_.delayType_", 3822431221, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 824, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputFinish_.delayTime_", 1519821170, "float", 828, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputFinish_.delayMaxTime_", 1304133576, "float", 832, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputForceFinish_", 3662183754, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 848, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputForceFinish_.pinName_", 3659834013, "Base.String", 856, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputForceFinish_.name_", 371100008, "Base.String", 872, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputForceFinish_.connections_", 1673898406, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 888, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inputForceFinish_.delayType_", 2409357092, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 920, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputForceFinish_.delayTime_", 2266322247, "float", 924, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputForceFinish_.delayMaxTime_", 491095135, "float", 928, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSpecificPoint_", 1233795101, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 944, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSpecificPoint_.pinName_", 1671653468, "Base.String", 952, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSpecificPoint_.name_", 4176964295, "Base.String", 968, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSpecificPoint_.connections_", 1104664583, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 984, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSpecificPoint_.delayType_", 996771201, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1016, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSpecificPoint_.delayTime_", 730028918, "float", 1020, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSpecificPoint_.delayMaxTime_", 1859003740, "float", 1024, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSeedArea_", 2982507223, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 1040, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSeedArea_.pinName_", 238653298, "Base.String", 1048, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSeedArea_.name_", 3459468589, "Base.String", 1064, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSeedArea_.connections_", 57722389, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1080, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSeedArea_.delayType_", 229840671, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1112, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSeedArea_.delayTime_", 4025208588, "float", 1116, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputSetModeSeedArea_.delayMaxTime_", 1938651446, "float", 1120, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipCreated_", 2199681778, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1136, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipCreated_.pinName_", 69976821, "Base.String", 1144, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipCreated_.name_", 4044475952, "Base.String", 1160, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipCreated_.connections_", 1380618878, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1176, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("shipCreated_.delayType_", 1562521452, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1208, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipCreated_.delayTime_", 3630070559, "float", 1212, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipCreated_.delayMaxTime_", 1509514087, "float", 1216, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipArrived_", 2625169309, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1232, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipArrived_.pinName_", 4224974556, "Base.String", 1240, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipArrived_.name_", 871669319, "Base.String", 1256, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipArrived_.connections_", 807097991, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1272, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("shipArrived_.delayType_", 4228923393, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1304, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipArrived_.delayTime_", 3962181110, "float", 1308, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipArrived_.delayMaxTime_", 51267804, "float", 1312, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipDescented_", 2587161979, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1328, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipDescented_.pinName_", 1983548142, "Base.String", 1336, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipDescented_.name_", 2053250409, "Base.String", 1352, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipDescented_.connections_", 2474658265, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1368, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("shipDescented_.delayType_", 449957763, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1400, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipDescented_.delayTime_", 106134056, "float", 1404, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipDescented_.delayMaxTime_", 2952610914, "float", 1408, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("canOpenHatch_", 624308670, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1424, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("canOpenHatch_.pinName_", 2077913273, "Base.String", 1432, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("canOpenHatch_.name_", 4098843908, "Base.String", 1448, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("canOpenHatch_.connections_", 1851026106, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1464, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("canOpenHatch_.delayType_", 1589847336, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1496, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("canOpenHatch_.delayTime_", 365721315, "float", 1500, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("canOpenHatch_.delayMaxTime_", 449016091, "float", 1504, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipFinished_", 1561926258, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1520, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipFinished_.pinName_", 3264686453, "Base.String", 1528, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipFinished_.name_", 2871882160, "Base.String", 1544, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipFinished_.connections_", 61202686, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1560, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("shipFinished_.delayType_", 1929918956, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1592, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipFinished_.delayTime_", 3997468063, "float", 1596, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipFinished_.delayMaxTime_", 213249767, "float", 1600, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("descentBlockedByRoad_", 2442069529, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1616, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("descentBlockedByRoad_.pinName_", 3383231008, "Base.String", 1624, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("descentBlockedByRoad_.name_", 2900797387, "Base.String", 1640, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("descentBlockedByRoad_.connections_", 3666420995, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1656, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("descentBlockedByRoad_.delayType_", 3604635821, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1688, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("descentBlockedByRoad_.delayTime_", 3691480762, "float", 1692, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("descentBlockedByRoad_.delayMaxTime_", 990427968, "float", 1696, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createdShipActor_", 1755380851, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 1712, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createdShipActor_.pinName_", 3686781526, "Base.String", 1720, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createdShipActor_.name_", 4035957217, "Base.String", 1736, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createdShipActor_.connections_", 1258059073, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1752, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("createdShipActor_.pinValueType_", 3587220312, "Base.String", 1784, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createdTeamActor_", 1888604596, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 1800, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createdTeamActor_.pinName_", 3391988635, "Base.String", 1808, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createdTeamActor_.name_", 921944534, "Base.String", 1824, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createdTeamActor_.connections_", 2558415852, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1840, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("createdTeamActor_.pinValueType_", 3603939887, "Base.String", 1872, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputContinueRoute_", 1899613988, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 1888, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputContinueRoute_.pinName_", 3774004843, "Base.String", 1896, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputContinueRoute_.name_", 785951974, "Base.String", 1912, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputContinueRoute_.connections_", 995188380, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1928, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inputContinueRoute_.delayType_", 4108350930, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1960, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputContinueRoute_.delayTime_", 1618856917, "float", 1964, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inputContinueRoute_.delayMaxTime_", 2860523761, "float", 1968, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generatePosition_", 3408334998, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1984, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generatePosition_.pinName_", 1145602305, "Base.String", 1992, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generatePosition_.name_", 3468844924, "Base.String", 2008, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generatePosition_.connections_", 3642283746, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2024, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("generatePosition_.pinValueType_", 62819281, "Base.String", 2056, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generateRotation_", 85831053, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2072, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generateRotation_.pinName_", 2532851244, "Base.String", 2080, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generateRotation_.name_", 802446487, "Base.String", 2096, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generateRotation_.connections_", 557630327, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("generateRotation_.pinValueType_", 3917121178, "Base.String", 2144, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shipId_", 647862967, "SQEX.Ebony.Std.Fixid", 2160, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("unitId_", 4148266991, "SQEX.Ebony.Std.Fixid", 2164, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("teamId_", 1186824794, "SQEX.Ebony.Std.Fixid", 2168, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("autoDeleteDistance_", 1081281987, "float", 2172, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("genrateAngleFromCameraBehind_", 1292583070, "float", 2176, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generateDistanceFromCameraMin_", 925481987, "float", 2180, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generateDistanceFromCameraMax_", 3452778345, "float", 2184, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generateHeightFromGround_", 1593659951, "float", 2188, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("generateAtMaxSpeed_", 266868783, "bool", 2192, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isManualCreateTeam_", 4011277839, "bool", 2193, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isManualDescentShip_", 993996458, "bool", 2194, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isManualOpenHatch_", 1010877372, "bool", 2195, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("ignoreBattleArea_", 490314005, "bool", 2196, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicBattleAreaFixId_", 4276147486, "SQEX.Ebony.Std.Fixid", 2200, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isOnRoadGlobalLabel_", 2569664122, "SQEX.Ebony.Std.Fixid", 2204, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("battleAreaSearchRadius_", 2295524477, "float", 2208, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groundSearchDistance_", 409722238, "float", 2212, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("destinationType_", 436116648, "Black.Actor.Component.Nifl.ReinforcementDestinationType", 2216, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fixedDestinationPosition_", 3086384205, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2224, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fixedDestinationPosition_.pinName_", 4173137260, "Base.String", 2232, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fixedDestinationPosition_.name_", 2928149463, "Base.String", 2248, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fixedDestinationPosition_.connections_", 4213686711, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2264, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("fixedDestinationPosition_.pinValueType_", 4150598362, "Base.String", 2296, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fixedDestinationLookAt_", 586165582, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2312, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fixedDestinationLookAt_.pinName_", 562561641, "Base.String", 2320, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fixedDestinationLookAt_.name_", 4234211764, "Base.String", 2336, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("fixedDestinationLookAt_.connections_", 2321469962, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2352, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("fixedDestinationLookAt_.pinValueType_", 3222460393, "Base.String", 2384, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("reinforcementRouteIdPin_", 4035053110, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2400, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("reinforcementRouteIdPin_.pinName_", 3191550241, "Base.String", 2408, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("reinforcementRouteIdPin_.name_", 4037904348, "Base.String", 2424, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("reinforcementRouteIdPin_.connections_", 2073828034, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2440, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("reinforcementRouteIdPin_.pinValueType_", 106088497, "Base.String", 2472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("reinforcementRouteId_", 3666144731, "SQEX.Ebony.Std.Fixid", 2488, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("disablePlayerWarp_", 64240517, "bool", 2492, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.pinName_", 649611931, "Base.String", 2752, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.name_", 1803835094, "Base.String", 2768, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.connections_", 2429315820, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2784, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.delayType_", 108840482, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 2816, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.delayTime_", 3516349093, "float", 2820, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.delayMaxTime_", 1581096321, "float", 2824, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("memory_.pinName_", 4077981670, "Base.String", 2848, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("memory_.name_", 1810410033, "Base.String", 2864, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("memory_.connections_", 1969173169, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2880, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("memory_.pinValueType_", 1590521192, "Base.String", 2912, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shouldResetTeam_.pinName_", 1147819416, "Base.String", 2936, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shouldResetTeam_.name_", 3838771507, "Base.String", 2952, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shouldResetTeam_.connections_", 2827212571, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2968, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("shouldResetTeam_.pinValueType_", 3863304934, "Base.String", 3000, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceStart_.pinName_", 1987938820, "Base.String", 3024, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceStart_.name_", 742524959, "Base.String", 3040, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceStart_.connections_", 4136984527, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 3056, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("forceStart_.delayType_", 1217536633, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 3088, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceStart_.delayTime_", 2372467134, "float", 3092, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceStart_.delayMaxTime_", 2286947028, "float", 3096, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceTeamArrangement_.pinName_", 3785903603, "Base.String", 3120, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceTeamArrangement_.name_", 3300786206, "Base.String", 3136, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceTeamArrangement_.connections_", 614180484, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 3152, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("forceTeamArrangement_.delayType_", 2987786090, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 3184, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceTeamArrangement_.delayTime_", 70113341, "float", 3188, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceTeamArrangement_.delayMaxTime_", 3236650185, "float", 3192, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceTeamIdx_.pinName_", 2809419460, "Base.String", 3216, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceTeamIdx_.name_", 966711263, "Base.String", 3232, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("forceTeamIdx_.connections_", 3613054607, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 3248, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("forceTeamIdx_.pinValueType_", 2460493602, "Base.String", 3280, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            fieldProperties.AddProperty(new Property("finished_", 3052293812, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 2744, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("memory_", 759684707, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2840, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("shouldResetTeam_", 122222145, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2928, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("forceStart_", 218268117, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 3016, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("forceTeamArrangement_", 2938275196, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 3112, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("forceTeamIdx_", 1042476053, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 3208, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("farWaitTime_", 394555935, "int", 3296, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddProperty(new Property("nearWaitTime_", 2654744688, "int", 3300, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddProperty(new Property("farDistance_", 928478302, "float", 3304, 4, 1, Property.PrimitiveType.Float, 0, (char)0));


            return(fieldProperties);
        }
示例#15
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ComponentBase"/> class.
 /// </summary>
 protected DisposeBase()
 {
     collector = new ObjectCollector();
     Tags = new PropertyContainer(this);
 }
 private void IsSelectedChanged(PropertyContainer propertyContainer, PropertyKey propertykey, object newvalue, object oldvalue)
 {
     if ((bool)newvalue)
         selectedEntities.Add((Entity)propertyContainer);
     else
         selectedEntities.Remove((Entity)propertyContainer);
 }
示例#17
0
 /// <summary>
 /// Default constructor to support mocking the <see cref="AzureBlobFileSystemConfiguration"/> class.
 /// </summary>
 protected AzureBlobFileSystemConfiguration()
 {
     this.propertyContainer = new PropertyContainer();
 }
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Action.Menu.SequenceActionTutorialKeyInfoWindow", base.GetFieldProperties(), 1530086592, 277488219);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 184, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 216, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 248, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 252, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 256, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("close_.pinName_", 2217308955, "Base.String", 280, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("close_.name_", 886440022, "Base.String", 296, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("close_.connections_", 2487720812, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 312, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("close_.delayType_", 2553504418, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 344, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("close_.delayTime_", 1666045733, "float", 348, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("close_.delayMaxTime_", 1495987969, "float", 352, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.pinName_", 1137295951, "Base.String", 376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.name_", 2182257194, "Base.String", 392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.connections_", 2048532136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 408, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayType_", 124432558, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 440, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayTime_", 3264366185, "float", 444, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayMaxTime_", 456551125, "float", 448, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("closed_.pinName_", 909346057, "Base.String", 472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("closed_.name_", 4030665748, "Base.String", 488, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("closed_.connections_", 3062211690, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 504, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("closed_.delayType_", 1685505240, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 536, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("closed_.delayTime_", 958412819, "float", 540, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("closed_.delayMaxTime_", 1929410571, "float", 544, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("opend_.pinName_", 713925623, "Base.String", 568, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("opend_.name_", 2834441122, "Base.String", 584, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("opend_.connections_", 1866001136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 600, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("opend_.delayType_", 231350534, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 632, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("opend_.delayTime_", 508538577, "float", 636, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("opend_.delayMaxTime_", 649870893, "float", 640, 4, 1, Property.PrimitiveType.Float, 0, (char)0));


            fieldProperties.AddProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 176, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("close_", 552510516, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 272, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("out_", 1514340864, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 368, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("closed_", 36233838, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 464, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("opend_", 3287457944, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 560, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("dispTime_", 4119871697, "float", 656, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddProperty(new Property("messageSpecificationType1_", 658949773, "Black.Sequence.Action.Menu.SequenceActionTutorialKeyInfoWindow.MessageSpecificationType", 660, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddProperty(new Property("dialogFixId1_", 1982320077, "SQEX.Ebony.Std.Fixid", 664, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("dialogString1_", 950791840, "Ebony.Base.String", 672, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddProperty(new Property("messageSpecificationType2_", 1733158674, "Black.Sequence.Action.Menu.SequenceActionTutorialKeyInfoWindow.MessageSpecificationType", 688, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddProperty(new Property("dialogFixId2_", 3056528978, "SQEX.Ebony.Std.Fixid", 692, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("dialogString2_", 4172138615, "Ebony.Base.String", 696, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddProperty(new Property("messageSpecificationType3_", 1733011579, "Black.Sequence.Action.Menu.SequenceActionTutorialKeyInfoWindow.MessageSpecificationType", 712, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddProperty(new Property("dialogFixId3_", 3056381883, "SQEX.Ebony.Std.Fixid", 716, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("dialogString3_", 951086030, "Ebony.Base.String", 720, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddProperty(new Property("messageSpecificationType4_", 659685248, "Black.Sequence.Action.Menu.SequenceActionTutorialKeyInfoWindow.MessageSpecificationType", 736, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddProperty(new Property("dialogFixId4_", 1983158720, "SQEX.Ebony.Std.Fixid", 740, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("dialogString4_", 949953197, "Ebony.Base.String", 744, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            return(fieldProperties);
        }
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Variable.SequenceVariableSwfEntity", base.GetFieldProperties(), 772865923, -336657642);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("pinNum_", 2027049857, "int", 88, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin8_", 941291293, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 128, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin8_.pinName_", 508081500, "Base.String", 136, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin8_.name_", 386544071, "Base.String", 152, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin8_.connections_", 2428826887, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 168, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin8_.pinValueType_", 308465354, "Base.String", 200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin7_", 2017471670, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 216, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin7_.pinName_", 2291776673, "Base.String", 224, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin7_.name_", 944142940, "Base.String", 240, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin7_.connections_", 708304450, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 256, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin7_.pinValueType_", 1703381681, "Base.String", 288, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin6_", 943556959, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 304, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin6_.pinName_", 4219199114, "Base.String", 312, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin6_.name_", 3023570005, "Base.String", 328, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin6_.connections_", 1959841997, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 344, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin6_.pinValueType_", 1824748636, "Base.String", 376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin5_", 943409864, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 392, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin5_.pinName_", 4056145607, "Base.String", 400, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin5_.name_", 832441586, "Base.String", 416, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin5_.connections_", 669926496, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 432, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin5_.pinValueType_", 460730875, "Base.String", 464, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin4_", 2017030385, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 480, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin4_.pinName_", 2084450280, "Base.String", 488, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin4_.name_", 2790467715, "Base.String", 504, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin4_.connections_", 728665739, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 520, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin4_.pinValueType_", 2604571702, "Base.String", 552, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin3_", 2016883290, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 568, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin3_.pinName_", 3989176653, "Base.String", 576, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin3_.name_", 3844984536, "Base.String", 592, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin3_.connections_", 3521024374, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 608, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin3_.pinValueType_", 314248477, "Base.String", 640, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin2_", 942968579, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 656, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin2_.pinName_", 3079821062, "Base.String", 664, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin2_.name_", 905739153, "Base.String", 680, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin2_.connections_", 3207254161, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 696, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin2_.pinValueType_", 897641160, "Base.String", 728, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin1_", 2016485932, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 744, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin1_.pinName_", 897700739, "Base.String", 752, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin1_.name_", 3012809262, "Base.String", 768, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin1_.connections_", 3831503732, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 784, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin1_.pinValueType_", 2319421223, "Base.String", 816, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin32_", 2195376514, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 832, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin32_.pinName_", 3434433509, "Base.String", 840, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin32_.name_", 2969900768, "Base.String", 856, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin32_.connections_", 205265422, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 872, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin32_.pinValueType_", 3097759141, "Base.String", 904, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin31_", 2194935229, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 920, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin31_.pinName_", 2643656700, "Base.String", 928, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin31_.name_", 118694823, "Base.String", 944, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin31_.connections_", 3673269607, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 960, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin31_.pinValueType_", 2557337770, "Base.String", 992, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin30_", 1121314708, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1008, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin30_.pinName_", 1541167483, "Base.String", 1016, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin30_.name_", 2283078006, "Base.String", 1032, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin30_.connections_", 4252133004, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1048, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin30_.pinValueType_", 3321755983, "Base.String", 1080, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin29_", 3598517886, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1096, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin29_.pinName_", 4173680633, "Base.String", 1104, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin29_.name_", 723359556, "Base.String", 1120, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin29_.connections_", 4080222970, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1136, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin29_.pinValueType_", 81233849, "Base.String", 1168, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin28_", 3598370791, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1184, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin28_.pinName_", 1648991074, "Base.String", 1192, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin28_.name_", 1678073053, "Base.String", 1208, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin28_.connections_", 490466789, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1224, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin28_.pinValueType_", 819757444, "Base.String", 1256, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin27_", 377612396, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1272, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin27_.pinName_", 2243751747, "Base.String", 1280, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin27_.name_", 1124782830, "Base.String", 1296, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin27_.connections_", 2775240756, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1312, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin27_.pinValueType_", 2626481127, "Base.String", 1344, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin26_", 377465301, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1360, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin26_.pinName_", 2521465348, "Base.String", 1368, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin26_.name_", 1888874527, "Base.String", 1384, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin26_.connections_", 607770575, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1400, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin26_.pinValueType_", 438766690, "Base.String", 1432, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin25_", 377906586, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1448, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin25_.pinName_", 2989946381, "Base.String", 1456, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin25_.name_", 483224472, "Base.String", 1472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin25_.connections_", 1838838326, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1488, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin25_.pinValueType_", 1682477789, "Base.String", 1520, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin24_", 3598959171, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1536, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin24_.pinName_", 3823765190, "Base.String", 1544, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin24_.name_", 3944690513, "Base.String", 1560, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin24_.connections_", 634488657, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1576, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin24_.pinValueType_", 2271853448, "Base.String", 1608, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin23_", 3599503624, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1624, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin23_.pinName_", 3530846599, "Base.String", 1632, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin23_.name_", 2031120818, "Base.String", 1648, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin23_.connections_", 1765901856, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1664, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin23_.pinValueType_", 4062153659, "Base.String", 1696, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin22_", 378053681, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1712, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin22_.pinName_", 2834376872, "Base.String", 1720, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin22_.name_", 3723674947, "Base.String", 1736, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin22_.connections_", 4097110603, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1752, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin22_.pinValueType_", 1393675510, "Base.String", 1784, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin21_", 378598134, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1800, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin21_.pinName_", 3839295073, "Base.String", 1808, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin21_.name_", 1396683548, "Base.String", 1824, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin21_.connections_", 3844473090, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1840, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin21_.pinValueType_", 4025141617, "Base.String", 1872, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin20_", 3599650719, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1888, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin20_.pinName_", 1078815050, "Base.String", 1896, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin20_.name_", 3942041621, "Base.String", 1912, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin20_.connections_", 3828897933, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1928, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin20_.pinValueType_", 2371833372, "Base.String", 1960, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin19_", 2829245627, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1976, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin19_.pinName_", 1789114030, "Base.String", 1984, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin19_.name_", 3020019753, "Base.String", 2000, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin19_.connections_", 118192793, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2016, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin19_.pinValueType_", 4153259552, "Base.String", 2048, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin18_", 2829392722, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2064, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin18_.pinName_", 3526235605, "Base.String", 2072, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin18_.name_", 2319340880, "Base.String", 2088, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin18_.connections_", 3151828766, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2104, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin18_.pinValueType_", 3382959957, "Base.String", 2136, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin17_", 2830922913, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2152, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin17_.pinName_", 3777506552, "Base.String", 2160, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin17_.name_", 2896343123, "Base.String", 2176, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin17_.connections_", 1648551739, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2192, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin17_.pinValueType_", 886661510, "Base.String", 2224, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin16_", 2831070008, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2240, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin16_.pinName_", 2291598743, "Base.String", 2248, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin16_.name_", 2861616130, "Base.String", 2264, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin16_.connections_", 836981712, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2280, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin16_.pinValueType_", 1910017035, "Base.String", 2312, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin15_", 1757449487, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2328, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin15_.pinName_", 1054730074, "Base.String", 2336, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin15_.name_", 3171022117, "Base.String", 2352, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin15_.connections_", 3347854781, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2368, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin15_.pinValueType_", 3070925484, "Base.String", 2400, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin14_", 1757596582, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2416, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin14_.pinName_", 1493617841, "Base.String", 2424, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin14_.name_", 1543016620, "Base.String", 2440, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin14_.connections_", 333038386, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2456, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin14_.pinValueType_", 2752283009, "Base.String", 2488, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin13_", 1756463749, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2504, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin13_.pinName_", 535487124, "Base.String", 2512, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin13_.name_", 2428038383, "Base.String", 2528, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin13_.connections_", 742899967, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2544, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin13_.pinValueType_", 2467147890, "Base.String", 2576, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin12_", 2830378460, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2592, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin12_.pinName_", 1398094291, "Base.String", 2600, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin12_.name_", 576912062, "Base.String", 2616, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin12_.connections_", 710826404, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2632, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin12_.pinValueType_", 2484087, "Base.String", 2664, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin11_", 2830525555, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2680, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin11_.pinName_", 4262562390, "Base.String", 2688, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin11_.name_", 1958345185, "Base.String", 2704, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin11_.connections_", 1320267073, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2720, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin11_.pinValueType_", 2887240536, "Base.String", 2752, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin10_", 1757008202, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2768, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin10_.pinName_", 2931252893, "Base.String", 2776, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin10_.name_", 3731176808, "Base.String", 2792, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin10_.connections_", 3989317030, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2808, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin10_.pinValueType_", 2855290029, "Base.String", 2840, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin9_", 2015206004, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2856, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin9_.pinName_", 3541596123, "Base.String", 2864, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin9_.name_", 1606678038, "Base.String", 2880, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin9_.connections_", 2724879148, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2896, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dynamicVarInputPin9_.pinValueType_", 3901238639, "Base.String", 2928, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix1_", 1054310805, "Ebony.Base.String", 2944, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix2_", 1054855258, "Ebony.Base.String", 2960, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix3_", 4275907843, "Ebony.Base.String", 2976, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix4_", 4276349128, "Ebony.Base.String", 2992, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix5_", 1055002353, "Ebony.Base.String", 3008, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix6_", 1055443638, "Ebony.Base.String", 3024, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix7_", 4276496223, "Ebony.Base.String", 3040, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix8_", 1053177972, "Ebony.Base.String", 3056, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix9_", 4274230557, "Ebony.Base.String", 3072, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix10_", 3079881077, "Ebony.Base.String", 3088, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix11_", 3080028172, "Ebony.Base.String", 3104, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix12_", 4153942883, "Ebony.Base.String", 3120, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix13_", 3080322362, "Ebony.Base.String", 3136, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix14_", 3080469457, "Ebony.Base.String", 3152, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix15_", 4154384168, "Ebony.Base.String", 3168, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix16_", 4154531263, "Ebony.Base.String", 3184, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix17_", 3081013910, "Ebony.Base.String", 3200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix18_", 4152265597, "Ebony.Base.String", 3216, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix19_", 3078748244, "Ebony.Base.String", 3232, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix20_", 4266041748, "Ebony.Base.String", 3248, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix21_", 1044694973, "Ebony.Base.String", 3264, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix22_", 1045136258, "Ebony.Base.String", 3280, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix23_", 4266188843, "Ebony.Base.String", 3296, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix24_", 4266733296, "Ebony.Base.String", 3312, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix25_", 1045283353, "Ebony.Base.String", 3328, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix26_", 1045827806, "Ebony.Base.String", 3344, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix27_", 1045680711, "Ebony.Base.String", 3360, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix28_", 4267321676, "Ebony.Base.String", 3376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix29_", 4267174581, "Ebony.Base.String", 3392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix30_", 2449410463, "Ebony.Base.String", 3408, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix31_", 3523325174, "Ebony.Base.String", 3424, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("prefix32_", 3522780721, "Ebony.Base.String", 3440, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outValue_.pinName_", 1626062440, "Base.String", 3464, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outValue_.name_", 229917699, "Base.String", 3480, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outValue_.connections_", 2399569163, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 3496, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("outValue_.pinValueType_", 3816269750, "Base.String", 3528, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            fieldProperties.AddProperty(new Property("outValue_", 2704623729, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 3456, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("entityPointer_", 3527687820, "SQEX.Ebony.Framework.Entity.TransformEntity", 3544, 8, 1, Property.PrimitiveType.Pointer, 0, (char)1));


            return(fieldProperties);
        }
 public PropertyPickerExtendedEditor()
 {
     this.propertyContainer = new PropertyContainer();
     this.Content           = (object)this.propertyContainer;
     this.Loaded           += new RoutedEventHandler(this.OnPropertyPickerExtendedEditor);
 }
示例#21
0
 private void ResetState()
 {
     DependencyProperties = new PropertyContainer(this);
     LocalMatrix = Matrix.Identity;
     Children.Clear();
 }
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Action.Event.SequenceActionPlayMovie", base.GetFieldProperties(), -362818226, -2140049990);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("play_.pinName_", 1740577755, "Base.String", 184, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("play_.name_", 3186450966, "Base.String", 200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("play_.connections_", 3017228076, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 216, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("play_.delayType_", 1536850274, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 248, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("play_.delayTime_", 1032169189, "float", 252, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("play_.delayMaxTime_", 3201806529, "float", 256, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.pinName_", 183528169, "Base.String", 280, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.name_", 2815449908, "Base.String", 296, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.connections_", 2986689162, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 312, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.delayType_", 2766128696, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 344, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.delayTime_", 1614578803, "float", 348, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.delayMaxTime_", 2505467947, "float", 352, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.pinName_", 1137295951, "Base.String", 376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.name_", 2182257194, "Base.String", 392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.connections_", 2048532136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 408, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayType_", 124432558, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 440, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayTime_", 3264366185, "float", 444, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayMaxTime_", 456551125, "float", 448, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.pinName_", 649611931, "Base.String", 472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.name_", 1803835094, "Base.String", 488, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.connections_", 2429315820, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 504, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.delayType_", 108840482, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 536, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.delayTime_", 3516349093, "float", 540, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("finished_.delayMaxTime_", 1581096321, "float", 544, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("movieFilePathPin_.pinName_", 1394992717, "Base.String", 576, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("movieFilePathPin_.name_", 2117688792, "Base.String", 592, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("movieFilePathPin_.connections_", 2190984822, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 608, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("movieFilePathPin_.pinValueType_", 1179221021, "Base.String", 640, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            fieldProperties.AddProperty(new Property("play_", 3806684788, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 176, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("stop_", 3454812878, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 272, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("out_", 1514340864, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 368, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("finished_", 3052293812, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 464, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("eventId_", 548562519, "SQEX.Ebony.Std.Fixid", 560, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("movieFilePathPin_", 604567898, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 568, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("moviePath_", 2046865557, "Ebony.Base.String", 656, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddProperty(new Property("isRegisterEvent_", 359097253, "bool", 672, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("isExcludePlay_", 2643231696, "bool", 673, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("isFadeOutUntilMoviePrepared_", 1309641853, "bool", 674, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("useLocalizeFile_", 3398091906, "bool", 675, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("fadeColor_", 295369271, "Luminous.RenderInterface.Color", 688, 16, 1, Property.PrimitiveType.Color, 0, (char)0));
            fieldProperties.AddProperty(new Property("preparedFadeInFrame_", 3246864503, "int", 704, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddProperty(new Property("preparedFadeInColor_", 366423137, "Luminous.RenderInterface.Color", 720, 16, 1, Property.PrimitiveType.Color, 0, (char)0));
            fieldProperties.AddProperty(new Property("fadeOutFrame_", 3184309659, "int", 736, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddProperty(new Property("fadeOutColor_", 3998816037, "Luminous.RenderInterface.Color", 752, 16, 1, Property.PrimitiveType.Color, 0, (char)0));
            fieldProperties.AddProperty(new Property("fadeInFrame_", 3674210006, "int", 768, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddProperty(new Property("fadeInColor_", 4214166776, "Luminous.RenderInterface.Color", 784, 16, 1, Property.PrimitiveType.Color, 0, (char)0));
            fieldProperties.AddProperty(new Property("isEnableSkip_", 4100227358, "bool", 800, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("eventSkipFadeOutFrame_", 278089992, "int", 808, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddProperty(new Property("eventSkipFadeOutColor_", 160398290, "Luminous.RenderInterface.Color", 816, 16, 1, Property.PrimitiveType.Color, 0, (char)0));
            fieldProperties.AddProperty(new Property("eventSkipFadeInFrame_", 2183039299, "int", 832, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddProperty(new Property("eventSkipFadeInColor_", 3771857421, "Luminous.RenderInterface.Color", 848, 16, 1, Property.PrimitiveType.Color, 0, (char)0));
            fieldProperties.AddProperty(new Property("watchState_", 3369966742, "bool", 864, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));


            return(fieldProperties);
        }
示例#23
0
 public void SetValue(ref PropertyContainer obj, object value)
 {
     setter(ref obj, value);
 }
示例#24
0
 internal AzureBlobFileSystemConfiguration(Models.AzureBlobFileSystemConfiguration protocolObject)
 {
     this.propertyContainer = new PropertyContainer(protocolObject);
 }
 protected Element()
 {
     Properties = new PropertyContainer(this);
 }
示例#26
0
        protected virtual void InitializeGUI()
        {
            this.AutoSize     = true;
            this.AutoSizeMode = AutoSizeMode.GrowAndShrink;
            this.Padding      = new Padding(3, 3, 3, 9);

            this.Header = new PropertyContainer
            {
                Text              = "Logger",
                Height            = 38,
                AutoScroll        = false,
                MinimumSize       = new Size(380, 20),
                MaximumSize       = new Size(1200, int.MaxValue),
                FitContent        = false,
                ControlsAlignment = HorizontalAlignment.Right,
                Padding           = new Padding(0),
                Margin            = new Padding(0),
                Font              = MainForm.HeaderFont
            };
            this.Controls.Add(Header);

            this.ServerAutorunProperty = new PropertyContainer
            {
                Text   = "Autorun",
                Margin = new Padding(6, 0, 6, 0)
            };
            this.Controls.Add(ServerAutorunProperty);

            this.ServerAutorunToggle = new Toggle
            {
                Text = ""
            };
            ServerAutorunProperty.Controls.Add(ServerAutorunToggle);

            this.OpenLastProjectProperty = new PropertyContainer
            {
                Text   = "Open Last Project",
                Margin = new Padding(6, 0, 6, 0)
            };
            this.Controls.Add(OpenLastProjectProperty);

            this.OpenLastProjectToggle = new Toggle
            {
                Text = ""
            };
            OpenLastProjectProperty.Controls.Add(OpenLastProjectToggle);

            this.ServerNotificationsProperty = new PropertyContainer
            {
                Text   = "Server Notifications",
                Margin = new Padding(6, 0, 6, 0)
            };
            this.Controls.Add(ServerNotificationsProperty);

            this.ServerNotificationsToggle = new Toggle
            {
                Text = ""
            };
            ServerNotificationsProperty.Controls.Add(ServerNotificationsToggle);

            this.LoggingNotificationsProperty = new PropertyContainer
            {
                Text   = "Logging Notifications",
                Margin = new Padding(6, 0, 6, 0)
            };
            this.Controls.Add(LoggingNotificationsProperty);

            this.LoggingNotificationsToggle = new Toggle
            {
                Text = ""
            };
            LoggingNotificationsProperty.Controls.Add(LoggingNotificationsToggle);

            this.LogPathProperty = new PropertyContainer
            {
                Text   = "Log Path",
                Margin = new Padding(6, 0, 6, 0)
            };
            this.Controls.Add(LogPathProperty);

            this.LogPathField = new PathInputField
            {
            };
            LogPathProperty.Controls.Add(LogPathField);

            this.LogHotkeyProperty = new PropertyContainer
            {
                Text   = "Log Hotkey",
                Margin = new Padding(6, 0, 6, 0)
            };
            this.Controls.Add(LogHotkeyProperty);

            this.LogHotkeyField = new HotkeysInputField
            {
            };
            LogHotkeyProperty.Controls.Add(LogHotkeyField);
        }
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Action.TimeLine.Camera.SequenceActionTimeLineCameraShakeTrack", base.GetFieldProperties(), 1821086065, 926061527);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curveList_", 1657928633, "SQEX.Ebony.Framework.TimeControl.CurveList", 176, 24, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curveList_.propertyList_", 3952472237, "SQEX.Ebony.Std.DynamicArray< AnchorReferenceValue* >", 184, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)2));
            fieldProperties.AddIndirectlyProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 208, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 216, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 232, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 248, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 280, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 284, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 288, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("enableRandomShakeOffset_", 2141515243, "bool", 320, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shakeRandomFactorRangeMode_", 3554902946, "Black.System.TimeLine.TrackItem.Camera.CameraShakeTrackItem.RandomRangeFactorMode", 324, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("enableRandomRollZ_", 3790358621, "bool", 328, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("rollZRandomFactorRangeMode_", 2285221795, "Black.System.TimeLine.TrackItem.Camera.CameraShakeTrackItem.RandomRangeFactorMode", 332, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("enableRandomUndampedDistance_", 1957369555, "bool", 336, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("undampedDistanceRandomFactorRangeMode_", 3310127673, "Black.System.TimeLine.TrackItem.Camera.CameraShakeTrackItem.RandomRangeFactorMode", 340, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("enableRandomEndAttenuationDistance_", 3566532670, "bool", 344, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("endAttenuationDistanceRandomFactorRangeMode_", 109627262, "Black.System.TimeLine.TrackItem.Camera.CameraShakeTrackItem.RandomRangeFactorMode", 348, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("enableRandomShakeTimeWidth_", 3135282409, "bool", 352, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("enableRandomOffsetRollScale_", 3407492966, "bool", 353, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("cameraActorPin_", 1707765395, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 360, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("cameraActorPin_.pinName_", 1110337782, "Base.String", 368, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("cameraActorPin_.name_", 3328430017, "Base.String", 384, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("cameraActorPin_.connections_", 3699365665, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 400, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("cameraActorPin_.pinValueType_", 3273162808, "Base.String", 432, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("sourceActorPin_", 3706314901, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 448, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("sourceActorPin_.pinName_", 3652086852, "Base.String", 456, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("sourceActorPin_.name_", 3448383583, "Base.String", 472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("sourceActorPin_.connections_", 713081871, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 488, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("sourceActorPin_.pinValueType_", 4150069154, "Base.String", 520, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("masterTrackItem_", 1305972098, "Black.System.TimeLine.TrackItem.Camera.CameraShakeTrackItem", 544, 144, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("masterTrackItem_.name_", 368818912, "Ebony.Base.String", 552, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("masterTrackItem_.startTime_", 2047928410, "float", 568, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("masterTrackItem_.duration_", 3412329161, "float", 572, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("masterTrackItem_.shakeOffset_", 371630198, "Luminous.Math.VectorA", 640, 16, 1, Property.PrimitiveType.Vector4, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("masterTrackItem_.rollZ_", 3574249816, "float", 656, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("masterTrackItem_.undampedDistance_", 3268673952, "float", 660, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("masterTrackItem_.endAttenuationDistance_", 3939469289, "float", 664, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("masterTrackItem_.randomShakeTimeWidth_", 1767645207, "float", 668, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("masterTrackItem_.randomShakeScale_", 1853556536, "float", 672, 4, 1, Property.PrimitiveType.Float, 0, (char)1));


            fieldProperties.AddProperty(new Property("shakeOffsetFlag_", 718835745, "bool", 736, 1, 1, Property.PrimitiveType.Bool, 0, (char)1));
            fieldProperties.AddProperty(new Property("rollZFlag_", 398606859, "bool", 737, 1, 1, Property.PrimitiveType.Bool, 0, (char)1));
            fieldProperties.AddProperty(new Property("undampedDistanceFlag_", 3256916721, "bool", 738, 1, 1, Property.PrimitiveType.Bool, 0, (char)1));
            fieldProperties.AddProperty(new Property("endAttenuationDistanceFlag_", 2365856260, "bool", 739, 1, 1, Property.PrimitiveType.Bool, 0, (char)1));
            fieldProperties.AddProperty(new Property("randomShakeTimeWidthFlag_", 528979746, "bool", 740, 1, 1, Property.PrimitiveType.Bool, 0, (char)1));
            fieldProperties.AddProperty(new Property("randomShakeScaleFlag_", 705020469, "bool", 741, 1, 1, Property.PrimitiveType.Bool, 0, (char)1));


            return(fieldProperties);
        }
示例#28
0
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.MultiPlayer.SequenceMultiPlayerMatching", base.GetFieldProperties(), -1520664721, 1173485957);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("closeTimer_", 3944644901, "float", 176, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 216, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 232, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 264, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 268, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 272, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("joinPin_.pinName_", 98481012, "Base.String", 296, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("joinPin_.name_", 2279640975, "Base.String", 312, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("joinPin_.connections_", 2992778527, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 328, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("joinPin_.delayType_", 4218910601, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 360, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("joinPin_.delayTime_", 1994661902, "float", 364, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("joinPin_.delayMaxTime_", 2674410980, "float", 368, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("quickMatchingPin_.pinName_", 3640717266, "Base.String", 392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("quickMatchingPin_.name_", 3089491789, "Base.String", 408, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("quickMatchingPin_.connections_", 2375809205, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 424, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("quickMatchingPin_.delayType_", 15956351, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 456, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("quickMatchingPin_.delayTime_", 4235781740, "float", 460, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("quickMatchingPin_.delayMaxTime_", 4084535766, "float", 464, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("close_.pinName_", 2217308955, "Base.String", 488, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("close_.name_", 886440022, "Base.String", 504, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("close_.connections_", 2487720812, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 520, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("close_.delayType_", 2553504418, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 552, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("close_.delayTime_", 1666045733, "float", 556, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("close_.delayMaxTime_", 1495987969, "float", 560, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("release_.pinName_", 1747492566, "Base.String", 584, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("release_.name_", 3814582113, "Base.String", 600, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("release_.connections_", 2386921921, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 616, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("release_.delayType_", 1802113947, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 648, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("release_.delayTime_", 1082133968, "float", 652, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("release_.delayMaxTime_", 2886347034, "float", 656, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("sortiePin_.pinName_", 4016886230, "Base.String", 680, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("sortiePin_.name_", 261595233, "Base.String", 696, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("sortiePin_.connections_", 374992065, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 712, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("sortiePin_.delayType_", 3434151579, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 744, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("sortiePin_.delayTime_", 2714171600, "float", 748, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("sortiePin_.delayMaxTime_", 3827434010, "float", 752, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("retryOpenPin_.pinName_", 403277160, "Base.String", 776, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("retryOpenPin_.name_", 451557635, "Base.String", 792, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("retryOpenPin_.connections_", 1073331211, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 808, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("retryOpenPin_.delayType_", 149665733, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 840, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("retryOpenPin_.delayTime_", 3723373122, "float", 844, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("retryOpenPin_.delayMaxTime_", 1767640664, "float", 848, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("singlePlayPin_.pinName_", 3602158238, "Base.String", 872, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("singlePlayPin_.name_", 865199449, "Base.String", 888, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("singlePlayPin_.connections_", 613261225, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 904, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("singlePlayPin_.delayType_", 661066259, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 936, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("singlePlayPin_.delayTime_", 766996472, "float", 940, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("singlePlayPin_.delayMaxTime_", 527041202, "float", 944, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.pinName_", 1137295951, "Base.String", 968, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.name_", 2182257194, "Base.String", 984, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.connections_", 2048532136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1000, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayType_", 124432558, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1032, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayTime_", 3264366185, "float", 1036, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayMaxTime_", 456551125, "float", 1040, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("successjoin_.pinName_", 1314865004, "Base.String", 1064, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("successjoin_.name_", 3578819031, "Base.String", 1080, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("successjoin_.connections_", 2402524087, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1096, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("successjoin_.delayType_", 3978906161, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1128, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("successjoin_.delayTime_", 1481606758, "float", 1132, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("successjoin_.delayMaxTime_", 810013644, "float", 1136, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failed_.pinName_", 1609820648, "Base.String", 1160, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failed_.name_", 3081115267, "Base.String", 1176, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failed_.connections_", 4215662731, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1192, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("failed_.delayType_", 83095621, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1224, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failed_.delayTime_", 3656803010, "float", 1228, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failed_.delayMaxTime_", 3259374552, "float", 1232, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("slotPin_.pinName_", 1109103660, "Base.String", 1256, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("slotPin_.name_", 3327303319, "Base.String", 1272, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("slotPin_.connections_", 4173298039, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1288, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("slotPin_.pinValueType_", 742328474, "Base.String", 1320, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("roomIdPin_.pinName_", 3038998262, "Base.String", 1344, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("roomIdPin_.name_", 3013157313, "Base.String", 1360, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("roomIdPin_.connections_", 3544136993, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1376, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("roomIdPin_.pinValueType_", 845550136, "Base.String", 1408, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("roomIdUpperPin_.pinName_", 3289735932, "Base.String", 1432, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("roomIdUpperPin_.name_", 3757665447, "Base.String", 1448, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("roomIdUpperPin_.connections_", 2214017127, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1464, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("roomIdUpperPin_.pinValueType_", 2889107882, "Base.String", 1496, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("roomKeyOverridePin_.pinName_", 1673454012, "Base.String", 1520, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("roomKeyOverridePin_.name_", 2543132519, "Base.String", 1536, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("roomKeyOverridePin_.connections_", 2656228135, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1552, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("roomKeyOverridePin_.pinValueType_", 1330294634, "Base.String", 1584, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("codeNumberPin_.pinName_", 2852528616, "Base.String", 1608, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("codeNumberPin_.name_", 4198612611, "Base.String", 1624, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("codeNumberPin_.connections_", 37986443, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1640, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("codeNumberPin_.pinValueType_", 3433689654, "Base.String", 1672, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("campNamePin_.pinName_", 3008178894, "Base.String", 1696, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("campNamePin_.name_", 1606759945, "Base.String", 1712, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("campNamePin_.connections_", 1049399929, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1728, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("campNamePin_.pinValueType_", 1975452672, "Base.String", 1760, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("anyRegionPin_.pinName_", 804504696, "Base.String", 1784, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("anyRegionPin_.name_", 1431258835, "Base.String", 1800, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("anyRegionPin_.connections_", 3255858875, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1816, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("anyRegionPin_.pinValueType_", 2238859270, "Base.String", 1848, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("coopTypePin_.pinName_", 1453293391, "Base.String", 1872, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("coopTypePin_.name_", 3724587306, "Base.String", 1888, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("coopTypePin_.connections_", 3486428072, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1904, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("coopTypePin_.pinValueType_", 2903629363, "Base.String", 1936, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isInRoomPin_.pinName_", 2557259144, "Base.String", 1960, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isInRoomPin_.name_", 1262947427, "Base.String", 1976, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isInRoomPin_.connections_", 2856678763, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1992, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("isInRoomPin_.pinValueType_", 3980919830, "Base.String", 2024, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("playerCharacterPin_.pinName_", 2526952382, "Base.String", 2048, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("playerCharacterPin_.name_", 1973440953, "Base.String", 2064, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("playerCharacterPin_.connections_", 1503155209, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2080, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("playerCharacterPin_.pinValueType_", 3358882416, "Base.String", 2112, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            fieldProperties.AddProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 192, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("joinPin_", 2848238693, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 288, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("quickMatchingPin_", 1671286071, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 384, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("close_", 552510516, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 480, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("release_", 2803113459, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 576, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("sortiePin_", 760471283, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 672, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("retryOpenPin_", 1501177201, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 768, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("singlePlayPin_", 2337046155, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 864, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("out_", 1514340864, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 960, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("successjoin_", 1749670477, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1056, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("failed_", 2601209585, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1152, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("slotPin_", 3956440973, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1248, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("roomIdPin_", 3998404755, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1336, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("roomIdUpperPin_", 2632507069, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1424, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("roomKeyOverridePin_", 1923631101, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1512, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("codeNumberPin_", 813577969, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1600, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("campNamePin_", 3314815835, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1688, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("anyRegionPin_", 3518783265, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1776, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("coopTypePin_", 3263009024, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1864, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("isInRoomPin_", 3483164049, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 1952, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("playerCharacterPin_", 1875791275, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 2040, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("slot_", 1761545578, "int", 2128, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddProperty(new Property("roomId_", 1842576920, "int", 2132, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddProperty(new Property("isNeedOpenConnectDialog_", 3621368994, "bool", 2136, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("isDebug_", 815646837, "bool", 2137, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("coopType_", 2267675581, "int", 2140, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddProperty(new Property("playerCharacter_", 2905667168, "Black.Save.SAVE_PLAYER", 2144, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));


            return(fieldProperties);
        }
        protected virtual MASMFormattingEditor CreateLogDataEditor()
        {
            MASMFormattingEditor editor = new MASMFormattingEditor
            {
                Text = "Serial Port Data Editor",
            };

            editor.AvailableProperties = () =>
            {
                return(new List <string>(new MASM().UpdateOnce().GetPropertiesList()));
            };

            editor.Items.AddRange(this.Server.Settings.DataFormatter.FormattingItems);

            InputField globalPrefixField = new InputField {
                Text = this.Server.Settings.DataFormatter.GlobalPrefix
            };
            InputField globalPostfixField = new InputField {
                Text = this.Server.Settings.DataFormatter.GlobalPostfix
            };
            InputField decimalSeparatorField = new InputField {
                Text = this.Server.Settings.DataFormatter.DecimalSeparator
            };
            Dropdown encodingField = new Dropdown {
            };

            encodingField.FromEnum(this.Server.Settings.Encoding);
            InputField endOfLineCharField = new InputField {
                Text = this.Server.Settings.EndOfLineChar
            };


            PropertyContainer globalPrefixProperty = new PropertyContainer {
                Text = "Global Prefix"
            };
            PropertyContainer globalPostfixProperty = new PropertyContainer {
                Text = "Global Postfix"
            };
            PropertyContainer decimalSeparatorProperty = new PropertyContainer {
                Text = "Decimal Separator"
            };
            PropertyContainer encodingProperty = new PropertyContainer {
                Text = "Encoding"
            };
            PropertyContainer endOfLineCharProperty = new PropertyContainer {
                Text = "End Of Line Character"
            };


            globalPrefixProperty.Controls.Add(globalPrefixField);
            globalPostfixProperty.Controls.Add(globalPostfixField);
            decimalSeparatorProperty.Controls.Add(decimalSeparatorField);
            encodingProperty.Controls.Add(encodingField);
            endOfLineCharProperty.Controls.Add(endOfLineCharField);

            editor.AdditionalProperties.Add(globalPrefixProperty);
            editor.AdditionalProperties.Add(globalPostfixProperty);
            editor.AdditionalProperties.Add(decimalSeparatorProperty);
            editor.AdditionalProperties.Add(encodingProperty);
            editor.AdditionalProperties.Add(endOfLineCharProperty);

            editor.Apply += (object sender, EventArgs e) =>
            {
                if (editor.Items.Count != this.Server.Settings.DataFormatter.FormattingItems.Count)
                {
                    this.Server.Settings.DataFormatter.FormattingItems.Clear();
                    this.Server.Settings.DataFormatter.FormattingItems.AddRange(editor.Items);
                }
                else
                {
                    for (int i = 0; i < editor.Items.Count; i++)
                    {
                        this.Server.Settings.DataFormatter.FormattingItems[i] = editor.Items[i];
                    }
                }

                this.Server.Settings.DataFormatter.GlobalPrefix     = globalPrefixField.Text;
                this.Server.Settings.DataFormatter.GlobalPostfix    = globalPostfixField.Text;
                this.Server.Settings.DataFormatter.DecimalSeparator = decimalSeparatorField.Text;
                this.Server.Settings.Encoding      = encodingField.ToEnum(SerialPortEncoding.UTF8);
                this.Server.Settings.EndOfLineChar = endOfLineCharField.Text;

                editor.Dispose();
            };

            editor.Cancel += (object sender, EventArgs e) =>
            {
                editor.Dispose();
            };

            return(editor);
        }
示例#30
0
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Action.Level.SequenceActionGetBattleAreaElement", base.GetFieldProperties(), 532662219, 577297888);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 184, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 216, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 248, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 252, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 256, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.pinName_", 183528169, "Base.String", 280, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.name_", 2815449908, "Base.String", 296, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.connections_", 2986689162, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 312, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.delayType_", 2766128696, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 344, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.delayTime_", 1614578803, "float", 348, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.delayMaxTime_", 2505467947, "float", 352, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("ElementInPin_.pinName_", 1875969091, "Base.String", 376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("ElementInPin_.name_", 3647271406, "Base.String", 392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("ElementInPin_.connections_", 3186308404, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 408, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("ElementInPin_.pinValueType_", 783018727, "Base.String", 440, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("battleAreaPin_.pinName_", 2919042749, "Base.String", 464, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("battleAreaPin_.name_", 1231344840, "Base.String", 480, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("battleAreaPin_.connections_", 490348806, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 496, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("battleAreaPin_.pinValueType_", 3628324109, "Base.String", 528, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.pinName_", 1137295951, "Base.String", 552, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.name_", 2182257194, "Base.String", 568, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.connections_", 2048532136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 584, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayType_", 124432558, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 616, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayTime_", 3264366185, "float", 620, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayMaxTime_", 456551125, "float", 624, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("more_.pinName_", 2689338444, "Base.String", 648, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("more_.name_", 2997466103, "Base.String", 664, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("more_.connections_", 3306032599, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 680, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("more_.delayType_", 3032634897, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 712, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("more_.delayTime_", 2724344262, "float", 716, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("more_.delayMaxTime_", 2662428140, "float", 720, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("less_.pinName_", 1464030516, "Base.String", 744, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("less_.name_", 601391951, "Base.String", 760, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("less_.connections_", 1890983135, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 776, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("less_.delayType_", 2536693321, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 808, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("less_.delayTime_", 4141377742, "float", 812, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("less_.delayMaxTime_", 2093599908, "float", 816, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("elementOutPin_.pinName_", 3386689860, "Base.String", 840, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("elementOutPin_.name_", 2843615071, "Base.String", 856, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("elementOutPin_.connections_", 2188898575, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 872, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("elementOutPin_.pinValueType_", 1903746722, "Base.String", 904, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            fieldProperties.AddProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 176, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("stop_", 3454812878, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 272, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("ElementInPin_", 3361390444, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 368, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("battleAreaPin_", 1653102442, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 456, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("out_", 1514340864, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 544, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("more_", 2100723629, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 640, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("less_", 2197512357, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 736, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("elementOutPin_", 3213971349, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 832, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("element_", 2123688312, "Black.Actor.STATUS_ELEMENT", 920, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddProperty(new Property("updateStatusFlag_", 3717561245, "bool", 924, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("changeActivate_", 624234277, "bool", 925, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("elementValue_", 2984058729, "int", 928, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));


            return(fieldProperties);
        }
示例#31
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PoolInformation"/> class.
 /// </summary>
 public PoolInformation()
 {
     this.propertyContainer = new PropertyContainer();
 }
示例#32
0
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Action.Actor.SequenceActionActorUseAnimPack", base.GetFieldProperties(), 2059803967, -1683862932);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 192, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 208, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 224, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 256, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 260, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 264, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("deactivate_.pinName_", 2166768939, "Base.String", 288, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("deactivate_.name_", 750309030, "Base.String", 304, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("deactivate_.connections_", 2426731356, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 320, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("deactivate_.delayType_", 1688678802, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 352, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("deactivate_.delayTime_", 3960083093, "float", 356, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("deactivate_.delayMaxTime_", 708775601, "float", 360, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("load_.pinName_", 2127862757, "Base.String", 384, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("load_.name_", 1619068640, "Base.String", 400, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("load_.connections_", 1426090510, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 416, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("load_.delayType_", 3820492604, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 448, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("load_.delayTime_", 2866398255, "float", 452, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("load_.delayMaxTime_", 1724725495, "float", 456, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("unload_.pinName_", 2238768658, "Base.String", 480, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("unload_.name_", 2491159437, "Base.String", 496, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("unload_.connections_", 748902901, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 512, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("unload_.delayType_", 2114403519, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 544, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("unload_.delayTime_", 1614804140, "float", 548, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("unload_.delayMaxTime_", 3152124694, "float", 552, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.pinName_", 1137295951, "Base.String", 576, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.name_", 2182257194, "Base.String", 592, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.connections_", 2048532136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 608, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayType_", 124432558, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 640, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayTime_", 3264366185, "float", 644, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayMaxTime_", 456551125, "float", 648, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("activated_.pinName_", 974642208, "Base.String", 672, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("activated_.name_", 3992188363, "Base.String", 688, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("activated_.connections_", 1352441603, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 704, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("activated_.delayType_", 4137601709, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 736, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("activated_.delayTime_", 4224446650, "float", 740, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("activated_.delayMaxTime_", 464636224, "float", 744, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("deactivated_.pinName_", 2082476281, "Base.String", 768, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("deactivated_.name_", 3614718532, "Base.String", 784, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("deactivated_.connections_", 767103994, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 800, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("deactivated_.delayType_", 1747971176, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 832, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("deactivated_.delayTime_", 99284515, "float", 836, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("deactivated_.delayMaxTime_", 2119587419, "float", 840, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("loaded_.pinName_", 3579933484, "Base.String", 864, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("loaded_.name_", 819583895, "Base.String", 880, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("loaded_.connections_", 1178880119, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 896, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("loaded_.delayType_", 3272802289, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 928, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("loaded_.delayTime_", 350942246, "float", 932, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("loaded_.delayMaxTime_", 838934668, "float", 936, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("actor_.pinName_", 3335040042, "Base.String", 960, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("actor_.name_", 3822690741, "Base.String", 976, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("actor_.connections_", 213149741, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 992, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("actor_.pinValueType_", 4068350780, "Base.String", 1024, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            fieldProperties.AddProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 184, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("deactivate_", 136354660, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 280, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("load_", 3549575554, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 376, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("unload_", 3848889847, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 472, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("out_", 1514340864, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 568, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("activated_", 507921433, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 664, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("deactivated_", 3334439294, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 760, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("loaded_", 1771365517, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 856, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("actor_", 3434601855, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 952, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("isAutoLoad_", 2729930715, "bool", 1040, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("sourcePath_", 341055184, "Ebony.Base.String", 1048, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddProperty(new Property("stopCurrentAnim_", 1387637972, "bool", 1064, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("priorityType_", 1626042234, "Black.Sequence.Action.Actor.SequenceActionActorUseAnimPack.PRIORITY_TYPE", 1068, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));


            return(fieldProperties);
        }
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Actor.SequenceActionInteractionAbsorptionCheck", base.GetFieldProperties(), -530598607, 351066827);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 184, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 192, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 208, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 224, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 256, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 260, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 264, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_", 1514340864, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 280, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.pinName_", 1137295951, "Base.String", 288, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.name_", 2182257194, "Base.String", 304, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.connections_", 2048532136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 320, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayType_", 124432558, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 352, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayTime_", 3264366185, "float", 356, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayMaxTime_", 456551125, "float", 360, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inValue_", 2850905696, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 376, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inValue_.pinName_", 2599123119, "Base.String", 384, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inValue_.name_", 1668691786, "Base.String", 400, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inValue_.connections_", 1463894344, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 416, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inValue_.pinValueType_", 727226451, "Base.String", 448, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.pinName_", 183528169, "Base.String", 488, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.name_", 2815449908, "Base.String", 504, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.connections_", 2986689162, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 520, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.delayType_", 2766128696, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 552, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.delayTime_", 1614578803, "float", 556, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stop_.delayMaxTime_", 2505467947, "float", 560, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("on_.pinName_", 1658124892, "Base.String", 584, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("on_.name_", 3447644359, "Base.String", 600, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("on_.connections_", 2131790343, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 616, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("on_.delayType_", 2857527169, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 648, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("on_.delayTime_", 2590784886, "float", 652, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("on_.delayMaxTime_", 3473824604, "float", 656, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("off_.pinName_", 1144794266, "Base.String", 680, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("off_.name_", 3739626341, "Base.String", 696, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("off_.connections_", 1268199165, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 712, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("off_.delayType_", 1624880631, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 744, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("off_.delayTime_", 1356858420, "float", 748, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("off_.delayMaxTime_", 3575196750, "float", 752, 4, 1, Property.PrimitiveType.Float, 0, (char)0));


            fieldProperties.AddProperty(new Property("stop_", 3454812878, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 480, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("on_", 2485575197, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 576, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("off_", 3794256847, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 672, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("updateStatusFlag_", 3717561245, "bool", 768, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("changeActivate_", 624234277, "bool", 769, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));


            return(fieldProperties);
        }
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.WorldMap.TerrainCurveData", base.GetFieldProperties(), -557088140, 1693118458);

            fieldProperties.AddIndirectlyProperty(new Property("Magic_", 1161525257, "unsigned int", 16, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("Version_", 319222456, "unsigned int", 20, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CurveCount_", 1067008252, "unsigned int", 24, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("SegmentsCount_", 579988875, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 32, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("InstancesCount_", 3066499927, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 48, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("IsLoop_", 931696332, "SQEX.Ebony.Std.DynamicArray< bool, MEMORY_CATEGORY_MAP_CURVE >", 64, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CurveName_", 2603215472, "SQEX.Ebony.Std.DynamicArray< char*, MEMORY_CATEGORY_MAP_CURVE >", 80, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("LodLength_", 687203489, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 96, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CurveAttribute_", 752726097, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 112, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointX0_", 3803321562, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 128, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointX1_", 2729406851, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 144, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointX2_", 3802924204, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 160, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointX3_", 3802777109, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 176, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointY0_", 886911429, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 192, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointY1_", 1960826140, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 208, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointY2_", 1960973235, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 224, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointY3_", 887352714, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 240, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointZ0_", 2073072100, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 256, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointZ1_", 2072925005, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 272, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointZ2_", 3147133906, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 288, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("PointZ3_", 3146986811, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 304, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("BankSZ_", 2548507367, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 320, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("BankEZ_", 2354221313, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 336, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("FlattenWidth_", 1848347828, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 352, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("FlattenSmooth_", 2780509172, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 368, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("FlattenSmoothLeft_", 2282336127, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 384, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("ModelSetsCount_", 936913983, "SQEX.Ebony.Std.DynamicArray< int, MEMORY_CATEGORY_MAP_CURVE >", 400, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("ModelSetsIndex_", 1741050106, "SQEX.Ebony.Std.DynamicArray< int, MEMORY_CATEGORY_MAP_CURVE >", 416, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("AbsorbEnable_", 4015610616, "SQEX.Ebony.Std.DynamicArray< bool, MEMORY_CATEGORY_MAP_CURVE >", 432, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("VisibleEnable_", 3471382959, "SQEX.Ebony.Std.DynamicArray< bool, MEMORY_CATEGORY_MAP_CURVE >", 448, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("SmoothType_", 3419972120, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 464, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("BezieLength_", 834441401, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 480, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("EntityListCount_", 1334325486, "SQEX.Ebony.Std.DynamicArray< int, MEMORY_CATEGORY_MAP_CURVE >", 496, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("EntityList_", 4052587883, "SQEX.Ebony.Std.DynamicArray< int, MEMORY_CATEGORY_MAP_CURVE >", 512, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CheckPosListCount_", 3920199883, "SQEX.Ebony.Std.DynamicArray< int, MEMORY_CATEGORY_MAP_CURVE >", 528, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CheckPosListX_", 3933418110, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 544, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CheckPosListY_", 3933271015, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 560, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CheckPosListZ_", 711821072, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 576, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isBranch_", 1165302206, "SQEX.Ebony.Std.DynamicArray< bool, MEMORY_CATEGORY_MAP_CURVE >", 592, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("branchPointIndex_", 790857096, "SQEX.Ebony.Std.DynamicArray< int, MEMORY_CATEGORY_MAP_CURVE >", 608, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("branchPointCount_", 1830983381, "SQEX.Ebony.Std.DynamicArray< int, MEMORY_CATEGORY_MAP_CURVE >", 624, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("branchSegmentCount_", 4241032638, "SQEX.Ebony.Std.DynamicArray< int, MEMORY_CATEGORY_MAP_CURVE >", 640, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("segmentModelPattern0_", 3539879946, "SQEX.Ebony.Std.DynamicArray< int, MEMORY_CATEGORY_MAP_CURVE >", 656, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("segmentModelPattern0ListCount_", 2266867481, "SQEX.Ebony.Std.DynamicArray< int, MEMORY_CATEGORY_MAP_CURVE >", 672, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("segmentModelPattern0ListItemCount_", 3829180390, "SQEX.Ebony.Std.DynamicArray< int, MEMORY_CATEGORY_MAP_CURVE >", 688, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("DefaultLeftLane_", 3805511186, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 704, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("MaxLeftLane_", 1454329027, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 720, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("ParkLane_", 1134177020, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 736, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("LimitSpeed_", 3548622816, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 752, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CurveType_", 4264925081, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 768, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CanParking_", 46833096, "SQEX.Ebony.Std.DynamicArray< bool, MEMORY_CATEGORY_MAP_CURVE >", 784, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("IsForCollisionWall_", 4182333545, "SQEX.Ebony.Std.DynamicArray< bool, MEMORY_CATEGORY_MAP_CURVE >", 800, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CollisionWallHeight_", 1931324353, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 816, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CollisionWallHeight2_", 3579461351, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 832, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CollisionWallWidth_", 1311958646, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 848, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CollisionWallMask_", 3458516928, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 864, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CollisionWallFlag_", 440521006, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 880, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("CollisionWallFilter_", 2619497790, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 896, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("InstancePositionX_", 2085253776, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 912, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("InstancePositionY_", 1011339065, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 928, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("InstancePositionZ_", 1011883518, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 944, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("InstanceRotationX_", 432578005, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 960, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("InstanceRotationY_", 432725100, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 976, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("InstanceRotationZ_", 3654071875, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 992, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("InstanceScalingX_", 3684642650, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 1008, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("InstanceScalingY_", 2610727939, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 1024, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("InstanceScalingZ_", 3684245292, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 1040, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("InstanceModelIndex_", 4080237662, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 1056, 16, 1, Property.PrimitiveType.Array, 0, (char)0));


            fieldProperties.AddProperty(new Property("ModelSetCount_", 2776012714, "unsigned int", 1072, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddProperty(new Property("ModelName_", 3715820698, "SQEX.Ebony.Std.DynamicArray< char*, MEMORY_CATEGORY_MAP_CURVE >", 1080, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)0));
            fieldProperties.AddProperty(new Property("ModelIndex0_", 1895086943, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 1096, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("ModelIndex1_", 2969001654, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 1112, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("ModelIndex2_", 2968560369, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 1128, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("ModelIndex0Count_", 3133217290, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 1144, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("ModelLength0_", 1087526319, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 1160, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("ModelLength1_", 1087673414, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 1176, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("ModelLength2_", 13464513, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 1192, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("OffsetX_", 4261284939, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 1208, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("OffsetY_", 3187664418, "SQEX.Ebony.Std.DynamicArray< float, MEMORY_CATEGORY_MAP_CURVE >", 1224, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("IsCollision_", 1592173312, "SQEX.Ebony.Std.DynamicArray< bool, MEMORY_CATEGORY_MAP_CURVE >", 1240, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("IsTransForm_", 1576752156, "SQEX.Ebony.Std.DynamicArray< bool, MEMORY_CATEGORY_MAP_CURVE >", 1256, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("IsStraight_", 1828070936, "SQEX.Ebony.Std.DynamicArray< bool, MEMORY_CATEGORY_MAP_CURVE >", 1272, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("IsYRotationOnly_", 3921939649, "SQEX.Ebony.Std.DynamicArray< bool, MEMORY_CATEGORY_MAP_CURVE >", 1288, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("IsForInstancing_", 81608569, "SQEX.Ebony.Std.DynamicArray< bool, MEMORY_CATEGORY_MAP_CURVE >", 1304, 16, 1, Property.PrimitiveType.Array, 0, (char)0));
            fieldProperties.AddProperty(new Property("ModelSelectRate0_", 3626567629, "SQEX.Ebony.Std.DynamicArray< unsigned int, MEMORY_CATEGORY_MAP_CURVE >", 1320, 16, 1, Property.PrimitiveType.Array, 0, (char)0));


            return(fieldProperties);
        }
示例#35
0
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Action.Mobhunt.SequenceActionMobhuntRecivedGetInfo", base.GetFieldProperties(), 94466055, 492803663);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 184, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 216, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 248, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 252, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 256, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.pinName_", 1137295951, "Base.String", 280, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.name_", 2182257194, "Base.String", 296, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.connections_", 2048532136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 312, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayType_", 124432558, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 344, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayTime_", 3264366185, "float", 348, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayMaxTime_", 456551125, "float", 352, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failedOut_.pinName_", 2503737620, "Base.String", 376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failedOut_.name_", 473610351, "Base.String", 392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failedOut_.connections_", 724322175, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 408, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("failedOut_.delayType_", 3468098089, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 440, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failedOut_.delayTime_", 1202272686, "float", 444, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("failedOut_.delayMaxTime_", 401361092, "float", 448, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("typeOut_.pinName_", 641862439, "Base.String", 472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("typeOut_.name_", 1468250898, "Base.String", 488, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("typeOut_.connections_", 2280630912, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 504, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("typeOut_.pinValueType_", 2979528475, "Base.String", 536, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("diffiCultOut_.pinName_", 1733656923, "Base.String", 560, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("diffiCultOut_.name_", 3488326294, "Base.String", 576, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("diffiCultOut_.connections_", 567180460, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 592, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("diffiCultOut_.pinValueType_", 4079544815, "Base.String", 624, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("morningRateOut_.pinName_", 4196800319, "Base.String", 648, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("morningRateOut_.name_", 1544150106, "Base.String", 664, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("morningRateOut_.connections_", 731668472, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 680, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("morningRateOut_.pinValueType_", 261839779, "Base.String", 712, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dayRateOut_.pinName_", 524924157, "Base.String", 736, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dayRateOut_.name_", 807686152, "Base.String", 752, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("dayRateOut_.connections_", 2998235206, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 768, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("dayRateOut_.pinValueType_", 513152333, "Base.String", 800, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("nightRateOut_.pinName_", 1024137289, "Base.String", 824, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("nightRateOut_.name_", 723033940, "Base.String", 840, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("nightRateOut_.connections_", 4055528106, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 856, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("nightRateOut_.pinValueType_", 2039968905, "Base.String", 888, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            fieldProperties.AddProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 176, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("out_", 1514340864, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 272, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("failedOut_", 2699004421, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 368, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("typeOut_", 3697055400, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 464, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("diffiCultOut_", 292735732, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 552, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("morningRateOut_", 545934096, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 640, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("dayRateOut_", 4293373738, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 728, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("nightRateOut_", 1405107758, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 816, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));


            return(fieldProperties);
        }
示例#36
0
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Action.Minigame.Colosseum.SequenceActionColosseumBattleControl", base.GetFieldProperties(), 2076677538, -27597186);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("okPin_.pinName_", 522817422, "Base.String", 184, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("okPin_.name_", 3306136009, "Base.String", 200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("okPin_.connections_", 3944106809, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 216, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("okPin_.pinValueType_", 3412471488, "Base.String", 248, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupA1Pin_.pinName_", 2288006309, "Base.String", 272, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupA1Pin_.name_", 1491029408, "Base.String", 288, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupA1Pin_.connections_", 1332106190, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 304, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("groupA1Pin_.pinValueType_", 1797758053, "Base.String", 336, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupB1Pin_.pinName_", 1319503804, "Base.String", 360, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupB1Pin_.name_", 992792935, "Base.String", 376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupB1Pin_.connections_", 2718325031, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 392, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("groupB1Pin_.pinValueType_", 585539946, "Base.String", 424, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupC1Pin_.pinName_", 3974733451, "Base.String", 448, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupC1Pin_.name_", 1320086726, "Base.String", 464, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupC1Pin_.connections_", 1873875068, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 480, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("groupC1Pin_.pinValueType_", 30255903, "Base.String", 512, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupD1Pin_.pinName_", 1469530626, "Base.String", 536, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupD1Pin_.name_", 3565795773, "Base.String", 552, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("groupD1Pin_.connections_", 360344005, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 568, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("groupD1Pin_.pinValueType_", 571524580, "Base.String", 600, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("restTimePin_.pinName_", 2739178369, "Base.String", 624, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("restTimePin_.name_", 780496636, "Base.String", 640, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("restTimePin_.connections_", 4234873186, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 656, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("restTimePin_.pinValueType_", 505678673, "Base.String", 688, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 736, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 752, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 768, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 800, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 804, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 808, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleStartEffectEnd_.pinName_", 3100847174, "Base.String", 832, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleStartEffectEnd_.name_", 2795353041, "Base.String", 848, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleStartEffectEnd_.connections_", 461866193, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 864, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleStartEffectEnd_.delayType_", 715553579, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 896, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleStartEffectEnd_.delayTime_", 3358604064, "float", 900, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleStartEffectEnd_.delayMaxTime_", 3784545130, "float", 904, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inRageEffectEnd_.pinName_", 2908151023, "Base.String", 928, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inRageEffectEnd_.name_", 4206124426, "Base.String", 944, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inRageEffectEnd_.connections_", 147342472, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 960, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inRageEffectEnd_.delayType_", 44476238, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 992, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inRageEffectEnd_.delayTime_", 3184513033, "float", 996, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inRageEffectEnd_.delayMaxTime_", 3391764917, "float", 1000, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleEndStartEnd_.pinName_", 1707924532, "Base.String", 1024, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleEndStartEnd_.name_", 3090790479, "Base.String", 1040, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleEndStartEnd_.connections_", 1947276255, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1056, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleEndStartEnd_.delayType_", 636566857, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1088, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleEndStartEnd_.delayTime_", 2241251278, "float", 1092, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("inBattleEndStartEnd_.delayMaxTime_", 3304890788, "float", 1096, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.pinName_", 1137295951, "Base.String", 1120, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.name_", 2182257194, "Base.String", 1136, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.connections_", 2048532136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1152, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayType_", 124432558, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1184, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayTime_", 3264366185, "float", 1188, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayMaxTime_", 456551125, "float", 1192, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEnd_.pinName_", 3868574866, "Base.String", 1216, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEnd_.name_", 996220685, "Base.String", 1232, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEnd_.connections_", 4040663157, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1248, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEnd_.delayType_", 2771353407, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1280, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEnd_.delayTime_", 2271754028, "float", 1284, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEnd_.delayMaxTime_", 439129750, "float", 1288, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartEffectStart_.pinName_", 3025945402, "Base.String", 1312, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartEffectStart_.name_", 1392535109, "Base.String", 1328, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartEffectStart_.connections_", 2622423645, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1344, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartEffectStart_.delayType_", 3844056343, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1376, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartEffectStart_.delayTime_", 1428498900, "float", 1380, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartEffectStart_.delayMaxTime_", 3772881710, "float", 1384, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEndEffectStart_.pinName_", 2748209913, "Base.String", 1408, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEndEffectStart_.name_", 2093406276, "Base.String", 1424, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEndEffectStart_.connections_", 1820458490, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1440, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEndEffectStart_.delayType_", 1374701160, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1472, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEndEffectStart_.delayTime_", 4020981795, "float", 1476, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleEndEffectStart_.delayMaxTime_", 1419687003, "float", 1480, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterDie_.pinName_", 1238262801, "Base.String", 1504, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterDie_.name_", 4185481164, "Base.String", 1520, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterDie_.connections_", 3982091858, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1536, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterDie_.delayType_", 4215476784, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1568, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterDie_.delayTime_", 61007131, "float", 1572, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterDie_.delayMaxTime_", 4074049731, "float", 1576, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneTeamAllDie_.pinName_", 701195943, "Base.String", 1600, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneTeamAllDie_.name_", 2433424786, "Base.String", 1616, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneTeamAllDie_.connections_", 1267940864, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1632, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("outOneTeamAllDie_.delayType_", 3318688982, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1664, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneTeamAllDie_.delayTime_", 1935135969, "float", 1668, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneTeamAllDie_.delayMaxTime_", 224303997, "float", 1672, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterRage_.pinName_", 502856348, "Base.String", 1696, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterRage_.name_", 2442306311, "Base.String", 1712, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterRage_.connections_", 2850060615, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1728, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterRage_.delayType_", 240010689, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1760, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterRage_.delayTime_", 397622710, "float", 1764, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOneMonsterRage_.delayMaxTime_", 54508444, "float", 1768, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartFailed_.pinName_", 1020728642, "Base.String", 1792, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartFailed_.name_", 2144002301, "Base.String", 1808, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartFailed_.connections_", 1249340933, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1824, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartFailed_.delayType_", 4068355727, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 1856, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartFailed_.delayTime_", 3071619580, "float", 1860, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outBattleStartFailed_.delayMaxTime_", 2378687846, "float", 1864, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("layoutCharacterOutput_.pinName_", 2986854943, "Base.String", 1888, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("layoutCharacterOutput_.name_", 3150140282, "Base.String", 1904, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("layoutCharacterOutput_.connections_", 653291928, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1920, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("layoutCharacterOutput_.pinValueType_", 1896645187, "Base.String", 1952, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("loseTeamIdxPin_.pinName_", 3679554955, "Base.String", 1976, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("loseTeamIdxPin_.name_", 2403490246, "Base.String", 1992, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("loseTeamIdxPin_.connections_", 3966300028, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2008, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("loseTeamIdxPin_.pinValueType_", 1463924767, "Base.String", 2040, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("rageCharacterPin_.pinName_", 3669127274, "Base.String", 2064, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("rageCharacterPin_.name_", 437514229, "Base.String", 2080, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("rageCharacterPin_.connections_", 1928614253, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 2096, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("rageCharacterPin_.pinValueType_", 3685086332, "Base.String", 2128, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            fieldProperties.AddProperty(new Property("okPin_", 1024220315, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 176, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("groupA1Pin_", 2278938306, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 264, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("groupB1Pin_", 3674081789, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 352, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("groupC1Pin_", 4047089092, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 440, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("groupD1Pin_", 387324551, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 528, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("restTimePin_", 1054440470, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 616, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("swfOkInFixID_", 2515263553, "SQEX.Ebony.Std.Fixid", 704, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("swfOkOutFixID_", 2901357672, "SQEX.Ebony.Std.Fixid", 708, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("swfOkDecideFixID_", 1099403794, "SQEX.Ebony.Std.Fixid", 712, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("swfOkFocusFixID_", 3732784084, "SQEX.Ebony.Std.Fixid", 716, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("swfOkTextFieldFixID_", 1358760885, "SQEX.Ebony.Std.Fixid", 720, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("swfrestTimeTextFieldFixID_", 2199933118, "SQEX.Ebony.Std.Fixid", 724, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 728, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("inBattleStartEffectEnd_", 2703451843, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 824, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("inRageEffectEnd_", 1817838880, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 920, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("inBattleEndStartEnd_", 1796570533, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 1016, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("out_", 1514340864, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1112, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("outBattleEnd_", 1097117047, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1208, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("outBattleStartEffectStart_", 1990938223, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1304, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("outBattleEndEffectStart_", 2237304702, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1400, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("outOneMonsterDie_", 812210310, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1496, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("outOneTeamAllDie_", 3363351848, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1592, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("outOneMonsterRage_", 1817105373, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1688, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("outBattleStartFailed_", 2188696391, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 1784, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("layoutCharacterOutput_", 1482700400, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 1880, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("loseTeamIdxPin_", 2773861060, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 1968, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("rageCharacterPin_", 649021503, "SQEX.Ebony.Framework.Node.GraphVariableOutputPin", 2056, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("battleTimeLimit_", 3226506350, "float", 2144, 4, 1, Property.PrimitiveType.Float, 0, (char)0));


            return(fieldProperties);
        }
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Entity.Render.TubeLightEntity", base.GetFieldProperties(), 1955393733, -1741382911);

            fieldProperties.AddIndirectlyProperty(new Property("position_", 987254735, "Luminous.Math.VectorA", 80, 16, 1, Property.PrimitiveType.Vector4, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("rotation_", 36328192, "Luminous.Math.VectorA", 96, 16, 1, Property.PrimitiveType.Vector4, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("entitySearchLabelId_", 3840219358, "SQEX.Ebony.Std.Fixid", 112, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("enabled_", 1722022099, "bool", 256, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("mayaLightDirection_", 670431381, "bool", 257, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("diffuseOnly_", 1220725680, "bool", 258, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("smoothFalloff_", 181256924, "bool", 259, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("weatherType_", 601680828, "Black.Entity.Render.LightEntityBase.LIGHT_WEATHER_TYPE", 260, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("color_", 3572781317, "Luminous.RenderInterface.Color", 272, 16, 1, Property.PrimitiveType.Color, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("intensity_", 1363281103, "float", 288, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("intensityEV_", 2764622858, "float", 292, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("radius_", 2286360452, "float", 296, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("specRadius_", 1598061993, "float", 300, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("range_", 1969734135, "float", 304, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("roughnessModifier_", 2915097229, "float", 308, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("counterExposure_", 32373431, "bool", 312, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowEnabled_", 3882039727, "bool", 313, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowResolution_", 1208541428, "int", 316, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowZNear_", 2446145452, "float", 320, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowZBias_", 2446539005, "float", 324, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowSlopeBias_", 2830696338, "float", 328, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowPower_", 2925680519, "float", 332, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowPowerHair_", 1876796191, "float", 336, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("saoTerm_", 711051605, "float", 340, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("chrOnlyShadow_", 75793315, "bool", 344, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("chrAndDBGShadow_", 177070405, "bool", 345, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowMode_", 2110126163, "Black.Entity.Render.LightEntityBase.SHADOW_MODE", 348, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowWarpEnabled_", 3628345333, "bool", 352, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowAutoResize_", 1698562339, "bool", 353, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowEnableMaxAngle_", 4240660008, "bool", 354, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowMaxAngle_", 4000503973, "float", 356, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowLODOffset_", 587801504, "int", 360, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowCullingMaxObjectSize_", 2911680222, "float", 364, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("useCharacterExclusionMask_", 1003605162, "bool", 368, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("excludeNoctis_", 1273413026, "bool", 369, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("excludeGladiolus_", 859002622, "bool", 370, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("excludeIgnis_", 325665498, "bool", 371, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("excludePrompto_", 540962741, "bool", 372, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("excludeNoctisChildhood_", 2725747152, "bool", 373, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("bakeStaticShadowMap_", 1082345933, "bool", 374, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("sourceDirectory_", 2687263660, "Ebony.Base.String", 376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("sourceFileName_", 1506120470, "Ebony.Base.String", 392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("projectionSourcePath_", 4247085131, "Ebony.Base.String", 408, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("projectionTextureScale_", 1395228132, "float", 424, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("projectionTextureScroll_", 1539060583, "Luminous.Math.VectorA", 432, 16, 1, Property.PrimitiveType.Vector4, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("caustics_", 984425753, "bool", 448, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("iesSourcePath_", 1320969163, "Ebony.Base.String", 456, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("iesData_", 896790613, "Ebony.Base.String", 472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("volLightEnabled_", 308339756, "bool", 488, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("volLightIntensity_", 2359384144, "float", 492, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("volLightDistantIntensity_", 1545324381, "float", 496, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("volLightZOffset_", 2307886776, "float", 500, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("lpvEnabled_", 2490550915, "bool", 504, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("vsglEnabled_", 3587658515, "bool", 505, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isEnabledOnOffByTime_", 1181927813, "bool", 506, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("timeOfDayLightStart_", 3250156230, "float", 508, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("timeOfDayLightEnd_", 3094197601, "float", 512, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("transitionWorldSecLight_", 779957570, "float", 516, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isEnabledLOD_", 457062662, "bool", 520, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("onOffDistance_", 1015230423, "float", 524, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("transitionDistanceLight_", 3862046468, "float", 528, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("transitionLightEV_", 3773278470, "float", 532, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isShadowEnabledOnOffByDistance_", 2257243679, "bool", 536, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("shadowOnOffDistance_", 2964819171, "float", 540, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("transitionRadiusShadow_", 256202897, "float", 544, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("renderDebug_", 4286953853, "bool", 548, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));


            fieldProperties.AddProperty(new Property("tubeWidth_", 4081876266, "float", 832, 4, 1, Property.PrimitiveType.Float, 0, (char)0));


            return(fieldProperties);
        }
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Action.Actor.SequenceActionActorTalkArea", base.GetFieldProperties(), 956906931, 1160716848);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createIPin_.pinName_", 3551223363, "Base.String", 192, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createIPin_.name_", 3349266414, "Base.String", 208, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createIPin_.connections_", 2475765556, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 224, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("createIPin_.delayType_", 4281643674, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 256, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createIPin_.delayTime_", 945451117, "float", 260, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("createIPin_.delayMaxTime_", 562537465, "float", 264, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("destroyIPin_.pinName_", 1420729963, "Base.String", 288, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("destroyIPin_.name_", 3233828070, "Base.String", 304, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("destroyIPin_.connections_", 2800434844, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 320, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("destroyIPin_.delayType_", 3048166866, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 352, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("destroyIPin_.delayTime_", 558672853, "float", 356, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("destroyIPin_.delayMaxTime_", 230408433, "float", 360, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("centralTalkActorIPin_.pinName_", 1816163235, "Base.String", 384, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("centralTalkActorIPin_.name_", 2754309262, "Base.String", 400, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("centralTalkActorIPin_.connections_", 3353961684, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 416, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("centralTalkActorIPin_.pinValueType_", 2280355591, "Base.String", 448, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("talkActorIPin_.pinName_", 3694959438, "Base.String", 472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("talkActorIPin_.name_", 4233934729, "Base.String", 488, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("talkActorIPin_.connections_", 958565113, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 504, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("talkActorIPin_.pinValueType_", 1876243840, "Base.String", 536, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("areaPositionIPin_.pinName_", 4176149005, "Base.String", 560, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("areaPositionIPin_.name_", 593688472, "Base.String", 576, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("areaPositionIPin_.connections_", 478852662, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 592, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("areaPositionIPin_.pinValueType_", 3364069085, "Base.String", 624, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("areaRadiusIPin_.pinName_", 3095178916, "Base.String", 648, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("areaRadiusIPin_.name_", 964932351, "Base.String", 664, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("areaRadiusIPin_.connections_", 1003481391, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 680, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("areaRadiusIPin_.pinValueType_", 1256220994, "Base.String", 712, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOPin_.pinName_", 1405317967, "Base.String", 736, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOPin_.name_", 905973034, "Base.String", 752, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOPin_.connections_", 1748885416, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 768, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("outOPin_.delayType_", 4113451438, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 800, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOPin_.delayTime_", 2958417769, "float", 804, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outOPin_.delayMaxTime_", 4252974549, "float", 808, 4, 1, Property.PrimitiveType.Float, 0, (char)0));


            fieldProperties.AddProperty(new Property("createIPin_", 178093420, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 184, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("destroyIPin_", 2995154724, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 280, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("centralTalkActorIPin_", 2310711372, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 376, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("talkActorIPin_", 1064239323, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 464, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("areaPositionIPin_", 593711514, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 552, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("areaRadiusIPin_", 3054193397, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 640, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("outOPin_", 3584478464, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 728, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("areaType_", 3864051017, "Black.Sequence.Action.Actor.SequenceActionActorTalkArea.AreaType", 824, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddProperty(new Property("isFollowCentralTalkActor_", 1964212117, "bool", 828, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));


            return(fieldProperties);
        }
示例#39
0
 public object GetValue(ref PropertyContainer obj)
 {
     return(getter(ref obj));
 }
示例#40
0
 public void SetValue(ref PropertyContainer obj, object value)
 {
     setter(ref obj, value);
 }
示例#41
0
 public object GetValue(ref PropertyContainer obj)
 {
     return getter(ref obj);
 }
示例#42
0
 internal JobManagerTask(Models.JobManagerTask protocolObject)
 {
     this.propertyContainer = new PropertyContainer(protocolObject);
 }
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Control.SequenceActionCameraCallSequenceFixId", base.GetFieldProperties(), -1087765592, 2106339777);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 184, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 216, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 248, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 252, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 256, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stopPin_.pinName_", 2791583880, "Base.String", 280, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stopPin_.name_", 876131683, "Base.String", 296, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stopPin_.connections_", 82978923, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 312, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("stopPin_.delayType_", 4178339557, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 344, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stopPin_.delayTime_", 885190114, "float", 348, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("stopPin_.delayMaxTime_", 162024376, "float", 352, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.pinName_", 1137295951, "Base.String", 376, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.name_", 2182257194, "Base.String", 392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.connections_", 2048532136, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 408, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayType_", 124432558, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 440, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayTime_", 3264366185, "float", 444, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("out_.delayMaxTime_", 456551125, "float", 448, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("lastSceneKeepPin_.pinName_", 4174784049, "Base.String", 472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("lastSceneKeepPin_.name_", 1830104364, "Base.String", 488, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("lastSceneKeepPin_.connections_", 430257330, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 504, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("lastSceneKeepPin_.pinValueType_", 1129328129, "Base.String", 536, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("actorPin_.pinName_", 61679437, "Base.String", 560, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("actorPin_.name_", 700809432, "Base.String", 576, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("actorPin_.connections_", 2962364278, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 592, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("actorPin_.pinValueType_", 2807496477, "Base.String", 624, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("actor2Pin_.pinName_", 1323393303, "Base.String", 648, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("actor2Pin_.name_", 1924869762, "Base.String", 664, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("actor2Pin_.connections_", 1666705232, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 680, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("actor2Pin_.pinValueType_", 3428630155, "Base.String", 712, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("vector1Pin_.pinName_", 2286986660, "Base.String", 736, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("vector1Pin_.name_", 4241373183, "Base.String", 752, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("vector1Pin_.connections_", 2796310575, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 768, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("vector1Pin_.pinValueType_", 2211876418, "Base.String", 800, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("float1Pin_.pinName_", 94714147, "Base.String", 824, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("float1Pin_.name_", 1010355470, "Base.String", 840, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("float1Pin_.connections_", 3056927316, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 856, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("float1Pin_.pinValueType_", 687105927, "Base.String", 888, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("int1Pin_.pinName_", 469899584, "Base.String", 912, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("int1Pin_.name_", 2077527339, "Base.String", 928, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("int1Pin_.connections_", 1336673379, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 944, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("int1Pin_.pinValueType_", 691697694, "Base.String", 976, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("commandSetPin_.pinName_", 1870865333, "Base.String", 1000, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("commandSetPin_.name_", 90170864, "Base.String", 1016, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("commandSetPin_.connections_", 658608702, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1032, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("commandSetPin_.pinValueType_", 3944918773, "Base.String", 1064, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("functionIdPin_.pinName_", 2475365331, "Base.String", 1088, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("functionIdPin_.name_", 2969716926, "Base.String", 1104, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("functionIdPin_.connections_", 647484324, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1120, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("functionIdPin_.pinValueType_", 245429623, "Base.String", 1152, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            fieldProperties.AddProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 176, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("stopPin_", 2226130577, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 272, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("out_", 1514340864, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 368, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("lastSceneKeepPin_", 2018536486, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 464, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("actorPin_", 3381458010, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 552, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("actor2Pin_", 3478505912, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 640, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("vector1Pin_", 1087191029, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 728, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("float1Pin_", 467152076, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 816, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("int1Pin_", 554980921, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 904, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("commandSetPin_", 1145493554, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 992, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("functionIdPin_", 671966172, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1080, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddProperty(new Property("functionId_", 1155714377, "SQEX.Ebony.Std.Fixid", 1168, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("lastSceneKeep_", 18242379, "bool", 1172, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));


            return(fieldProperties);
        }
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.Sequence.Event.Menu.Executor.SequenceEventInteractionCursorDisplayExecutor", base.GetFieldProperties(), 596519276, -527938448);

            fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
            fieldProperties.AddIndirectlyProperty(new Property("outPin_", 2732252299, "SQEX.Ebony.Framework.Node.GraphTriggerOutputPin", 176, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outPin_.pinName_", 1767361694, "Base.String", 184, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outPin_.name_", 2948420441, "Base.String", 200, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outPin_.connections_", 78281129, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 216, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("outPin_.delayType_", 2315115539, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 248, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outPin_.delayTime_", 2421045752, "float", 252, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("outPin_.delayMaxTime_", 3973394610, "float", 256, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin0_", 1260278025, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 384, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin0_.pinName_", 378112624, "Base.String", 392, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin0_.name_", 387472539, "Base.String", 408, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin0_.connections_", 977417523, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 424, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("pin0_.pinValueType_", 934546126, "Base.String", 456, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin1_", 1260425120, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 472, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin1_.pinName_", 2142000239, "Base.String", 480, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin1_.name_", 905090058, "Base.String", 496, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin1_.connections_", 2464003080, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 512, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("pin1_.pinValueType_", 3289933587, "Base.String", 544, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin2_", 186804599, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 560, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin2_.pinName_", 2460956818, "Base.String", 568, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin2_.name_", 4048616205, "Base.String", 584, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin2_.connections_", 2450805877, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 600, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("pin2_.pinValueType_", 3805326452, "Base.String", 632, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin3_", 1260719310, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 648, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin3_.pinName_", 1331177705, "Base.String", 656, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin3_.name_", 1358091572, "Base.String", 672, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin3_.connections_", 1823137930, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 688, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("pin3_.pinValueType_", 2110630761, "Base.String", 720, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin4_", 1259586477, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 736, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin4_.pinName_", 475240524, "Base.String", 744, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin4_.name_", 4286371831, "Base.String", 760, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin4_.connections_", 3976354263, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 776, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("pin4_.pinValueType_", 74423930, "Base.String", 808, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin5_", 1259733572, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 824, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin5_.pinName_", 3161314315, "Base.String", 832, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin5_.name_", 1510251846, "Base.String", 848, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin5_.connections_", 4070776316, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 864, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("pin5_.pinValueType_", 2765679519, "Base.String", 896, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin6_", 186216219, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 912, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin6_.pinName_", 930225934, "Base.String", 920, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin6_.name_", 4045414473, "Base.String", 936, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin6_.connections_", 221795001, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 952, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("pin6_.pinValueType_", 116915520, "Base.String", 984, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin7_", 186363314, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 1000, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin7_.pinName_", 1470745653, "Base.String", 1008, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin7_.name_", 2816610160, "Base.String", 1024, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("pin7_.connections_", 189416126, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 1040, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("pin7_.pinValueType_", 1691388021, "Base.String", 1072, 16, 1, Property.PrimitiveType.String, 0, (char)0));


            fieldProperties.AddProperty(new Property("offsetCampAreaEff_", 3456909386, "float", 1088, 4, 1, Property.PrimitiveType.Float, 0, (char)0));


            return(fieldProperties);
        }
示例#45
0
        protected override PropertyContainer GetFieldProperties()
        {
            if (fieldProperties != null)
            {
                return(fieldProperties);
            }

            fieldProperties = new PropertyContainer("Black.System.TimeLine.TrackItem.Camera.CharaRelativeCameraTrackItem", base.GetFieldProperties(), 209008462, -1315130045);

            fieldProperties.AddIndirectlyProperty(new Property("name_", 182823483, "Ebony.Base.String", 8, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("startTime_", 140908163, "float", 24, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("duration_", 1282328598, "float", 28, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("blendRate_", 930283391, "float", 136, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("startInterpTime_", 1816728177, "float", 140, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("endInterpTime_", 654645938, "float", 144, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curveList_", 1657928633, "SQEX.Ebony.Framework.TimeControl.CurveList", 152, 24, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("curveList_.propertyList_", 3952472237, "SQEX.Ebony.Std.DynamicArray< AnchorReferenceValue* >", 160, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)2));
            fieldProperties.AddIndirectlyProperty(new Property("sourcePath_", 341055184, "Ebony.Base.String", 176, 16, 1, Property.PrimitiveType.String, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("totalBaseFrame_", 296522182, "float", 192, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isLoop_", 2814623788, "bool", 196, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("speed_", 1253745677, "float", 200, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("startFrame_", 4140515073, "float", 204, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("endFrame_", 616391468, "float", 208, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isEventSeamless_", 891408881, "bool", 212, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isInGameStateWhenSeamlessOut_", 1465141247, "bool", 213, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpMode_", 2284664936, "Black.Camera.SeamlessInterpMode", 216, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneReleaseMode_", 4190490874, "Black.Camera.SeamlessInterpCloneReleaseMode", 220, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneAutoReleaseTime_", 2087610095, "float", 224, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessCloneData_", 2316245948, "Black.System.TimeLine.TrackItem.Camera.Struct.InGameCameraSeamlessClone", 232, 40, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessCloneData_.backToSeamlessCloneReleasePreset_", 3120552147, "Black.Camera.SeamlessCloneReleasePreset", 240, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessCloneData_.backToNormalCoordInterpType_", 3403636263, "Black.Camera.CoordInterpType", 244, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessCloneData_.backToNormalInterpTime_", 4144128153, "float", 248, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessCloneData_.backToNormalCameraTime1_", 3160556957, "float", 252, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessCloneData_.backToNormalCameraTime2_", 3161101410, "float", 256, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessCloneData_.backToNormalCameraAccel_", 3622663437, "float", 260, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessCloneData_.backToNormalInterpBlendMode_", 2898852708, "SQEX.Ebony.Framework.TimeControl.InterpMode", 264, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_", 1610712634, "Black.Camera.Struct.CameraControlTurn", 272, 56, 1, Property.PrimitiveType.ClassField, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.mode", 2681368415, "Black.Camera.Struct.CameraControlTurnMode", 280, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.isUseAutoAdjustMode_", 611056217, "bool", 284, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.isUseAutoAdjustAngleMode_", 605917074, "bool", 285, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.isUseDefaultBrakeParam_", 548349285, "bool", 286, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.controlTurnVelocity_", 704547078, "float", 288, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.backToDefaultTurnVelocity_", 751408456, "float", 292, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.yawMin_", 2430385706, "float", 296, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.yawMax_", 4157068320, "float", 300, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.tiltMin_", 476074694, "float", 304, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.tiltMax_", 1933546388, "float", 308, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.brakeAngleYaw_", 2349836770, "float", 312, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.brakePowerYaw_", 3596967148, "float", 316, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.brakeAngleTilt_", 2040184334, "float", 320, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpCloneControlTurn_.brakePowerTilt_", 4278192792, "float", 324, 4, 1, Property.PrimitiveType.Float, 0, (char)1));
            fieldProperties.AddIndirectlyProperty(new Property("isUseDefaultAngleLimitTiltAtEventSeamless_", 3153703281, "bool", 328, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpAngleLimitTiltMin_", 3922170044, "float", 332, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("seamlessInterpAngleLimitTiltMax_", 3275654686, "float", 336, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("isSeamlessInterpCheckCollision_", 3021459793, "bool", 340, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("collisionOpt_.rayLength_", 2587782192, "float", 416, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("collisionOpt_.rayOptionalFov_", 1310940347, "float", 420, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
            fieldProperties.AddIndirectlyProperty(new Property("collisionOpt_.rayOptionalY_", 4132920575, "float", 424, 4, 1, Property.PrimitiveType.Float, 0, (char)0));


            fieldProperties.AddProperty(new Property("isAddPog_", 3699576207, "bool", 344, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("isAddPov_", 3702386326, "bool", 345, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("isAddUp_", 3544180066, "bool", 346, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("baseElementId_", 630624006, "SQEX.Ebony.Std.Fixid", 348, 4, 1, Property.PrimitiveType.Fixid, 0, (char)0));
            fieldProperties.AddProperty(new Property("isCalcTilt_", 3159764420, "bool", 352, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("isCalcRoll_", 4201800344, "bool", 353, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("bIsAttach_", 3675418929, "bool", 354, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("relativeOffset_", 2366110807, "SQEX.Luminous.Math.VectorA", 368, 16, 1, Property.PrimitiveType.Vector4, 0, (char)0));
            fieldProperties.AddProperty(new Property("relativeRotation_", 1396190808, "SQEX.Luminous.Math.VectorA", 384, 16, 1, Property.PrimitiveType.Vector4, 0, (char)0));
            fieldProperties.AddProperty(new Property("isCheckCollision_", 1357258370, "bool", 400, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
            fieldProperties.AddProperty(new Property("collisionOpt_", 2405266377, "Black.System.TimeLine.TrackItem.Camera.Struct.CharaRelativeCameraCollision", 408, 24, 1, Property.PrimitiveType.ClassField, 0, (char)0));


            return(fieldProperties);
        }
示例#46
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ComponentBase"/> class.
 /// </summary>
 /// <param name="name">The name attached to this component</param>
 protected ComponentBase(string name)
 {
     collector = new ObjectCollector();
     Tags = new PropertyContainer(this);
     Name = name ?? GetType().Name;
 }