TreeEditor.TreeGroup.TreeGroup C# (CSharp) Method

TreeGroup() public method

public TreeGroup ( ) : System
return System
        public TreeGroup()
        {
            Keyframe[] keys = new Keyframe[] { new Keyframe(0f, 1f), new Keyframe(1f, 1f) };
            this.distributionCurve = new AnimationCurve(keys);
            this.distributionNodes = 5;
            this.distributionTwirl = 0f;
            this.distributionPitch = 0f;
            Keyframe[] keyframeArray2 = new Keyframe[] { new Keyframe(0f, 1f), new Keyframe(1f, 1f) };
            this.distributionPitchCurve = new AnimationCurve(keyframeArray2);
            this.distributionScale = 1f;
            Keyframe[] keyframeArray3 = new Keyframe[] { new Keyframe(0f, 1f), new Keyframe(1f, 0.3f) };
            this.distributionScaleCurve = new AnimationCurve(keyframeArray3);
            this.showAnimationProps = true;
            this.animationPrimary = 0.5f;
            this.animationSecondary = 0.5f;
            this.animationEdge = 1f;
            this.visible = true;
            this.lockFlags = 0;
            this.nodeIDs = new int[0];
            this.parentGroupID = -1;
            this.childGroupIDs = new int[0];
            this.nodes = new List<TreeNode>();
            this.parentGroup = null;
            this.childGroups = new List<TreeGroup>();
        }