motion-game 1.1.6 → 1.1.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +120 -0
  3. data/build/android/armeabi/libmotion-cocos.a +0 -0
  4. data/build/android/motion-cocos.jar +0 -0
  5. data/build/android/x86/libmotion-cocos.a +0 -0
  6. data/build/ios/libmotion-cocos.a +0 -0
  7. data/build/tvos/libmotion-cocos.a +0 -0
  8. data/doc/API_reference.rb +1407 -0
  9. data/doc/MG.html +1 -1
  10. data/doc/MG/Action.html +9 -9
  11. data/doc/MG/Animate.html +4 -4
  12. data/doc/MG/Application.html +5 -5
  13. data/doc/MG/Audio.html +391 -175
  14. data/doc/MG/Blink.html +3 -3
  15. data/doc/MG/Button.html +23 -23
  16. data/doc/MG/Color.html +19 -20
  17. data/doc/MG/DelayTime.html +3 -3
  18. data/doc/MG/Director.html +33 -33
  19. data/doc/MG/Draw.html +11 -11
  20. data/doc/MG/Events.html +1 -1
  21. data/doc/MG/Events/Acceleration.html +17 -17
  22. data/doc/MG/Events/Touch.html +5 -5
  23. data/doc/MG/FadeIn.html +3 -3
  24. data/doc/MG/FadeOut.html +3 -3
  25. data/doc/MG/FadeTo.html +3 -3
  26. data/doc/MG/File.html +3 -3
  27. data/doc/MG/Follow.html +3 -3
  28. data/doc/MG/JumpBy.html +3 -3
  29. data/doc/MG/JumpTo.html +3 -3
  30. data/doc/MG/Layout.html +15 -15
  31. data/doc/MG/List.html +21 -21
  32. data/doc/MG/Menu.html +9 -9
  33. data/doc/MG/MoveBy.html +3 -3
  34. data/doc/MG/MoveTo.html +3 -3
  35. data/doc/MG/Node.html +61 -61
  36. data/doc/MG/Parallax.html +3 -3
  37. data/doc/MG/Particle.html +47 -47
  38. data/doc/MG/Point.html +16 -18
  39. data/doc/MG/Repeat.html +3 -3
  40. data/doc/MG/RepeatForever.html +3 -3
  41. data/doc/MG/RotateBy.html +3 -3
  42. data/doc/MG/RotateTo.html +3 -3
  43. data/doc/MG/ScaleBy.html +3 -3
  44. data/doc/MG/ScaleTo.html +3 -3
  45. data/doc/MG/Scene.html +33 -33
  46. data/doc/MG/Scroll.html +15 -15
  47. data/doc/MG/Sequence.html +3 -3
  48. data/doc/MG/Size.html +19 -20
  49. data/doc/MG/SkewBy.html +3 -3
  50. data/doc/MG/SkewTo.html +3 -3
  51. data/doc/MG/Slider.html +7 -7
  52. data/doc/MG/Spawn.html +3 -3
  53. data/doc/MG/Speed.html +3 -3
  54. data/doc/MG/Sprite.html +189 -67
  55. data/doc/MG/Text.html +31 -31
  56. data/doc/MG/TintBy.html +3 -3
  57. data/doc/MG/TintTo.html +3 -3
  58. data/doc/MG/Web.html +15 -15
  59. data/doc/MG/Widget.html +15 -15
  60. data/doc/_index.html +1 -1
  61. data/doc/file.README.html +4 -2
  62. data/doc/index.html +4 -2
  63. data/doc/method_list.html +181 -141
  64. data/doc/top-level-namespace.html +1 -1
  65. data/lib/motion-game/android.rb +0 -1
  66. metadata +4 -2
data/doc/MG/Point.html CHANGED
@@ -105,11 +105,9 @@
105
105
  <div class="discussion">
106
106
 
107
107
  <p>A point represents a location in a two-dimensional coordinate system using
108
- <code>x</code> and <code>y</code> variables.</p>
109
-
110
- <p>When calling a method that expects a <code>Point</code> object, a 2-element
111
- <code>Array</code> can be passed instead, as a convenience shortcut. For
112
- example,</p>
108
+ <code>x</code> and <code>y</code> variables. When calling a method that
109
+ expects a <code>Point</code> object, a 2-element <code>Array</code> can be
110
+ passed instead, as a convenience shortcut. For example,</p>
113
111
 
