Package | alternativa.engine3d.core.events |
Class | public class Event3D |
Inheritance | Event3D ![]() |
Subclasses | MouseEvent3D |
Property | Defined By | ||
---|---|---|---|
bubbles : Boolean [override] [read-only]
Indicates whether an event is a bubbling event. | Event3D | ||
currentTarget : Object [override] [read-only]
The object that is actively processing the Event object with an event listener. | Event3D | ||
eventPhase : uint [override] [read-only]
The current phase in the event flow. | Event3D | ||
target : Object [override] [read-only]
The event target. | Event3D |
Method | Defined By | ||
---|---|---|---|
Event3D(type:String, bubbles:Boolean = true)
This class should be used as base class for all events, which can have Object3D as an event target. | Event3D | ||
clone():Event [override]
Duplicates an instance of an Event subclass. | Event3D | ||
stopImmediatePropagation():void [override]
Prevents processing of any event listeners in the current node and any subsequent nodes in the event flow. | Event3D | ||
stopPropagation():void [override]
Prevents processing of any event listeners in nodes subsequent to the current node in the event flow. | Event3D | ||
toString():String [override]
Returns a string containing all the properties of the Event3D object. | Event3D |
Constant | Defined By | ||
---|---|---|---|
ADDED : String = added3D [static]
Defines the value of the type property of a added event object. | Event3D | ||
REMOVED : String = removed3D [static]
Defines the value of the type property of a removed event object. | Event3D |
bubbles | property |
bubbles:Boolean
[read-only] [override]
Indicates whether an event is a bubbling event. If the event can bubble, this value is true
; otherwise it is false
.
public function get bubbles():Boolean
currentTarget | property |
currentTarget:Object
[read-only] [override] The object that is actively processing the Event object with an event listener.
public function get currentTarget():Object
eventPhase | property |
eventPhase:uint
[read-only] [override] The current phase in the event flow.
public function get eventPhase():uint
target | property |
target:Object
[read-only] [override] The event target. This property contains the target node.
public function get target():Object
Event3D | () | Constructor |
public function Event3D(type:String, bubbles:Boolean = true)
This class should be used as base class for all events, which can have Object3D
as an event target.
type:String | |
bubbles:Boolean (default = true )
|
clone | () | method |
override public function clone():Event
Duplicates an instance of an Event subclass.
Returns a new Event3D
object that is a copy of the original instance of the Event
object.
Event — A new Event3D object that is identical to the original.
|
stopImmediatePropagation | () | method |
override public function stopImmediatePropagation():void
Prevents processing of any event listeners in the current node and any subsequent nodes in the event flow.
stopPropagation | () | method |
override public function stopPropagation():void
Prevents processing of any event listeners in nodes subsequent to the current node in the event flow.
Does not affect on receiving events in listeners of (currentTarget
).
toString | () | method |
override public function toString():String
Returns a string containing all the properties of the Event3D
object.
String — A string containing all the properties of the Event3D object
|
ADDED | Constant |
public static const ADDED:String = added3D
Defines the value of the type
property of a added
event object.
REMOVED | Constant |
public static const REMOVED:String = removed3D
Defines the value of the type
property of a removed
event object.