@@ -49,6 +49,15 @@ var SceneInputManager = new Class({
4949 // draggable: A list of all Interactive Objects that are set to be draggable (a subset of list)
5050 // over: A list of all Interactive Objects currently considered as being 'over' by any pointer, indexed by pointer ID
5151 // down: A list of all Interactive Objects currently considered as being 'down' by any pointer, indexed by pointer ID
52+ this . children = {
53+ size : 0 ,
54+ list : [ ] ,
55+ pendingInsertion : [ ] ,
56+ pendingRemoval : [ ] ,
57+ over : { 0 : [ ] , 1 : [ ] , 2 : [ ] , 3 : [ ] , 4 : [ ] , 5 : [ ] , 6 : [ ] , 7 : [ ] , 8 : [ ] , 9 : [ ] }
58+ } ;
59+
60+ /*
5261 this.children = {
5362 size: 0,
5463 list: [],
@@ -58,6 +67,7 @@ var SceneInputManager = new Class({
5867 over: { 0: [], 1: [], 2: [], 3: [], 4: [], 5: [], 6: [], 7: [], 8: [], 9: [] },
5968 down: { 0: [], 1: [], 2: [], 3: [], 4: [], 5: [], 6: [], 7: [], 8: [], 9: [] }
6069 };
70+ */
6171
6272 this . _validTypes = [ 'onDown' , 'onUp' , 'onOver' , 'onOut' , 'onMove' ] ;
6373 } ,
@@ -99,10 +109,10 @@ var SceneInputManager = new Class({
99109 processDownEvents : require ( './components/ProcessDownEvents' ) ,
100110 processUpEvents : require ( './components/ProcessUpEvents' ) ,
101111 processMoveEvents : require ( './components/ProcessMoveEvents' ) ,
102- childOnOut : require ( './components/ChildOnOut' ) ,
103- childOnOver : require ( './components/ChildOnOver' ) ,
104- childOnDown : require ( './components/ChildOnDown' ) ,
105- childOnUp : require ( './components/ChildOnUp' ) ,
112+ // childOnOut: require('./components/ChildOnOut'),
113+ // childOnOver: require('./components/ChildOnOver'),
114+ // childOnDown: require('./components/ChildOnDown'),
115+ // childOnUp: require('./components/ChildOnUp'),
106116 sortInteractiveObjects : require ( './components/SortInteractiveObjects' ) ,
107117 sortIndexHandler : require ( './components/SortIndexHandler' ) ,
108118
0 commit comments