a.spritestudio.attribute.AttributeBase.AttributeBase C# (CSharp) Method

AttributeBase() public method

public AttributeBase ( Target target, int intValue, float floatValue, bool boolValue, string stringValue = null ) : System.Collections
target Target
intValue int
floatValue float
boolValue bool
stringValue string
return System.Collections
        public AttributeBase( Target target, int[] intValue, float[] floatValue, bool[] boolValue, string[] stringValue = null )
        {
            target_ = target;
            intValues_ = intValue;
            floatValues_ = floatValue;
            boolValues_ = boolValue;
            stringValues_ = stringValue;
        }