示例#1
0
 public DirectionHandler(SceneHandlerAttribute attribute) : base(attribute)
 {
     DAttribute      = attribute as DirectionHandlerAttribute;
     DynamicMultiple = 1;
 }
示例#2
0
 public BoundsHandler(SceneHandlerAttribute attribute) : base(attribute)
 {
     BAttribute   = attribute as BoundsHandlerAttribute;
     BoundsHandle = new BoxBoundsHandle();
 }
示例#3
0
 public RadiusHandler(SceneHandlerAttribute attribute) : base(attribute)
 {
     RAttribute = attribute as RadiusHandlerAttribute;
 }
示例#4
0
 public MoveHandler(SceneHandlerAttribute attribute) : base(attribute)
 {
     MAttribute = attribute as MoveHandlerAttribute;
 }
示例#5
0
 public FieldSceneHandler(SceneHandlerAttribute attribute)
 {
     SAttribute = attribute;
 }
示例#6
0
 public CircleAreaHandler(SceneHandlerAttribute attribute) : base(attribute)
 {
     CAttribute      = attribute as CircleAreaHandlerAttribute;
     Rotation        = GetRotation();
     DynamicMultiple = 1;
 }