/// <summary> /// コンストラクタ /// </summary> internal Node(NodeBase parent) : base(parent) { Name.SetValueDirectly("Node"); CommonValues = new Data.CommonValues(); LocationValues = new Data.LocationValues(); RotationValues = new Data.RotationValues(); ScalingValues = new Data.ScaleValues(); LocationAbsValues = new Data.LocationAbsValues(); GenerationLocationValues = new Data.GenerationLocationValues(); RendererCommonValues = new Data.RendererCommonValues(); DrawingValues = new RendererValues(); SoundValues = new SoundValues(); }
/// <summary> /// コンストラクタ /// </summary> internal Node(NodeBase parent) : base(parent) { Name.SetValueDirectly("Node"); CommonValues = new Data.CommonValues(); LocationValues = new Data.LocationValues(); RotationValues = new Data.RotationValues(); ScalingValues = new Data.ScaleValues(); LocationAbsValues = new Data.LocationAbsValues(); GenerationLocationValues = new Data.GenerationLocationValues(); DepthValues = new DepthValues(); RendererCommonValues = new Data.RendererCommonValues(); DrawingValues = new RendererValues(); SoundValues = new SoundValues(); #if __EFFEKSEER_BUILD_VERSION16__ AdvancedRendererCommonValuesValues = new Data.AdvancedRenderCommonValues(); #endif }
/// <summary> /// コンストラクタ /// </summary> internal Node(NodeBase parent) : base(parent) { Path basepath = GetRoot().GetPath(); Name.SetValueDirectly("Node"); CommonValues = new Data.CommonValues(); LocationValues = new Data.LocationValues(basepath); RotationValues = new Data.RotationValues(); ScalingValues = new Data.ScaleValues(); LocationAbsValues = new Data.LocationAbsValues(); GenerationLocationValues = new Data.GenerationLocationValues(basepath); DepthValues = new DepthValues(); RendererCommonValues = new Data.RendererCommonValues(basepath); DrawingValues = new RendererValues(basepath); SoundValues = new SoundValues(basepath); AdvancedRendererCommonValuesValues = new Data.AdvancedRenderCommonValues(basepath); }