114
112
  <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_node'>node</span><span class='period'>.</span><span class='id identifier rubyid_location'>location</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='int'>10</span><span class='comma'>,</span> <span class='int'>20</span><span class='rbracket'>]</span>
115
113
  </code></pre>
@@ -305,12 +303,12 @@ given point object.</p>
305
303
  <pre class="lines">
306
304
 
307
305
 
308
- 1017
309
- 1018
310
- 1019</pre>
306
+ 1042
307
+ 1043
308
+ 1044</pre>
311
309
  </td>
312
310
  <td>
313
- <pre class="code"><span class="info file"># File 'motion-game', line 1017</span>
311
+ <pre class="code"><span class="info file"># File 'motion-game', line 1042</span>
314
312
 
315
313
  <span class='kw'>def</span> <span class='id identifier rubyid_x'>x</span>
316
314
  <span class='ivar'>@x</span>
@@ -366,12 +364,12 @@ given point object.</p>
366
364
  <pre class="lines">
367
365
 
368
366
 
369
- 1020
370
- 1021
371
- 1022</pre>
367
+ 1045
368
+ 1046
369
+ 1047</pre>
372
370
  </td>
373
371
  <td>
374
- <pre class="code"><span class="info file"># File 'motion-game', line 1020</span>
372
+ <pre class="code"><span class="info file"># File 'motion-game', line 1045</span>
375
373
 
376
374
  <span class='kw'>def</span> <span class='id identifier rubyid_y'>y</span>
377
375
  <span class='ivar'>@y</span>
@@ -448,10 +446,10 @@ point object.</p>
448
446
  <pre class="lines">
449
447
 
450
448
 
451
- 1029</pre>
449
+ 1054</pre>
452
450
  </td>
453
451
  <td>
454
- <pre class="code"><span class="info file"># File 'motion-game', line 1029</span>
452
+ <pre class="code"><span class="info file"># File 'motion-game', line 1054</span>
455
453
 
