You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.textile
+20-10Lines changed: 20 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,33 +31,43 @@ Features:
31
31
32
32
33
33
34
-
h3. Current state of the project
34
+
h3. Getting Started
35
35
36
-
v0.3 introduces "new architecture". I'm planning to develop everything in develop branch and merge to master only release versions. Release versions suppose to be pretty stable. As much as I test them on the examples project.
37
-
Current plan is to fix possible bugs in v0.3.#, and I really want to introduce Stage3D support in v0.4. So watch both branches.
38
-
And I hope people to become giving some real feedback at least.
36
+
All gestures dispatch (if you listen) GestureEvent with the next types:
37
+
GestureEvent.GESTURE_STATE_CHANGE
38
+
GestureEvent.GESTURE_IDLE
39
+
GestureEvent.GESTURE_POSSIBLE
40
+
GestureEvent.GESTURE_FAILED
39
41
42
+
Discrete gestures also dispatch:
43
+
GestureEvent.GESTURE_RECOGNIZED
40
44
45
+
Continuous gestures also dispatch:
46
+
GestureEvent.GESTURE_BEGAN
47
+
GestureEvent.GESTURE_CHANGED
48
+
GestureEvent.GESTURE_ENDED
41
49
42
-
h3. Getting Started
50
+
If you use a good IDE (such as Intellij IDEA, FDT, FlashDevelop, Flash Builder) you should see these events in autocompletion.
43
51
44
-
Like so:
52
+
Quick start:
45
53
<pre><code>var doubleTap:TapGesture = new TapGesture(myButton);
0 commit comments