456
454
  <span class='kw'>def</span> <span class='op'>+</span><span class='lparen'>(</span><span class='id identifier rubyid_point'>point</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
457
455
  </td>
@@ -519,10 +517,10 @@ given point object.</p>
519
517
  <pre class="lines">
520
518
 
521
519
 
522
- 1035</pre>
520
+ 1060</pre>
523
521
  </td>
524
522
  <td>
525
- <pre class="code"><span class="info file"># File 'motion-game', line 1035</span>
523
+ <pre class="code"><span class="info file"># File 'motion-game', line 1060</span>
526
524
 
527
525
  <span class='kw'>def</span> <span class='op'>-</span><span class='lparen'>(</span><span class='id identifier rubyid_point'>point</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
528
526
  </td>
@@ -535,7 +533,7 @@ given point object.</p>
535
533
  </div>
536
534
 
537
535
  <div id="footer">
538
- Generated on Sun Nov 27 15:52:19 2016 by
536
+ Generated on Sun Dec 11 16:38:30 2016 by
539
537
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
540
538
  0.9.5 (ruby-2.3.3).
541
539
  </div>
data/doc/MG/Repeat.html CHANGED
@@ -230,10 +230,10 @@ times.</p>
230
230
  <pre class="lines">
231
231
 
232
232
 
233
- 304</pre>
233
+ 309</pre>
234
234
  </td>
235
235
  <td>
236
- <pre class="code"><span class="info file"># File 'motion-game', line 304</span>
236
+ <pre class="code"><span class="info file"># File 'motion-game', line 309</span>
237
237
 
238
238
  <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_target_action'>target_action</span><span class='comma'>,</span> <span class='id identifier rubyid_times'>times</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
239
239
  </td>
@@ -247,7 +247,7 @@ times.</p>
247
247
  </div>
248
248
 
249
249
  <div id="footer">
250
- Generated on Sun Nov 27 15:52:18 2016 by
250
+ Generated on Sun Dec 11 16:38:29 2016 by
251
251
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
252
252
  0.9.5 (ruby-2.3.3).
253
253
  </div>
@@ -212,10 +212,10 @@
212
212
  <pre class="lines">
213
213
 
214
214
 
215
- 315</pre>
215
+ 320</pre>
216
216
  </td>
217
217
  <td>
218
- <pre class="code"><span class="info file"># File 'motion-game', line 315</span>
218
+ <pre class="code"><span class="info file"># File 'motion-game', line 320</span>
219
219
 
220
220
  <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_target_action'>target_action</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
221
221
  </td>
@@ -229,7 +229,7 @@
229
229
  </div>
230
230
 
231
231
  <div id="footer">
232
- Generated on Sun Nov 27 15:52:18 2016 by
232
+ Generated on Sun Dec 11 16:38:29 2016 by
233
233
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
234
234
  0.9.5 (ruby-2.3.3).
235
235
  </div>
data/doc/MG/RotateBy.html CHANGED
@@ -232,10 +232,10 @@ angle determined by the sum of the current rotation and the given
232
232
  <pre class="lines">
233
233
 
234
234
 
235
- 93</pre>
235
+ 98</pre>
236
236
  </td>
237
237
  <td>
238
- <pre class="code"><span class="info file"># File 'motion-game', line 93</span>
238
+ <pre class="code"><span class="info file"># File 'motion-game', line 98</span>
239
239
 
240
240
  <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_delta_angle'>delta_angle</span><span class='comma'>,</span> <span class='id identifier rubyid_interval'>interval</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
241
241
  </td>
@@ -249,7 +249,7 @@ angle determined by the sum of the current rotation and the given
249
249
  </div>
250
250
 
251
251
  <div id="footer">
252
- Generated on Sun Nov 27 15:52:18 2016 by
252
+ Generated on Sun Dec 11 16:38:29 2016 by
253
253
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
254
254
  0.9.5 (ruby-2.3.3).
255
255
  </div>
data/doc/MG/RotateTo.html CHANGED
@@ -230,10 +230,10 @@ by modifying it&#39;s rotation attribute.</p>
230
230
  <pre class="lines">
231
231
 
232
232
 
233
- 106</pre>
233
+ 111</pre>
234
234
  </td>
235
235
  <td>
236
- <pre class="code"><span class="info file"># File 'motion-game', line 106</span>
236
+ <pre class="code"><span class="info file"># File 'motion-game', line 111</span>
237
237
 
238
238
  <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_angle'>angle</span><span class='comma'>,</span> <span class='id identifier rubyid_interval'>interval</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
239
239
  </td>
@@ -247,7 +247,7 @@ by modifying it&#39;s rotation attribute.</p>
247
247
  </div>
248
248
 
249
249
  <div id="footer">
250
- Generated on Sun Nov 27 15:52:18 2016 by
250
+ Generated on Sun Dec 11 16:38:29 2016 by
251
251
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
252
252
  0.9.5 (ruby-2.3.3).
253
253
  </div>
data/doc/MG/ScaleBy.html CHANGED
@@ -228,10 +228,10 @@
228
228
  <pre class="lines">
229
229
 
230
230
 
231
- 118</pre>
231
+ 123</pre>
232
232
  </td>
233
233
  <td>
234
- <pre class="code"><span class="info file"># File 'motion-game', line 118</span>
234
+ <pre class="code"><span class="info file"># File 'motion-game', line 123</span>
235
235
 
236
236
  <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_scale'>scale</span><span class='comma'>,</span> <span class='id identifier rubyid_interval'>interval</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
237
237
  </td>
@@ -245,7 +245,7 @@
245
245
  </div>
246
246
 
247
247
  <div id="footer">
248
- Generated on Sun Nov 27 15:52:18 2016 by
248
+ Generated on Sun Dec 11 16:38:29 2016 by
249
249
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
250
250
  0.9.5 (ruby-2.3.3).
251
251
  </div>
data/doc/MG/ScaleTo.html CHANGED
@@ -228,10 +228,10 @@
228
228
  <pre class="lines">
229
229
 
230
230
 
231
- 130</pre>
231
+ 135</pre>
232
232
  </td>
233
233
  <td>
234
- <pre class="code"><span class="info file"># File 'motion-game', line 130</span>
234
+ <pre class="code"><span class="info file"># File 'motion-game', line 135</span>
235
235
 
236
236
  <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_scale'>scale</span><span class='comma'>,</span> <span class='id identifier rubyid_interval'>interval</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
237
237
  </td>
@@ -245,7 +245,7 @@
245
245
  </div>
246
246
 
247
247
  <div id="footer">
248
- Generated on Sun Nov 27 15:52:18 2016 by
248
+ Generated on Sun Dec 11 16:38:29 2016 by
249
249
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
250
250
  0.9.5 (ruby-2.3.3).
251
251
  </div>
data/doc/MG/Scene.html CHANGED
@@ -550,10 +550,10 @@ the update loop by calling <span class='object_link'><a href="#start_update-inst
550
550
  <pre class="lines">
551
551
 
552
552
 
553
- 531</pre>
553
+ 551</pre>
554
554
  </td>
555
555
  <td>
556
- <pre class="code"><span class="info file"># File 'motion-game', line 531</span>
556
+ <pre class="code"><span class="info file"># File 'motion-game', line 551</span>
557
557
 
558
558
  <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
559
559
  </td>
@@ -612,12 +612,12 @@ the update loop by calling <span class='object_link'><a href="#start_update-inst
612
612
  <pre class="lines">
613
613
 
614
614
 
615
- 615
616
- 616
617
- 617</pre>
615
+ 635
616
+ 636
617
+ 637</pre>
618
618
  </td>
619
619
  <td>
620
- <pre class="code"><span class="info file"># File 'motion-game', line 615</span>
620
+ <pre class="code"><span class="info file"># File 'motion-game', line 635</span>
621
621
 
622
622
  def debug_physics?
623
623
  @debug_physics?
@@ -673,12 +673,12 @@ end</pre>
673
673
  <pre class="lines">
674
674
 
675
675
 
676
- 612
677
- 613
678
- 614</pre>
676
+ 632
677
+ 633
678
+ 634</pre>
679
679
  </td>
680
680
  <td>
681
- <pre class="code"><span class="info file"># File 'motion-game', line 612</span>
681
+ <pre class="code"><span class="info file"># File 'motion-game', line 632</span>
682
682
 
683
683
  <span class='kw'>def</span> <span class='id identifier rubyid_gravity'>gravity</span>
684
684
  <span class='ivar'>@gravity</span>
@@ -758,10 +758,10 @@ the device.</p>
758
758
  <pre class="lines">
759
759
 
760
760
 
761
- 600</pre>
761
+ 620</pre>
762
762
  </td>
763
763
  <td>
764
- <pre class="code"><span class="info file"># File 'motion-game', line 600</span>
764
+ <pre class="code"><span class="info file"># File 'motion-game', line 620</span>
765
765
 
766
766
  <span class='kw'>def</span> <span class='id identifier rubyid_on_accelerate'>on_accelerate</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
767
767
  </td>
@@ -832,10 +832,10 @@ physics engine.</p>
832
832
  <pre class="lines">
833
833
 
834
834
 
835
- 606</pre>
835
+ 626</pre>
836
836
  </td>
837
837
  <td>
838
- <pre class="code"><span class="info file"># File 'motion-game', line 606</span>
838
+ <pre class="code"><span class="info file"># File 'motion-game', line 626</span>
839
839
 
840
840
  <span class='kw'>def</span> <span class='id identifier rubyid_on_contact_begin'>on_contact_begin</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
841
841
  </td>
@@ -905,10 +905,10 @@ physics engine.</p>
905
905
  <pre class="lines">
906
906
 
907
907
 
908
- 576</pre>
908
+ 596</pre>
909
909
  </td>
910
910
  <td>
911
- <pre class="code"><span class="info file"># File 'motion-game', line 576</span>
911
+ <pre class="code"><span class="info file"># File 'motion-game', line 596</span>
912
912
 
913
913
  <span class='kw'>def</span> <span class='id identifier rubyid_on_touch_begin'>on_touch_begin</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
914
914
  </td>
@@ -978,10 +978,10 @@ physics engine.</p>
978
978
  <pre class="lines">
979
979
 
980
980
 
981
- 594</pre>
981
+ 614</pre>
982
982
  </td>
983
983
  <td>
984
- <pre class="code"><span class="info file"># File 'motion-game', line 594</span>
984
+ <pre class="code"><span class="info file"># File 'motion-game', line 614</span>
985
985
 
986
986
  <span class='kw'>def</span> <span class='id identifier rubyid_on_touch_cancel'>on_touch_cancel</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
987
987
  </td>
@@ -1051,10 +1051,10 @@ physics engine.</p>
1051
1051
  <pre class="lines">
1052
1052
 
1053
1053
 
1054
- 582</pre>
1054
+ 602</pre>
1055
1055
  </td>
1056
1056
  <td>
1057
- <pre class="code"><span class="info file"># File 'motion-game', line 582</span>
1057
+ <pre class="code"><span class="info file"># File 'motion-game', line 602</span>
1058
1058
 
1059
1059
  <span class='kw'>def</span> <span class='id identifier rubyid_on_touch_end'>on_touch_end</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
1060
1060
  </td>
@@ -1124,10 +1124,10 @@ physics engine.</p>
1124
1124
  <pre class="lines">
1125
1125
 
1126
1126
 
1127
- 588</pre>
1127
+ 608</pre>
1128
1128
  </td>
1129
1129
  <td>
1130
- <pre class="code"><span class="info file"># File 'motion-game', line 588</span>
1130
+ <pre class="code"><span class="info file"># File 'motion-game', line 608</span>
1131
1131
 
1132
1132
  <span class='kw'>def</span> <span class='id identifier rubyid_on_touch_move'>on_touch_move</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
1133
1133
  </td>
@@ -1254,10 +1254,10 @@ needed.</p>
1254
1254
  <pre class="lines">
1255
1255
 
1256
1256
 
1257
- 561</pre>
1257
+ 581</pre>
1258
1258
  </td>
1259
1259
  <td>
1260
- <pre class="code"><span class="info file"># File 'motion-game', line 561</span>
1260
+ <pre class="code"><span class="info file"># File 'motion-game', line 581</span>
1261
1261
 
1262
1262
  <span class='kw'>def</span> <span class='id identifier rubyid_schedule'>schedule</span><span class='lparen'>(</span><span class='id identifier rubyid_delay'>delay</span><span class='comma'>,</span> <span class='id identifier rubyid_repeat'>repeat</span><span class='op'>=</span><span class='int'>0</span><span class='comma'>,</span> <span class='id identifier rubyid_interval'>interval</span><span class='op'>=</span><span class='int'>0</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
1263
1263
  </td>
@@ -1310,10 +1310,10 @@ this object for every frame.</p>
1310
1310
  <pre class="lines">
1311
1311
 
1312
1312
 
1313
- 539</pre>
1313
+ 559</pre>
1314
1314
  </td>
1315
1315
  <td>
1316
- <pre class="code"><span class="info file"># File 'motion-game', line 539</span>
1316
+ <pre class="code"><span class="info file"># File 'motion-game', line 559</span>
1317
1317
 
1318
1318
  <span class='kw'>def</span> <span class='id identifier rubyid_start_update'>start_update</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
1319
1319
  </td>
@@ -1366,10 +1366,10 @@ called on this object.</p>
1366
1366
  <pre class="lines">
1367
1367
 
1368
1368
 
1369
- 544</pre>
1369
+ 564</pre>
1370
1370
  </td>
1371
1371
  <td>
1372
- <pre class="code"><span class="info file"># File 'motion-game', line 544</span>
1372
+ <pre class="code"><span class="info file"># File 'motion-game', line 564</span>
1373
1373
 
1374
1374
  <span class='kw'>def</span> <span class='id identifier rubyid_stop_update'>stop_update</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
1375
1375
  </td>
@@ -1441,10 +1441,10 @@ called on this object.</p>
1441
1441
  <pre class="lines">
1442
1442
 
1443
1443
 
1444
- 567</pre>
1444
+ 587</pre>
1445
1445
  </td>
1446
1446
  <td>
1447
- <pre class="code"><span class="info file"># File 'motion-game', line 567</span>
1447
+ <pre class="code"><span class="info file"># File 'motion-game', line 587</span>
1448
1448
 
1449
1449
  <span class='kw'>def</span> <span class='id identifier rubyid_unschedule'>unschedule</span><span class='lparen'>(</span><span class='id identifier rubyid_key'>key</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
1450
1450
  </td>
@@ -1518,10 +1518,10 @@ this method was called.</p>
1518
1518
  <pre class="lines">
1519
1519
 
1520
1520
 
1521
- 551</pre>
1521
+ 571</pre>
1522
1522
  </td>
1523
1523
  <td>
1524
- <pre class="code"><span class="info file"># File 'motion-game', line 551</span>
1524
+ <pre class="code"><span class="info file"># File 'motion-game', line 571</span>
1525
1525
 
1526
1526
  <span class='kw'>def</span> <span class='id identifier rubyid_update'>update</span><span class='lparen'>(</span><span class='id identifier rubyid_delta'>delta</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
1527
1527
  </td>
@@ -1534,7 +1534,7 @@ this method was called.</p>
1534
1534
  </div>
1535
1535
 
1536
1536
  <div id="footer">
1537
- Generated on Sun Nov 27 15:52:19 2016 by
1537
+ Generated on Sun Dec 11 16:38:29 2016 by
1538
1538
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1539
1539
  0.9.5 (ruby-2.3.3).
1540
1540
  </div>
data/doc/MG/Scroll.html CHANGED
@@ -316,10 +316,10 @@ than the size of the scroll view itself.</p>
316
316
  <pre class="lines">
317
317
 
318
318
 
319
- 1268</pre>
319
+ 1291</pre>
320
320
  </td>
321
321
  <td>
322
- <pre class="code"><span class="info file"># File 'motion-game', line 1268</span>
322
+ <pre class="code"><span class="info file"># File 'motion-game', line 1291</span>
323
323
 
324
324
  <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
325
325
  </td>
@@ -378,12 +378,12 @@ than the size of the scroll view itself.</p>
378
378
  <pre class="lines">
379
379
 
380
380
 
381
- 1275
382
- 1276
383
- 1277</pre>
381
+ 1298
382
+ 1299
383
+ 1300</pre>
384
384
  </td>
385
385
  <td>
386
- <pre class="code"><span class="info file"># File 'motion-game', line 1275</span>
386
+ <pre class="code"><span class="info file"># File 'motion-game', line 1298</span>
387
387
 
388
388
  <span class='kw'>def</span> <span class='id identifier rubyid_direction'>direction</span>
389
389
  <span class='ivar'>@direction</span>
@@ -439,12 +439,12 @@ than the size of the scroll view itself.</p>
439
439
  <pre class="lines">
440
440
 
441
441
 
442
- 1282
443
- 1283
444
- 1284</pre>
442
+ 1305
443
+ 1306
444
+ 1307</pre>
445
445
  </td>
446
446
  <td>
447
- <pre class="code"><span class="info file"># File 'motion-game', line 1282</span>
447
+ <pre class="code"><span class="info file"># File 'motion-game', line 1305</span>
448
448
 
449
449
  <span class='kw'>def</span> <span class='id identifier rubyid_inner_container'>inner_container</span>
450
450
  <span class='ivar'>@inner_container</span>
@@ -502,12 +502,12 @@ than the size of the scroll view itself.</p>
502
502
  <pre class="lines">
503
503
 
504
504
 
505
- 1279
506
- 1280
507
- 1281</pre>
505
+ 1302
506
+ 1303
507
+ 1304</pre>
508
508
  </td>
509
509
  <td>
510
- <pre class="code"><span class="info file"># File 'motion-game', line 1279</span>
510
+ <pre class="code"><span class="info file"># File 'motion-game', line 1302</span>
511
511
 
512
512
  <span class='kw'>def</span> <span class='id identifier rubyid_inner_size'>inner_size</span>
513
513
  <span class='ivar'>@inner_size</span>
@@ -523,7 +523,7 @@ than the size of the scroll view itself.</p>
523
523
  </div>
524
524
 
525
525
  <div id="footer">
526
- Generated on Sun Nov 27 15:52:20 2016 by
526
+ Generated on Sun Dec 11 16:38:30 2016 by
527
527
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
528
528
  0.9.5 (ruby-2.3.3).
529
529
  </div>