├── .babelrc ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── animations │ ├── cube.json │ ├── cube.png │ ├── knight.json │ └── knight.png ├── audio │ ├── Fate.mp3 │ ├── Fate.ogg │ ├── jungle.mp3 │ ├── jungle.ogg │ ├── oedipus_wizball_highscore.mp3 │ ├── oedipus_wizball_highscore.ogg │ ├── oedipus_wizball_highscore.opus │ ├── soundeffect │ │ └── explosion.mp3 │ └── twinkle_twinkle.mid ├── fonts │ ├── SeasideResortNF │ │ ├── Nick's Fonts License.txt │ │ ├── SEASRN.ttf │ │ └── fonts.css │ ├── gothic.png │ └── gothic.xml ├── images │ ├── add.png │ ├── amethyst.png │ ├── arrow-down-left.png │ ├── arrow-down.png │ ├── arrow.png │ ├── backgrounds │ │ ├── classroom.png │ │ ├── gradient.png │ │ ├── pixelart.png │ │ ├── portrait.jpg │ │ └── road.png │ ├── board │ │ ├── tiles.json │ │ └── tiles.png │ ├── bolt.png │ ├── card.jpg │ ├── card2-back.png │ ├── card2.png │ ├── characters │ │ ├── characters-src │ │ │ ├── A-anger.png │ │ │ ├── A-confuse.png │ │ │ ├── A-dizzy.png │ │ │ ├── A-happy.png │ │ │ ├── A-none.png │ │ │ ├── A-shock.png │ │ │ ├── A-smile.png │ │ │ ├── B-anger.png │ │ │ ├── B-confuse.png │ │ │ ├── B-dizzy.png │ │ │ ├── B-happy.png │ │ │ ├── B-none.png │ │ │ ├── B-shock.png │ │ │ ├── B-smile.png │ │ │ ├── C-anger.png │ │ │ ├── C-confuse.png │ │ │ ├── C-dizzy.png │ │ │ ├── C-happy.png │ │ │ ├── C-none.png │ │ │ ├── C-shock.png │ │ │ └── C-smile.png │ │ ├── characters.json │ │ ├── characters.png │ │ ├── portrait-src │ │ │ ├── A-anger.png │ │ │ ├── A-confuse.png │ │ │ ├── A-dizzy.png │ │ │ ├── A-happy.png │ │ │ ├── A-none.png │ │ │ ├── A-shock.png │ │ │ ├── A-smile.png │ │ │ ├── B-anger.png │ │ │ ├── B-confuse.png │ │ │ ├── B-dizzy.png │ │ │ ├── B-happy.png │ │ │ ├── B-none.png │ │ │ ├── B-shock.png │ │ │ ├── B-smile.png │ │ │ ├── C-anger.png │ │ │ ├── C-confuse.png │ │ │ ├── C-dizzy.png │ │ │ ├── C-happy.png │ │ │ ├── C-none.png │ │ │ ├── C-shock.png │ │ │ └── C-smile.png │ │ ├── portraits.json │ │ └── portraits.png │ ├── close.png │ ├── contract.png │ ├── diamond.png │ ├── distortion │ │ ├── distortion.png │ │ ├── distortion2.png │ │ ├── distortion3.png │ │ ├── distortion4.png │ │ ├── distortion6.png │ │ ├── distortion7.png │ │ ├── noise.png │ │ └── noisesmall.png │ ├── earthbound-scarab.png │ ├── expand.png │ ├── fission.png │ ├── flash-on.png │ ├── horizontal-flip.png │ ├── icons.json │ ├── icons.png │ ├── indicator.png │ ├── info.png │ ├── jigsaw │ │ ├── hot-wheels.jpg │ │ └── square.png │ ├── key.png │ ├── logo.png │ ├── money.png │ ├── mushroom.png │ ├── narrowrect.png │ ├── ninepatch │ │ ├── atlas.json │ │ ├── atlas.png │ │ ├── black_frame.png │ │ ├── black_icon.png │ │ ├── blue_icon.png │ │ ├── grey_icon.png │ │ ├── nine-patch.png │ │ └── stretch-edge.png │ ├── particles │ │ └── flares │ │ │ ├── flares.json │ │ │ └── flares.png │ ├── pause.png │ ├── person.png │ ├── phaser-dude.png │ ├── play.png │ ├── poker │ │ ├── poker.json │ │ ├── poker.png │ │ └── src │ │ │ ├── bg-0.png │ │ │ ├── bg-1.png │ │ │ ├── bg-2.png │ │ │ ├── bg-3.png │ │ │ ├── bg-4.png │ │ │ ├── bg-5.png │ │ │ ├── clubs-1.png │ │ │ ├── clubs-10.png │ │ │ ├── clubs-11.png │ │ │ ├── clubs-12.png │ │ │ ├── clubs-13.png │ │ │ ├── clubs-2.png │ │ │ ├── clubs-3.png │ │ │ ├── clubs-4.png │ │ │ ├── clubs-5.png │ │ │ ├── clubs-6.png │ │ │ ├── clubs-7.png │ │ │ ├── clubs-8.png │ │ │ ├── clubs-9.png │ │ │ ├── diamonds-1.png │ │ │ ├── diamonds-10.png │ │ │ ├── diamonds-11.png │ │ │ ├── diamonds-12.png │ │ │ ├── diamonds-13.png │ │ │ ├── diamonds-2.png │ │ │ ├── diamonds-3.png │ │ │ ├── diamonds-4.png │ │ │ ├── diamonds-5.png │ │ │ ├── diamonds-6.png │ │ │ ├── diamonds-7.png │ │ │ ├── diamonds-8.png │ │ │ ├── diamonds-9.png │ │ │ ├── hearts-1.png │ │ │ ├── hearts-10.png │ │ │ ├── hearts-11.png │ │ │ ├── hearts-12.png │ │ │ ├── hearts-13.png │ │ │ ├── hearts-2.png │ │ │ ├── hearts-3.png │ │ │ ├── hearts-4.png │ │ │ ├── hearts-5.png │ │ │ ├── hearts-6.png │ │ │ ├── hearts-7.png │ │ │ ├── hearts-8.png │ │ │ ├── hearts-9.png │ │ │ ├── spades-1.png │ │ │ ├── spades-10.png │ │ │ ├── spades-11.png │ │ │ ├── spades-12.png │ │ │ ├── spades-13.png │ │ │ ├── spades-2.png │ │ │ ├── spades-3.png │ │ │ ├── spades-4.png │ │ │ ├── spades-5.png │ │ │ ├── spades-6.png │ │ │ ├── spades-7.png │ │ │ ├── spades-8.png │ │ │ ├── spades-9.png │ │ │ └── white.png │ ├── poker2 │ │ ├── poker.json │ │ ├── poker.png │ │ └── src │ │ │ ├── 000.png │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ ├── 008.png │ │ │ ├── 009.png │ │ │ ├── 010.png │ │ │ ├── 011.png │ │ │ ├── 012.png │ │ │ ├── 013.png │ │ │ ├── 014.png │ │ │ ├── 015.png │ │ │ ├── 016.png │ │ │ ├── 017.png │ │ │ ├── 018.png │ │ │ ├── 019.png │ │ │ ├── 020.png │ │ │ ├── 021.png │ │ │ ├── 022.png │ │ │ ├── 023.png │ │ │ ├── 024.png │ │ │ ├── 025.png │ │ │ ├── 026.png │ │ │ ├── 027.png │ │ │ ├── 028.png │ │ │ ├── 029.png │ │ │ ├── 030.png │ │ │ ├── 031.png │ │ │ ├── 032.png │ │ │ ├── 033.png │ │ │ ├── 034.png │ │ │ ├── 035.png │ │ │ ├── 036.png │ │ │ ├── 037.png │ │ │ ├── 038.png │ │ │ ├── 039.png │ │ │ ├── 040.png │ │ │ ├── 041.png │ │ │ ├── 042.png │ │ │ ├── 043.png │ │ │ ├── 044.png │ │ │ ├── 045.png │ │ │ ├── 046.png │ │ │ ├── 047.png │ │ │ ├── 048.png │ │ │ ├── 049.png │ │ │ ├── 050.png │ │ │ ├── 051.png │ │ │ └── back.png │ ├── rectangle128x96.jpg │ ├── road │ │ ├── road.json │ │ └── road.png │ ├── settings.png │ ├── snowflake.png │ ├── spritesheet │ │ ├── explosion.cfg │ │ └── explosion.png │ ├── user.png │ ├── vertical-flip.png │ ├── volume.png │ ├── white-dot.png │ └── 箭頭.png ├── live2d │ ├── Haru │ │ ├── Haru.2048 │ │ │ ├── texture_00.png │ │ │ └── texture_01.png │ │ ├── Haru.cdi3.json │ │ ├── Haru.moc3 │ │ ├── Haru.model3.json │ │ ├── Haru.physics3.json │ │ ├── Haru.pose3.json │ │ ├── Haru.userdata3.json │ │ ├── expressions │ │ │ ├── F01.exp3.json │ │ │ ├── F02.exp3.json │ │ │ ├── F03.exp3.json │ │ │ ├── F04.exp3.json │ │ │ ├── F05.exp3.json │ │ │ ├── F06.exp3.json │ │ │ ├── F07.exp3.json │ │ │ └── F08.exp3.json │ │ ├── motions │ │ │ ├── haru_g_idle.motion3.json │ │ │ ├── haru_g_m01.motion3.json │ │ │ ├── haru_g_m02.motion3.json │ │ │ ├── haru_g_m03.motion3.json │ │ │ ├── haru_g_m04.motion3.json │ │ │ ├── haru_g_m05.motion3.json │ │ │ ├── haru_g_m06.motion3.json │ │ │ ├── haru_g_m07.motion3.json │ │ │ ├── haru_g_m08.motion3.json │ │ │ ├── haru_g_m09.motion3.json │ │ │ ├── haru_g_m10.motion3.json │ │ │ ├── haru_g_m11.motion3.json │ │ │ ├── haru_g_m12.motion3.json │ │ │ ├── haru_g_m13.motion3.json │ │ │ ├── haru_g_m14.motion3.json │ │ │ ├── haru_g_m15.motion3.json │ │ │ ├── haru_g_m16.motion3.json │ │ │ ├── haru_g_m17.motion3.json │ │ │ ├── haru_g_m18.motion3.json │ │ │ ├── haru_g_m19.motion3.json │ │ │ ├── haru_g_m20.motion3.json │ │ │ ├── haru_g_m21.motion3.json │ │ │ ├── haru_g_m22.motion3.json │ │ │ ├── haru_g_m23.motion3.json │ │ │ ├── haru_g_m24.motion3.json │ │ │ ├── haru_g_m25.motion3.json │ │ │ └── haru_g_m26.motion3.json │ │ └── sounds │ │ │ ├── haru_normal_01.wav │ │ │ ├── haru_normal_02.wav │ │ │ ├── haru_normal_03.wav │ │ │ └── haru_normal_04.wav │ ├── Hiyori │ │ ├── Hiyori.2048 │ │ │ ├── texture_00.png │ │ │ └── texture_01.png │ │ ├── Hiyori.cdi3.json │ │ ├── Hiyori.moc3 │ │ ├── Hiyori.model3.json │ │ ├── Hiyori.physics3.json │ │ ├── Hiyori.pose3.json │ │ ├── Hiyori.userdata3.json │ │ └── motions │ │ │ ├── Hiyori_m01.motion3.json │ │ │ ├── Hiyori_m02.motion3.json │ │ │ ├── Hiyori_m03.motion3.json │ │ │ ├── Hiyori_m04.motion3.json │ │ │ ├── Hiyori_m05.motion3.json │ │ │ ├── Hiyori_m06.motion3.json │ │ │ ├── Hiyori_m07.motion3.json │ │ │ ├── Hiyori_m08.motion3.json │ │ │ ├── Hiyori_m09.motion3.json │ │ │ └── Hiyori_m10.motion3.json │ ├── LICENSE.md │ └── core │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.ja.md │ │ ├── README.md │ │ ├── RedistributableFiles.txt │ │ ├── live2dcubismcore.d.ts │ │ ├── live2dcubismcore.js │ │ ├── live2dcubismcore.js.map │ │ └── live2dcubismcore.min.js ├── locales │ ├── en │ │ ├── ui.json │ │ └── ui.yaml │ └── zh-TW │ │ ├── ui.json │ │ └── ui.yaml ├── markedeventsheet │ ├── active │ │ ├── deactivate.md │ │ └── task.md │ ├── branch │ │ ├── 0.before.md │ │ ├── 1.if-a.md │ │ ├── 2.if-b.md │ │ ├── 3.else.md │ │ └── 4.after.md │ ├── command-executor │ │ └── command-executor.md │ ├── if-else │ │ └── if-else.md │ ├── ignore-condition │ │ └── ignore-condition.md │ ├── json-data │ │ └── json-data.md │ ├── mds │ │ ├── command-executor.md │ │ └── fast-typing.md │ ├── memory-monitor │ │ └── memory-monitor.md │ ├── parallel-groups │ │ ├── parallel0.md │ │ └── parallel1.md │ ├── parallel │ │ ├── parallel0.md │ │ └── parallel1.md │ ├── repeat │ │ └── repeat.md │ ├── sample │ │ └── sample.md │ ├── save-load │ │ ├── eventsheet0.md │ │ ├── eventsheet1.md │ │ └── eventsheet2.md │ └── start-group-by-event │ │ └── eventA.md ├── obj │ ├── cube.mtl │ └── cube.obj ├── pack │ └── pack.json ├── texts │ └── csvArray.csv ├── tilemaps │ ├── hexagon │ │ ├── mapdata-x.json │ │ ├── mapdata-y.json │ │ ├── tileset-x.png │ │ └── tileset-y.png │ └── orthogonal │ │ ├── desert.json │ │ └── tmw_desert_spacing.png ├── video │ └── test.mp4 ├── yamleventsheets │ ├── active │ │ ├── deactivate.yml │ │ └── task.yml │ ├── branch │ │ ├── 0.before.yml │ │ ├── 1.if-a.yml │ │ ├── 2.if-b.yml │ │ ├── 3.else.yml │ │ └── 4.after.yml │ ├── break │ │ └── break.yml │ ├── command-executor │ │ └── command-executor.yml │ ├── condition-break │ │ └── condition-break.yml │ ├── condition │ │ └── condition.yml │ ├── for │ │ └── for.yml │ ├── ignore-condition │ │ └── ignore-condition.yml │ ├── json-data │ │ └── json-data.yml │ ├── memory-monitor │ │ └── memory-monitor.yml │ ├── parallel-groups │ │ ├── parallel0.yml │ │ └── parallel1.yml │ ├── parallel │ │ ├── parallel0.yml │ │ └── parallel1.yml │ ├── repeat │ │ └── repeat.yml │ ├── sample │ │ └── sample.yml │ ├── save-load │ │ ├── eventsheet0.yml │ │ ├── eventsheet1.yml │ │ └── eventsheet2.yml │ ├── scenario │ │ ├── command-executor.yml │ │ └── fast-typing.yml │ └── start-group-by-event │ │ └── eventA.yml └── zip │ └── classroom.zip ├── dist ├── rexachievementsplugin.js ├── rexachievementsplugin.min.js ├── rexaiospinner.js ├── rexaiospinner.min.js ├── rexalphamaskimage.js ├── rexalphamaskimage.min.js ├── rexalphamaskimageplugin.js ├── rexalphamaskimageplugin.min.js ├── rexanchorplugin.js ├── rexanchorplugin.min.js ├── rexarcadetcrpplugin.js ├── rexarcadetcrpplugin.min.js ├── rexarrowspinner.js ├── rexarrowspinner.min.js ├── rexaudiospinner.js ├── rexaudiospinner.min.js ├── rexawaitloaderplugin.js ├── rexawaitloaderplugin.min.js ├── rexawaytimeplugin.js ├── rexawaytimeplugin.min.js ├── rexbadgelabel.js ├── rexbadgelabel.min.js ├── rexballspinner.js ├── rexballspinner.min.js ├── rexbarrelpipelineplugin.js ├── rexbarrelpipelineplugin.min.js ├── rexbarsspinner.js ├── rexbarsspinner.min.js ├── rexbbcodelog.js ├── rexbbcodelog.min.js ├── rexbbcodetext.js ├── rexbbcodetext.min.js ├── rexbbcodetextplugin.js ├── rexbbcodetextplugin.min.js ├── rexbejeweled.js ├── rexbejeweled.min.js ├── rexbejeweled2.js ├── rexbejeweled2.min.js ├── rexbitmapzoneplugin.js ├── rexbitmapzoneplugin.min.js ├── rexboardplugin.js ├── rexboardplugin.min.js ├── rexboundsplugin.js ├── rexboundsplugin.min.js ├── rexboxspinner.js ├── rexboxspinner.min.js ├── rexbracketparser2plugin.js ├── rexbracketparser2plugin.min.js ├── rexbracketparserplugin.js ├── rexbracketparserplugin.min.js ├── rexbuffdataplugin.js ├── rexbuffdataplugin.min.js ├── rexbuildarcadeobjectplugin.js ├── rexbuildarcadeobjectplugin.min.js ├── rexbulletplugin.js ├── rexbulletplugin.min.js ├── rexbuttonplugin.js ├── rexbuttonplugin.min.js ├── rexbuttons.js ├── rexbuttons.min.js ├── rexcameracontrollerplugin.js ├── rexcameracontrollerplugin.min.js ├── rexcanvas.js ├── rexcanvas.min.js ├── rexcanvasdataplugin.js ├── rexcanvasdataplugin.min.js ├── rexcanvasframemanagerplugin.js ├── rexcanvasframemanagerplugin.min.js ├── rexcanvasinputplugin.js ├── rexcanvasinputplugin.min.js ├── rexcanvasplugin.js ├── rexcanvasplugin.min.js ├── rexcharactercacheplugin.js ├── rexcharactercacheplugin.min.js ├── rexchart.js ├── rexchart.min.js ├── rexcheckbox.js ├── rexcheckbox.min.js ├── rexcheckboxplugin.js ├── rexcheckboxplugin.min.js ├── rexcirclemaskimage.js ├── rexcirclemaskimage.min.js ├── rexcirclemaskimageplugin.js ├── rexcirclemaskimageplugin.min.js ├── rexcircularprogress.js ├── rexcircularprogress.min.js ├── rexcircularprogresscanvas.js ├── rexcircularprogresscanvas.min.js ├── rexcircularprogresscanvasplugin.js ├── rexcircularprogresscanvasplugin.min.js ├── rexcircularprogressplugin.js ├── rexcircularprogressplugin.min.js ├── rexclickoutsideplugin.js ├── rexclickoutsideplugin.min.js ├── rexclockplugin.js ├── rexclockplugin.min.js ├── rexclockspinner.js ├── rexclockspinner.min.js ├── rexcolorcomponents.js ├── rexcolorcomponents.min.js ├── rexcolorinput.js ├── rexcolorinput.min.js ├── rexcolorpicker.js ├── rexcolorpicker.min.js ├── rexcolorreplacepipelineplugin.js ├── rexcolorreplacepipelineplugin.min.js ├── rexconditionstableplugin.js ├── rexconditionstableplugin.min.js ├── rexconfirmdialog.js ├── rexconfirmdialog.min.js ├── rexcontainerliteplugin.js ├── rexcontainerliteplugin.min.js ├── rexcoverplugin.js ├── rexcoverplugin.min.js ├── rexcrossstitchingpipelineplugin.js ├── rexcrossstitchingpipelineplugin.min.js ├── rexcrtpipelineplugin.js ├── rexcrtpipelineplugin.min.js ├── rexcsvscenariologic.js ├── rexcsvscenariologic.min.js ├── rexcsvscenarioplugin.js ├── rexcsvscenarioplugin.min.js ├── rexcsvtoarrayplugin.js ├── rexcsvtoarrayplugin.min.js ├── rexcsvtohashtableplugin.js ├── rexcsvtohashtableplugin.min.js ├── rexcubespinner.js ├── rexcubespinner.min.js ├── rexcursoratboundsplugin.js ├── rexcursoratboundsplugin.min.js ├── rexcustomprogress.js ├── rexcustomprogress.min.js ├── rexcustomprogresscanvasplugin.js ├── rexcustomprogresscanvasplugin.min.js ├── rexcustomprogressplugin.js ├── rexcustomprogressplugin.min.js ├── rexcustomshapes.js ├── rexcustomshapes.min.js ├── rexcustomshapesplugin.js ├── rexcustomshapesplugin.min.js ├── rexcustomspinner.js ├── rexcustomspinner.min.js ├── rexcutjigsawimageplugin.js ├── rexcutjigsawimageplugin.min.js ├── rexdatamonitor.js ├── rexdatamonitor.min.js ├── rexdatamonitorplugin.js ├── rexdatamonitorplugin.min.js ├── rexdialog.js ├── rexdialog.min.js ├── rexdialogquest.js ├── rexdialogquest.min.js ├── rexdissolvepipelineplugin.js ├── rexdissolvepipelineplugin.min.js ├── rexdotsspinner.js ├── rexdotsspinner.min.js ├── rexdragplugin.js ├── rexdragplugin.min.js ├── rexdragrotateplugin.js ├── rexdragrotateplugin.min.js ├── rexdragspeedplugin.js ├── rexdragspeedplugin.min.js ├── rexdropdownlist.js ├── rexdropdownlist.min.js ├── rexdropdownplugin.js ├── rexdropdownplugin.min.js ├── rexdropshadowpipelineplugin.js ├── rexdropshadowpipelineplugin.min.js ├── rexdynamictext.js ├── rexdynamictext.min.js ├── rexdynamictextplugin.js ├── rexdynamictextplugin.min.js ├── rexeasedataplugin.js ├── rexeasedataplugin.min.js ├── rexeasemoveplugin.js ├── rexeasemoveplugin.min.js ├── rexeffectlayerplugin.js ├── rexeffectlayerplugin.min.js ├── rexeffectpropertiesplugin.js ├── rexeffectpropertiesplugin.min.js ├── rexeightdirectionplugin.js ├── rexeightdirectionplugin.min.js ├── rexeventpromiseplugin.js ├── rexeventpromiseplugin.min.js ├── rexexpbar.js ├── rexexpbar.min.js ├── rexexpressionparserplugin.js ├── rexexpressionparserplugin.min.js ├── rexfacebookspinner.js ├── rexfacebookspinner.min.js ├── rexfadeplugin.js ├── rexfadeplugin.min.js ├── rexfilechooser.js ├── rexfilechooser.min.js ├── rexfilechooserplugin.js ├── rexfilechooserplugin.min.js ├── rexfiledropzone.js ├── rexfiledropzone.min.js ├── rexfiledropzoneplugin.js ├── rexfiledropzoneplugin.min.js ├── rexfileselectorbutton.js ├── rexfileselectorbutton.min.js ├── rexfirebase.js ├── rexfirebase.min.js ├── rexfirebaseplugin.js ├── rexfirebaseplugin.min.js ├── rexfisheyepipelineplugin.js ├── rexfisheyepipelineplugin.min.js ├── rexfixwidthbuttons.js ├── rexfixwidthbuttons.min.js ├── rexfixwidthsizer.js ├── rexfixwidthsizer.min.js ├── rexflashplugin.js ├── rexflashplugin.min.js ├── rexflip.js ├── rexflip.min.js ├── rexflipplugin.js ├── rexflipplugin.min.js ├── rexfolder.js ├── rexfolder.min.js ├── rexframemanagerplugin.js ├── rexframemanagerplugin.min.js ├── rexfsmplugin.js ├── rexfsmplugin.min.js ├── rexfullwindowrectangleplugin.js ├── rexfullwindowrectangleplugin.min.js ├── rexfuzzy.js ├── rexfuzzy.min.js ├── rexfuzzyplugin.js ├── rexfuzzyplugin.min.js ├── rexgameobjectshellplugin.js ├── rexgameobjectshellplugin.min.js ├── rexgashaponplugin.js ├── rexgashaponplugin.min.js ├── rexgesturesplugin.js ├── rexgesturesplugin.min.js ├── rexglowfilter2pipelineplugin.js ├── rexglowfilter2pipelineplugin.min.js ├── rexglowfilterpipelineplugin.js ├── rexglowfilterpipelineplugin.min.js ├── rexgraphplugin.js ├── rexgraphplugin.min.js ├── rexgrayscalepipelineplugin.js ├── rexgrayscalepipelineplugin.min.js ├── rexgridalignplugin.js ├── rexgridalignplugin.min.js ├── rexgridbuttons.js ├── rexgridbuttons.min.js ├── rexgridcutimageplugin.js ├── rexgridcutimageplugin.min.js ├── rexgridsizer.js ├── rexgridsizer.min.js ├── rexgridspinner.js ├── rexgridspinner.min.js ├── rexgridtable.js ├── rexgridtable.min.js ├── rexgridtableplugin.js ├── rexgridtableplugin.min.js ├── rexgroupnavigatorplugin.js ├── rexgroupnavigatorplugin.min.js ├── rexheartsspinner.js ├── rexheartsspinner.min.js ├── rexhexagonplugin.js ├── rexhexagonplugin.min.js ├── rexhiddeninputtextplugin.js ├── rexhiddeninputtextplugin.min.js ├── rexholygrail.js ├── rexholygrail.min.js ├── rexhorrifipipelineplugin.js ├── rexhorrifipipelineplugin.min.js ├── rexhsladjustpipelineplugin.js ├── rexhsladjustpipelineplugin.min.js ├── reximageboxplugin.js ├── reximageboxplugin.min.js ├── reximageuriloaderplugin.js ├── reximageuriloaderplugin.min.js ├── rexinputtextplugin.js ├── rexinputtextplugin.min.js ├── rexinterceptionplugin.js ├── rexinterceptionplugin.min.js ├── rexintouchingplugin.js ├── rexintouchingplugin.min.js ├── rexinversepipelineplugin.js ├── rexinversepipelineplugin.min.js ├── rexiosspinner.js ├── rexiosspinner.min.js ├── rexjsonscenario.js ├── rexjsonscenario.min.js ├── rexjsonscenarioplugin.js ├── rexjsonscenarioplugin.min.js ├── rexkawaseblurpipelineplugin.js ├── rexkawaseblurpipelineplugin.min.js ├── rexkeyshubplugin.js ├── rexkeyshubplugin.min.js ├── rexknob.js ├── rexknob.min.js ├── rexlabel.js ├── rexlabel.min.js ├── rexlayermanagerplugin.js ├── rexlayermanagerplugin.min.js ├── rexlevelcounter.js ├── rexlevelcounter.min.js ├── rexlevelcounterplugin.js ├── rexlevelcounterplugin.min.js ├── rexlifetimeplugin.js ├── rexlifetimeplugin.min.js ├── rexlineplugin.js ├── rexlineplugin.min.js ├── rexlineprogress.js ├── rexlineprogress.min.js ├── rexlineprogresscanvas.js ├── rexlineprogresscanvas.min.js ├── rexlineprogresscanvasplugin.js ├── rexlineprogresscanvasplugin.min.js ├── rexlineprogressplugin.js ├── rexlineprogressplugin.min.js ├── rexlineshapeplugin.js ├── rexlineshapeplugin.min.js ├── rexlive2dplugin.js ├── rexlive2dplugin.min.js ├── rexloadinganimationsceneplugin.js ├── rexloadinganimationsceneplugin.min.js ├── rexloadingprogressplugin.js ├── rexloadingprogressplugin.min.js ├── rexlocalforagefilesplugin.js ├── rexlocalforagefilesplugin.min.js ├── rexlocalmaskplugin.js ├── rexlocalmaskplugin.min.js ├── rexlocalstoragedataplugin.js ├── rexlocalstoragedataplugin.min.js ├── rexloopinticksplugin.js ├── rexloopinticksplugin.min.js ├── rexlzstringplugin.js ├── rexlzstringplugin.min.js ├── rexmarkedeventsheetsplugin.js ├── rexmarkedeventsheetsplugin.min.js ├── rexmdscenario.js ├── rexmdscenario.min.js ├── rexmdscenarioplugin.js ├── rexmdscenarioplugin.min.js ├── rexmenu.js ├── rexmenu.min.js ├── rexmodalplugin.js ├── rexmodalplugin.min.js ├── rexmousewheelscrollerplugin.js ├── rexmousewheelscrollerplugin.min.js ├── rexmousewheeltoupdownplugin.js ├── rexmousewheeltoupdownplugin.min.js ├── rexmovetoplugin.js ├── rexmovetoplugin.min.js ├── rexnameinputdialog.js ├── rexnameinputdialog.min.js ├── rexnamevaluelabel.js ├── rexnamevaluelabel.min.js ├── rexninepatch.js ├── rexninepatch.min.js ├── rexninepatch2plugin.js ├── rexninepatch2plugin.min.js ├── rexninepatchplugin.js ├── rexninepatchplugin.min.js ├── rexnumberbar.js ├── rexnumberbar.min.js ├── rexorbitspinner.js ├── rexorbitspinner.min.js ├── rexoutlineeffectlayerplugin.js ├── rexoutlineeffectlayerplugin.min.js ├── rexoutlinepipelineplugin.js ├── rexoutlinepipelineplugin.min.js ├── rexovalspinner.js ├── rexovalspinner.min.js ├── rexoverlapsizer.js ├── rexoverlapsizer.min.js ├── rexpages.js ├── rexpages.min.js ├── rexpan.js ├── rexpan.min.js ├── rexparse.js ├── rexparse.min.js ├── rexparseplugin.js ├── rexparseplugin.min.js ├── rexparticlesalongboundsplugin.js ├── rexparticlesalongboundsplugin.min.js ├── rexpathfollowerplugin.js ├── rexpathfollowerplugin.min.js ├── rexperlingrivatywellplugin.js ├── rexperlingrivatywellplugin.min.js ├── rexperlinplugin.js ├── rexperlinplugin.min.js ├── rexperspectivecard.js ├── rexperspectivecard.min.js ├── rexperspectiveimageplugin.js ├── rexperspectiveimageplugin.min.js ├── rexpinch.js ├── rexpinch.min.js ├── rexpinchplugin.js ├── rexpinchplugin.min.js ├── rexpixelationpipelineplugin.js ├── rexpixelationpipelineplugin.min.js ├── rexpngappenderplugin.js ├── rexpngappenderplugin.min.js ├── rexpolarcoordinateplugin.js ├── rexpolarcoordinateplugin.min.js ├── rexpress.js ├── rexpress.min.js ├── rexpuffspinner.js ├── rexpuffspinner.min.js ├── rexquadimageplugin.js ├── rexquadimageplugin.min.js ├── rexquadshapeplugin.js ├── rexquadshapeplugin.min.js ├── rexquestplugin.js ├── rexquestplugin.min.js ├── rexradiospinner.js ├── rexradiospinner.min.js ├── rexrandomplaceplugin.js ├── rexrandomplaceplugin.min.js ├── rexraycasterplugin.js ├── rexraycasterplugin.min.js ├── rexrealtimetimersplugin.js ├── rexrealtimetimersplugin.min.js ├── rexrepeatimageplugin.js ├── rexrepeatimageplugin.min.js ├── rexrestorabledataplugin.js ├── rexrestorabledataplugin.min.js ├── rexrhombusplugin.js ├── rexrhombusplugin.min.js ├── rexringsspinner.js ├── rexringsspinner.min.js ├── rexrotate.js ├── rexrotate.min.js ├── rexrotateplugin.js ├── rexrotateplugin.min.js ├── rexrotatetoplugin.js ├── rexrotatetoplugin.min.js ├── rexroundrectangle.js ├── rexroundrectangle.min.js ├── rexroundrectanglecanvas.js ├── rexroundrectanglecanvas.min.js ├── rexroundrectanglecanvasplugin.js ├── rexroundrectanglecanvasplugin.min.js ├── rexroundrectangleplugin.js ├── rexroundrectangleplugin.min.js ├── rexroundrectangleprogress.js ├── rexroundrectangleprogress.min.js ├── rexroundrectangleprogressplugin.js ├── rexroundrectangleprogressplugin.min.js ├── rexruncommandsplugin.js ├── rexruncommandsplugin.min.js ├── rexscaleouterplugin.js ├── rexscaleouterplugin.min.js ├── rexscaleplugin.js ├── rexscaleplugin.min.js ├── rexscripttagloaderplugin.js ├── rexscripttagloaderplugin.min.js ├── rexscrollablepanel.js ├── rexscrollablepanel.min.js ├── rexscrollbar.js ├── rexscrollbar.min.js ├── rexscrollerplugin.js ├── rexscrollerplugin.min.js ├── rexsequenceplugin.js ├── rexsequenceplugin.min.js ├── rexshakepositionplugin.js ├── rexshakepositionplugin.min.js ├── rexshatterimageplugin.js ├── rexshatterimageplugin.min.js ├── rexshipplugin.js ├── rexshipplugin.min.js ├── rexshockwavepipelineplugin.js ├── rexshockwavepipelineplugin.min.js ├── rexsides.js ├── rexsides.min.js ├── rexsimpledropdownlist.js ├── rexsimpledropdownlist.min.js ├── rexsimplelabel.js ├── rexsimplelabel.min.js ├── rexsizer.js ├── rexsizer.min.js ├── rexslider.js ├── rexslider.min.js ├── rexsliderplugin.js ├── rexsliderplugin.min.js ├── rexsoundfadeplugin.js ├── rexsoundfadeplugin.min.js ├── rexspinner.js ├── rexspinner.min.js ├── rexspinnerplugin.js ├── rexspinnerplugin.min.js ├── rexspiralcurveplugin.js ├── rexspiralcurveplugin.min.js ├── rexsplitpanels.js ├── rexsplitpanels.min.js ├── rexsplitpipelineplugin.js ├── rexsplitpipelineplugin.min.js ├── rexstatemanagerplugin.js ├── rexstatemanagerplugin.min.js ├── rexstatesroundrectangle.js ├── rexstatesroundrectangle.min.js ├── rexstepplugin.js ├── rexstepplugin.min.js ├── rexstringtemplateplugin.js ├── rexstringtemplateplugin.min.js ├── rexswipe.js ├── rexswipe.min.js ├── rexswirlpipelineplugin.js ├── rexswirlpipelineplugin.min.js ├── rextabpages.js ├── rextabpages.min.js ├── rextabs.js ├── rextabs.min.js ├── rextagplayerplugin.js ├── rextagplayerplugin.min.js ├── rextagtext.js ├── rextagtext.min.js ├── rextagtextplugin.js ├── rextagtextplugin.min.js ├── rextap.js ├── rextap.min.js ├── rextcrpplugin.js ├── rextcrpplugin.min.js ├── rextextarea.js ├── rextextarea.min.js ├── rextextareainput.js ├── rextextareainput.min.js ├── rextextbox.js ├── rextextbox.min.js ├── rextexteditplugin.js ├── rextexteditplugin.min.js ├── rextextpageplugin.js ├── rextextpageplugin.min.js ├── rextextplayer.js ├── rextextplayer.min.js ├── rextextplayerplugin.js ├── rextextplayerplugin.min.js ├── rextexttranslationplugin.js ├── rextexttranslationplugin.min.js ├── rextexttruncatorplugin.js ├── rextexttruncatorplugin.min.js ├── rextexttypingplugin.js ├── rextexttypingplugin.min.js ├── rextintrgbplugin.js ├── rextintrgbplugin.min.js ├── rextitlelabel.js ├── rextitlelabel.min.js ├── rextoast.js ├── rextoast.min.js ├── rextoggleswitch.js ├── rextoggleswitch.min.js ├── rextoggleswitchplugin.js ├── rextoggleswitchplugin.min.js ├── rextoonifypipelineplugin.js ├── rextoonifypipelineplugin.min.js ├── rextouchcursorplugin.js ├── rextouchcursorplugin.min.js ├── rextoucheventstopplugin.js ├── rextoucheventstopplugin.min.js ├── rextouchhelperplugin.js ├── rextouchhelperplugin.min.js ├── rextouchstateplugin.js ├── rextouchstateplugin.min.js ├── rextransitionimagepackplugin.js ├── rextransitionimagepackplugin.min.js ├── rextransitionimageplugin.js ├── rextransitionimageplugin.min.js ├── rextrees.js ├── rextrees.min.js ├── rextriangle.js ├── rextriangle.min.js ├── rextriangleplugin.js ├── rextriangleplugin.min.js ├── rextweaker.js ├── rextweaker.min.js ├── rexuiplugin.js ├── rexuiplugin.min.js ├── rexuniqueitemlistplugin.js ├── rexuniqueitemlistplugin.min.js ├── rexviewportcoordinateplugin.js ├── rexviewportcoordinateplugin.min.js ├── rexvirtualjoystickplugin.js ├── rexvirtualjoystickplugin.min.js ├── rexwaiteventsplugin.js ├── rexwaiteventsplugin.min.js ├── rexwarppipelineplugin.js ├── rexwarppipelineplugin.min.js ├── rexwebfontloaderplugin.js ├── rexwebfontloaderplugin.min.js ├── rexxorplugin.js ├── rexxorplugin.min.js ├── rexyamleventsheetsplugin.js ├── rexyamleventsheetsplugin.min.js ├── rexyamlscenario.js ├── rexyamlscenario.min.js ├── rexyamlscenarioplugin.js ├── rexyamlscenarioplugin.min.js ├── rexymlachievementsplugin.js ├── rexymlachievementsplugin.min.js ├── rexymlconditionstableplugin.js ├── rexymlconditionstableplugin.min.js ├── rexyoutubeplayerplugin.js └── rexyoutubeplayerplugin.min.js ├── docs ├── docs │ ├── achievements.md │ ├── alphamaskimage.md │ ├── anchor.md │ ├── angle.md │ ├── animation.md │ ├── arcade-body.md │ ├── arcade-gameobject.md │ ├── arcade-tcrp-player.md │ ├── arcade-tcrp-recorder.md │ ├── arcade-tcrp-step-runner.md │ ├── arcade-world.md │ ├── array-addremove.md │ ├── array-filter.md │ ├── array-random.md │ ├── array-sort.md │ ├── audio.md │ ├── awaitloader.md │ ├── awaytime.md │ ├── base64.md │ ├── bbcodetext.md │ ├── bitmaptext.md │ ├── bitmapzone.md │ ├── blendmode.md │ ├── blitter.md │ ├── board-bejeweled.md │ ├── board-chessdata.md │ ├── board-fieldofview.md │ ├── board-hexagongrid.md │ ├── board-hexagonmap.md │ ├── board-image.md │ ├── board-match.md │ ├── board-miniboard.md │ ├── board-monopoly.md │ ├── board-moveto.md │ ├── board-overview.md │ ├── board-pathfinder.md │ ├── board-quadgrid.md │ ├── board-shape.md │ ├── board-sprite.md │ ├── board-texture.md │ ├── board-tilemap.md │ ├── board.md │ ├── bounds.md │ ├── bracketparser.md │ ├── bracketparser2.md │ ├── buffdata.md │ ├── buildarcadeobject.md │ ├── bullet.md │ ├── button.md │ ├── camera-controller.md │ ├── camera-effects.md │ ├── camera-shader-effect.md │ ├── camera.md │ ├── canvas-circularprogress.md │ ├── canvas-data.md │ ├── canvas-lineprogress.md │ ├── canvas-roundrectangle.md │ ├── canvas-texture.md │ ├── canvas.md │ ├── canvasinput.md │ ├── capitalizes-first.md │ ├── charactercache.md │ ├── circlemaskimage.md │ ├── clamp.md │ ├── clickoutside.md │ ├── clock.md │ ├── color.md │ ├── conditionstable.md │ ├── config-data.md │ ├── container.md │ ├── containerlite-perspective.md │ ├── containerlite-skew.md │ ├── containerlite.md │ ├── create-number-array.md │ ├── csvscenario.md │ ├── csvtoarray.md │ ├── csvtohashtable.md │ ├── cursor.md │ ├── cursoratbounds.md │ ├── curve-spiral.md │ ├── cutjigsawimage.md │ ├── datamanager.md │ ├── date.md │ ├── device.md │ ├── dialog-quest.md │ ├── distance.md │ ├── domelement.md │ ├── drag.md │ ├── dragrotate.md │ ├── dropdown.md │ ├── dynamic-texture.md │ ├── dynamicbitmaptext.md │ ├── dynamictext.md │ ├── ease-function.md │ ├── easedata.md │ ├── easemove.md │ ├── effect-properties.md │ ├── effectlayer-outline.md │ ├── eightdirection.md │ ├── eventemitter3.md │ ├── eventpromise.md │ ├── expression-parser.md │ ├── fadeoutdestroy.md │ ├── fadevolume.md │ ├── filechooser.md │ ├── filedropzone.md │ ├── firebase-auth.md │ ├── firebase-broadcast.md │ ├── firebase-files.md │ ├── firebase-firestore.md │ ├── firebase-idalias.md │ ├── firebase-itemtable.md │ ├── firebase-leaderboard.md │ ├── firebase-messages.md │ ├── firebase-onlineuserlist.md │ ├── firebase-overview.md │ ├── firebase-singleroom.md │ ├── firebase-storage.md │ ├── flash.md │ ├── flip.md │ ├── format.md │ ├── framemanager.md │ ├── fsm.md │ ├── fullscreen.md │ ├── fuzzy.md │ ├── game.md │ ├── gameobject.md │ ├── gamepad.md │ ├── gashapon.md │ ├── geom-circle.md │ ├── geom-ellipse.md │ ├── geom-hexagon.md │ ├── geom-line.md │ ├── geom-point.md │ ├── geom-polygon.md │ ├── geom-rectangle.md │ ├── geom-rhombus.md │ ├── geom-triangle.md │ ├── gesture-overview.md │ ├── gesture-pan.md │ ├── gesture-pinch.md │ ├── gesture-press.md │ ├── gesture-rotate.md │ ├── gesture-swipe.md │ ├── gesture-tap.md │ ├── graph-build-from-text.md │ ├── graph-elk-layout.md │ ├── graph.md │ ├── graphics.md │ ├── gridalign.md │ ├── gridcutimage.md │ ├── gridtable.md │ ├── group.md │ ├── groupactions.md │ ├── groupnavigator.md │ ├── handlebars.md │ ├── hiddeninputtext.md │ ├── i18next.md │ ├── image.md │ ├── imagebox.md │ ├── images │ │ ├── board-hexagonmap │ │ │ ├── hexagon-x.png │ │ │ ├── hexagon-y.png │ │ │ ├── parallelogram-0x.png │ │ │ ├── parallelogram-0y.png │ │ │ ├── parallelogram-1x.png │ │ │ ├── parallelogram-1y.png │ │ │ ├── parallelogram-2x.png │ │ │ ├── parallelogram-2y.png │ │ │ ├── triangle-0x.png │ │ │ ├── triangle-0y.png │ │ │ ├── triangle-1x.png │ │ │ └── triangle-1y.png │ │ ├── graph-elk-layout │ │ │ ├── after-alignment.png │ │ │ └── before-alignment.png │ │ ├── icon.svg │ │ └── logo.svg │ ├── imageuriloader.md │ ├── index.md │ ├── input-to-camera.md │ ├── input.md │ ├── inputtext.md │ ├── interception.md │ ├── interpolation.md │ ├── intouching.md │ ├── keyboardcombo.md │ ├── keyboardevents.md │ ├── keyshub.md │ ├── layer.md │ ├── layermanager.md │ ├── levelcounter.md │ ├── lifetime.md │ ├── light.md │ ├── line.md │ ├── list-inputtext.md │ ├── live2d.md │ ├── loader.md │ ├── loading-animation-scene.md │ ├── loadingprogress.md │ ├── localforage-files.md │ ├── localforage.md │ ├── localstorage-data.md │ ├── localstorage.md │ ├── lokijs.md │ ├── luxon.md │ ├── lzstring.md │ ├── mainloop.md │ ├── markedeventsheets.md │ ├── mask.md │ ├── matterjs-attractor.md │ ├── matterjs-gameobject.md │ ├── matterjs-world.md │ ├── matterjs-wrap.md │ ├── mesh.md │ ├── modal-promise.md │ ├── modal.md │ ├── mousewheel.md │ ├── mousewheelscroller.md │ ├── mousewheeltoupdown.md │ ├── moveto.md │ ├── mustache.md │ ├── ninepatch.md │ ├── ninepatch2.md │ ├── nineslice.md │ ├── orientation.md │ ├── pad.md │ ├── particles-along-bounds.md │ ├── particles.md │ ├── path.md │ ├── pathfollower.md │ ├── percentage.md │ ├── perlin.md │ ├── perspective-card.md │ ├── perspective-carousel.md │ ├── perspective-image.md │ ├── perspective-imagecarousel.md │ ├── perspective-rendertexture.md │ ├── perspective-sprite.md │ ├── plane.md │ ├── plugin-list.md │ ├── pluginsystem.md │ ├── png-appender.md │ ├── point-light.md │ ├── polar-coordinate.md │ ├── popup.md │ ├── postfx-pipeline.md │ ├── prefx-pipeline.md │ ├── prompts │ │ └── shape-spinner-custom.txt │ ├── quad-image.md │ ├── quad-rendertexture.md │ ├── quest.md │ ├── random-data-generator.md │ ├── random.md │ ├── randomplace.md │ ├── raycaster.md │ ├── realtimetimers.md │ ├── rendertexture.md │ ├── repeatimage.md │ ├── restorabledata.md │ ├── reverse-string.md │ ├── rexvideo.md │ ├── rope.md │ ├── rotate.md │ ├── rotateto.md │ ├── round-to.md │ ├── runcommands.md │ ├── scaledowndestroy.md │ ├── scalemanager.md │ ├── scaleouter.md │ ├── scene.md │ ├── scenemanager.md │ ├── scripttagloader.md │ ├── scroller.md │ ├── sequence.md │ ├── shader-barrel.md │ ├── shader-builtin.md │ ├── shader-colorreplace.md │ ├── shader-crossstitching.md │ ├── shader-crt.md │ ├── shader-dissolve.md │ ├── shader-dropshadow.md │ ├── shader-fisheye.md │ ├── shader-glowfilter.md │ ├── shader-glowfilter2.md │ ├── shader-grayscale.md │ ├── shader-horrifi.md │ ├── shader-hsladjust.md │ ├── shader-inverse.md │ ├── shader-kawaseblur.md │ ├── shader-outline.md │ ├── shader-pixelation.md │ ├── shader-shockwave.md │ ├── shader-split.md │ ├── shader-swirl.md │ ├── shader-toonify.md │ ├── shader-warp-transition.md │ ├── shader-warp.md │ ├── shader.md │ ├── shake-position.md │ ├── shape-arc.md │ ├── shape-checkbox.md │ ├── shape-circle.md │ ├── shape-circularprogress.md │ ├── shape-cover.md │ ├── shape-curve.md │ ├── shape-custom-progress.md │ ├── shape-custom-shapes.md │ ├── shape-ellipse.md │ ├── shape-fullwindowrectangle.md │ ├── shape-grid.md │ ├── shape-isobox.md │ ├── shape-isotriangle.md │ ├── shape-line.md │ ├── shape-line2.md │ ├── shape-lineprogress.md │ ├── shape-polygon.md │ ├── shape-quad.md │ ├── shape-rectangle.md │ ├── shape-roundrectangle.md │ ├── shape-roundrectangleprogress.md │ ├── shape-spinner.md │ ├── shape-star.md │ ├── shape-toggleswitch.md │ ├── shape-triangle.md │ ├── shape-triangle2.md │ ├── shatter-image.md │ ├── shatter-rendertexture.md │ ├── ship.md │ ├── skew-image.md │ ├── skew-rendertexture.md │ ├── slider.md │ ├── snap.md │ ├── snapshot.md │ ├── sprite.md │ ├── statemanager.md │ ├── step.md │ ├── structs-list.md │ ├── structs-set.md │ ├── tagplayer.md │ ├── tagtext.md │ ├── tcrp-player.md │ ├── tcrp-recoder.md │ ├── text.md │ ├── textedit.md │ ├── textpage.md │ ├── textplayer.md │ ├── texttranslation.md │ ├── texttruncator.md │ ├── texttyping.md │ ├── textures.md │ ├── tiledmapdata.md │ ├── tilemap.md │ ├── tilesprite.md │ ├── timeline.md │ ├── timer.md │ ├── tintrgb.md │ ├── tools.md │ ├── touchevents.md │ ├── toucheventstop.md │ ├── touchstate.md │ ├── transitionimage.md │ ├── transitionimagepack.md │ ├── tween.md │ ├── ui-badgelabel.md │ ├── ui-basesizer.md │ ├── ui-buttons.md │ ├── ui-chart.md │ ├── ui-colorcomponents.md │ ├── ui-colorinput.md │ ├── ui-colorpicker.md │ ├── ui-confirmaction.md │ ├── ui-confirmactionbutton.md │ ├── ui-confirmdialog.md │ ├── ui-dialog.md │ ├── ui-dropdownlist.md │ ├── ui-expbar.md │ ├── ui-fileselectorbutton.md │ ├── ui-fixwidthbuttons.md │ ├── ui-fixwidthsizer.md │ ├── ui-folder.md │ ├── ui-fullscreenbutton.md │ ├── ui-gridbuttons.md │ ├── ui-gridsizer.md │ ├── ui-gridtable.md │ ├── ui-holygrail.md │ ├── ui-imageinputlabel.md │ ├── ui-knob.md │ ├── ui-label.md │ ├── ui-menu.md │ ├── ui-nameinputdialog.md │ ├── ui-namevaluelabel.md │ ├── ui-numberbar.md │ ├── ui-overlapsizer.md │ ├── ui-overview.md │ ├── ui-pages.md │ ├── ui-perspectivecard.md │ ├── ui-scrollablepanel.md │ ├── ui-scrollbar.md │ ├── ui-simpledropdownlist.md │ ├── ui-simplelabel.md │ ├── ui-simpletextbox.md │ ├── ui-simpletitlelabel.md │ ├── ui-sizer.md │ ├── ui-slider.md │ ├── ui-splitpanels.md │ ├── ui-style.md │ ├── ui-tabpages.md │ ├── ui-tabs.md │ ├── ui-text-helper.md │ ├── ui-textarea.md │ ├── ui-textareainput.md │ ├── ui-textbox.md │ ├── ui-titlelabel.md │ ├── ui-toast.md │ ├── ui-toastqueue.md │ ├── ui-trees.md │ ├── ui-tweaker.md │ ├── uniqueitemlist.md │ ├── uuid.md │ ├── vector2.md │ ├── video.md │ ├── viewport-coordinate.md │ ├── virtualjoystick.md │ ├── waitevents.md │ ├── webfontloader.md │ ├── wrap.md │ ├── xor.md │ ├── ymlachievements.md │ ├── ymlconditionstable.md │ ├── youtubeplayer.md │ └── zone.md ├── mkdocs.yml ├── serve.bat ├── site │ ├── 404.html │ ├── achievements │ │ └── index.html │ ├── alphamaskimage │ │ └── index.html │ ├── anchor │ │ └── index.html │ ├── angle │ │ └── index.html │ ├── animation │ │ └── index.html │ ├── arcade-body │ │ └── index.html │ ├── arcade-gameobject │ │ └── index.html │ ├── arcade-tcrp-player │ │ └── index.html │ ├── arcade-tcrp-recorder │ │ └── index.html │ ├── arcade-tcrp-step-runner │ │ └── index.html │ ├── arcade-world │ │ └── index.html │ ├── array-addremove │ │ └── index.html │ ├── array-filter │ │ └── index.html │ ├── array-random │ │ └── index.html │ ├── array-sort │ │ └── index.html │ ├── assets │ │ ├── images │ │ │ └── favicon.png │ │ ├── javascripts │ │ │ ├── bundle.c8b220af.min.js │ │ │ ├── bundle.c8b220af.min.js.map │ │ │ ├── lunr │ │ │ │ ├── min │ │ │ │ │ ├── lunr.ar.min.js │ │ │ │ │ ├── lunr.da.min.js │ │ │ │ │ ├── lunr.de.min.js │ │ │ │ │ ├── lunr.du.min.js │ │ │ │ │ ├── lunr.el.min.js │ │ │ │ │ ├── lunr.es.min.js │ │ │ │ │ ├── lunr.fi.min.js │ │ │ │ │ ├── lunr.fr.min.js │ │ │ │ │ ├── lunr.he.min.js │ │ │ │ │ ├── lunr.hi.min.js │ │ │ │ │ ├── lunr.hu.min.js │ │ │ │ │ ├── lunr.hy.min.js │ │ │ │ │ ├── lunr.it.min.js │ │ │ │ │ ├── lunr.ja.min.js │ │ │ │ │ ├── lunr.jp.min.js │ │ │ │ │ ├── lunr.kn.min.js │ │ │ │ │ ├── lunr.ko.min.js │ │ │ │ │ ├── lunr.multi.min.js │ │ │ │ │ ├── lunr.nl.min.js │ │ │ │ │ ├── lunr.no.min.js │ │ │ │ │ ├── lunr.pt.min.js │ │ │ │ │ ├── lunr.ro.min.js │ │ │ │ │ ├── lunr.ru.min.js │ │ │ │ │ ├── lunr.sa.min.js │ │ │ │ │ ├── lunr.stemmer.support.min.js │ │ │ │ │ ├── lunr.sv.min.js │ │ │ │ │ ├── lunr.ta.min.js │ │ │ │ │ ├── lunr.te.min.js │ │ │ │ │ ├── lunr.th.min.js │ │ │ │ │ ├── lunr.tr.min.js │ │ │ │ │ ├── lunr.vi.min.js │ │ │ │ │ └── lunr.zh.min.js │ │ │ │ ├── tinyseg.js │ │ │ │ └── wordcut.js │ │ │ └── workers │ │ │ │ ├── search.f8cc74c7.min.js │ │ │ │ └── search.f8cc74c7.min.js.map │ │ └── stylesheets │ │ │ ├── main.4af4bdda.min.css │ │ │ ├── main.4af4bdda.min.css.map │ │ │ ├── palette.06af60db.min.css │ │ │ └── palette.06af60db.min.css.map │ ├── audio │ │ └── index.html │ ├── awaitloader │ │ └── index.html │ ├── awaytime │ │ └── index.html │ ├── base64 │ │ └── index.html │ ├── bbcodetext │ │ └── index.html │ ├── bitmaptext │ │ └── index.html │ ├── bitmapzone │ │ └── index.html │ ├── blendmode │ │ └── index.html │ ├── blitter │ │ └── index.html │ ├── board-bejeweled │ │ └── index.html │ ├── board-chessdata │ │ └── index.html │ ├── board-fieldofview │ │ └── index.html │ ├── board-hexagongrid │ │ └── index.html │ ├── board-hexagonmap │ │ └── index.html │ ├── board-image │ │ └── index.html │ ├── board-match │ │ └── index.html │ ├── board-miniboard │ │ └── index.html │ ├── board-monopoly │ │ └── index.html │ ├── board-moveto │ │ └── index.html │ ├── board-overview │ │ └── index.html │ ├── board-pathfinder │ │ └── index.html │ ├── board-quadgrid │ │ └── index.html │ ├── board-shape │ │ └── index.html │ ├── board-sprite │ │ └── index.html │ ├── board-texture │ │ └── index.html │ ├── board-tilemap │ │ └── index.html │ ├── board │ │ └── index.html │ ├── bounds │ │ └── index.html │ ├── bracketparser │ │ └── index.html │ ├── bracketparser2 │ │ └── index.html │ ├── buffdata │ │ └── index.html │ ├── buildarcadeobject │ │ └── index.html │ ├── bullet │ │ └── index.html │ ├── button │ │ └── index.html │ ├── camera-controller │ │ └── index.html │ ├── camera-effects │ │ └── index.html │ ├── camera-shader-effect │ │ └── index.html │ ├── camera │ │ └── index.html │ ├── canvas-circularprogress │ │ └── index.html │ ├── canvas-data │ │ └── index.html │ ├── canvas-lineprogress │ │ └── index.html │ ├── canvas-roundrectangle │ │ └── index.html │ ├── canvas-texture │ │ └── index.html │ ├── canvas │ │ └── index.html │ ├── canvasinput │ │ └── index.html │ ├── capitalizes-first │ │ └── index.html │ ├── charactercache │ │ └── index.html │ ├── circlemaskimage │ │ └── index.html │ ├── clamp │ │ └── index.html │ ├── clickoutside │ │ └── index.html │ ├── clock │ │ └── index.html │ ├── color │ │ └── index.html │ ├── conditionstable │ │ └── index.html │ ├── config-data │ │ └── index.html │ ├── container │ │ └── index.html │ ├── containerlite-perspective │ │ └── index.html │ ├── containerlite-skew │ │ └── index.html │ ├── containerlite │ │ └── index.html │ ├── create-number-array │ │ └── index.html │ ├── csvscenario │ │ └── index.html │ ├── csvtoarray │ │ └── index.html │ ├── csvtohashtable │ │ └── index.html │ ├── cursor │ │ └── index.html │ ├── cursoratbounds │ │ └── index.html │ ├── curve-spiral │ │ └── index.html │ ├── cutjigsawimage │ │ └── index.html │ ├── datamanager │ │ └── index.html │ ├── date │ │ └── index.html │ ├── device │ │ └── index.html │ ├── dialog-quest │ │ └── index.html │ ├── distance │ │ └── index.html │ ├── domelement │ │ └── index.html │ ├── drag │ │ └── index.html │ ├── dragrotate │ │ └── index.html │ ├── dropdown │ │ └── index.html │ ├── dynamic-texture │ │ └── index.html │ ├── dynamicbitmaptext │ │ └── index.html │ ├── dynamictext │ │ └── index.html │ ├── ease-function │ │ └── index.html │ ├── easedata │ │ └── index.html │ ├── easemove │ │ └── index.html │ ├── effect-properties │ │ └── index.html │ ├── effectlayer-outline │ │ └── index.html │ ├── eightdirection │ │ └── index.html │ ├── eventemitter3 │ │ └── index.html │ ├── eventpromise │ │ └── index.html │ ├── expression-parser │ │ └── index.html │ ├── fadeoutdestroy │ │ └── index.html │ ├── fadevolume │ │ └── index.html │ ├── filechooser │ │ └── index.html │ ├── filedropzone │ │ └── index.html │ ├── firebase-auth │ │ └── index.html │ ├── firebase-broadcast │ │ └── index.html │ ├── firebase-files │ │ └── index.html │ ├── firebase-firestore │ │ └── index.html │ ├── firebase-idalias │ │ └── index.html │ ├── firebase-itemtable │ │ └── index.html │ ├── firebase-leaderboard │ │ └── index.html │ ├── firebase-messages │ │ └── index.html │ ├── firebase-onlineuserlist │ │ └── index.html │ ├── firebase-overview │ │ └── index.html │ ├── firebase-singleroom │ │ └── index.html │ ├── firebase-storage │ │ └── index.html │ ├── flash │ │ └── index.html │ ├── flip │ │ └── index.html │ ├── format │ │ └── index.html │ ├── framemanager │ │ └── index.html │ ├── fsm │ │ └── index.html │ ├── fullscreen │ │ └── index.html │ ├── fuzzy │ │ └── index.html │ ├── game │ │ └── index.html │ ├── gameobject │ │ └── index.html │ ├── gamepad │ │ └── index.html │ ├── gashapon │ │ └── index.html │ ├── geom-circle │ │ └── index.html │ ├── geom-ellipse │ │ └── index.html │ ├── geom-hexagon │ │ └── index.html │ ├── geom-line │ │ └── index.html │ ├── geom-point │ │ └── index.html │ ├── geom-polygon │ │ └── index.html │ ├── geom-rectangle │ │ └── index.html │ ├── geom-rhombus │ │ └── index.html │ ├── geom-triangle │ │ └── index.html │ ├── gesture-overview │ │ └── index.html │ ├── gesture-pan │ │ └── index.html │ ├── gesture-pinch │ │ └── index.html │ ├── gesture-press │ │ └── index.html │ ├── gesture-rotate │ │ └── index.html │ ├── gesture-swipe │ │ └── index.html │ ├── gesture-tap │ │ └── index.html │ ├── graph-build-from-text │ │ └── index.html │ ├── graph-elk-layout │ │ └── index.html │ ├── graph │ │ └── index.html │ ├── graphics │ │ └── index.html │ ├── gridalign │ │ └── index.html │ ├── gridcutimage │ │ └── index.html │ ├── gridtable │ │ └── index.html │ ├── group │ │ └── index.html │ ├── groupactions │ │ └── index.html │ ├── groupnavigator │ │ └── index.html │ ├── handlebars │ │ └── index.html │ ├── hiddeninputtext │ │ └── index.html │ ├── i18next │ │ └── index.html │ ├── image │ │ └── index.html │ ├── imagebox │ │ └── index.html │ ├── images │ │ ├── board-hexagonmap │ │ │ ├── hexagon-x.png │ │ │ ├── hexagon-y.png │ │ │ ├── parallelogram-0x.png │ │ │ ├── parallelogram-0y.png │ │ │ ├── parallelogram-1x.png │ │ │ ├── parallelogram-1y.png │ │ │ ├── parallelogram-2x.png │ │ │ ├── parallelogram-2y.png │ │ │ ├── triangle-0x.png │ │ │ ├── triangle-0y.png │ │ │ ├── triangle-1x.png │ │ │ └── triangle-1y.png │ │ ├── graph-elk-layout │ │ │ ├── after-alignment.png │ │ │ └── before-alignment.png │ │ ├── icon.svg │ │ └── logo.svg │ ├── imageuriloader │ │ └── index.html │ ├── index.html │ ├── input-to-camera │ │ └── index.html │ ├── input │ │ └── index.html │ ├── inputtext │ │ └── index.html │ ├── interception │ │ └── index.html │ ├── interpolation │ │ └── index.html │ ├── intouching │ │ └── index.html │ ├── keyboardcombo │ │ └── index.html │ ├── keyboardevents │ │ └── index.html │ ├── keyshub │ │ └── index.html │ ├── layer │ │ └── index.html │ ├── layermanager │ │ └── index.html │ ├── levelcounter │ │ └── index.html │ ├── lifetime │ │ └── index.html │ ├── light │ │ └── index.html │ ├── line │ │ └── index.html │ ├── list-inputtext │ │ └── index.html │ ├── live2d │ │ └── index.html │ ├── loader │ │ └── index.html │ ├── loading-animation-scene │ │ └── index.html │ ├── loadingprogress │ │ └── index.html │ ├── localforage-files │ │ └── index.html │ ├── localforage │ │ └── index.html │ ├── localstorage-data │ │ └── index.html │ ├── localstorage │ │ └── index.html │ ├── lokijs │ │ └── index.html │ ├── luxon │ │ └── index.html │ ├── lzstring │ │ └── index.html │ ├── mainloop │ │ └── index.html │ ├── markedeventsheets │ │ └── index.html │ ├── mask │ │ └── index.html │ ├── matterjs-attractor │ │ └── index.html │ ├── matterjs-gameobject │ │ └── index.html │ ├── matterjs-world │ │ └── index.html │ ├── matterjs-wrap │ │ └── index.html │ ├── mesh │ │ └── index.html │ ├── modal-promise │ │ └── index.html │ ├── modal │ │ └── index.html │ ├── mousewheel │ │ └── index.html │ ├── mousewheelscroller │ │ └── index.html │ ├── mousewheeltoupdown │ │ └── index.html │ ├── moveto │ │ └── index.html │ ├── mustache │ │ └── index.html │ ├── ninepatch │ │ └── index.html │ ├── ninepatch2 │ │ └── index.html │ ├── nineslice │ │ └── index.html │ ├── orientation │ │ └── index.html │ ├── pad │ │ └── index.html │ ├── particles-along-bounds │ │ └── index.html │ ├── particles │ │ └── index.html │ ├── path │ │ └── index.html │ ├── pathfollower │ │ └── index.html │ ├── percentage │ │ └── index.html │ ├── perlin │ │ └── index.html │ ├── perspective-card │ │ └── index.html │ ├── perspective-carousel │ │ └── index.html │ ├── perspective-image │ │ └── index.html │ ├── perspective-imagecarousel │ │ └── index.html │ ├── perspective-rendertexture │ │ └── index.html │ ├── perspective-sprite │ │ └── index.html │ ├── plane │ │ └── index.html │ ├── plugin-list │ │ └── index.html │ ├── pluginsystem │ │ └── index.html │ ├── png-appender │ │ └── index.html │ ├── point-light │ │ └── index.html │ ├── polar-coordinate │ │ └── index.html │ ├── popup │ │ └── index.html │ ├── postfx-pipeline │ │ └── index.html │ ├── prefx-pipeline │ │ └── index.html │ ├── prompts │ │ └── shape-spinner-custom.txt │ ├── quad-image │ │ └── index.html │ ├── quad-rendertexture │ │ └── index.html │ ├── quest │ │ └── index.html │ ├── random-data-generator │ │ └── index.html │ ├── random │ │ └── index.html │ ├── randomplace │ │ └── index.html │ ├── raycaster │ │ └── index.html │ ├── realtimetimers │ │ └── index.html │ ├── rendertexture │ │ └── index.html │ ├── repeatimage │ │ └── index.html │ ├── restorabledata │ │ └── index.html │ ├── reverse-string │ │ └── index.html │ ├── rexvideo │ │ └── index.html │ ├── rope │ │ └── index.html │ ├── rotate │ │ └── index.html │ ├── rotateto │ │ └── index.html │ ├── round-to │ │ └── index.html │ ├── runcommands │ │ └── index.html │ ├── scaledowndestroy │ │ └── index.html │ ├── scalemanager │ │ └── index.html │ ├── scaleouter │ │ └── index.html │ ├── scene │ │ └── index.html │ ├── scenemanager │ │ └── index.html │ ├── scripttagloader │ │ └── index.html │ ├── scroller │ │ └── index.html │ ├── search │ │ └── search_index.json │ ├── sequence │ │ └── index.html │ ├── shader-barrel │ │ └── index.html │ ├── shader-builtin │ │ └── index.html │ ├── shader-colorreplace │ │ └── index.html │ ├── shader-crossstitching │ │ └── index.html │ ├── shader-crt │ │ └── index.html │ ├── shader-dissolve │ │ └── index.html │ ├── shader-dropshadow │ │ └── index.html │ ├── shader-fisheye │ │ └── index.html │ ├── shader-glowfilter │ │ └── index.html │ ├── shader-glowfilter2 │ │ └── index.html │ ├── shader-grayscale │ │ └── index.html │ ├── shader-horrifi │ │ └── index.html │ ├── shader-hsladjust │ │ └── index.html │ ├── shader-inverse │ │ └── index.html │ ├── shader-kawaseblur │ │ └── index.html │ ├── shader-outline │ │ └── index.html │ ├── shader-pixelation │ │ └── index.html │ ├── shader-shockwave │ │ └── index.html │ ├── shader-split │ │ └── index.html │ ├── shader-swirl │ │ └── index.html │ ├── shader-toonify │ │ └── index.html │ ├── shader-warp-transition │ │ └── index.html │ ├── shader-warp │ │ └── index.html │ ├── shader │ │ └── index.html │ ├── shake-position │ │ └── index.html │ ├── shape-arc │ │ └── index.html │ ├── shape-checkbox │ │ └── index.html │ ├── shape-circle │ │ └── index.html │ ├── shape-circularprogress │ │ └── index.html │ ├── shape-cover │ │ └── index.html │ ├── shape-curve │ │ └── index.html │ ├── shape-custom-progress │ │ └── index.html │ ├── shape-custom-shapes │ │ └── index.html │ ├── shape-ellipse │ │ └── index.html │ ├── shape-fullwindowrectangle │ │ └── index.html │ ├── shape-grid │ │ └── index.html │ ├── shape-isobox │ │ └── index.html │ ├── shape-isotriangle │ │ └── index.html │ ├── shape-line │ │ └── index.html │ ├── shape-line2 │ │ └── index.html │ ├── shape-lineprogress │ │ └── index.html │ ├── shape-polygon │ │ └── index.html │ ├── shape-quad │ │ └── index.html │ ├── shape-rectangle │ │ └── index.html │ ├── shape-roundrectangle │ │ └── index.html │ ├── shape-roundrectangleprogress │ │ └── index.html │ ├── shape-spinner │ │ └── index.html │ ├── shape-star │ │ └── index.html │ ├── shape-toggleswitch │ │ └── index.html │ ├── shape-triangle │ │ └── index.html │ ├── shape-triangle2 │ │ └── index.html │ ├── shatter-image │ │ └── index.html │ ├── shatter-rendertexture │ │ └── index.html │ ├── ship │ │ └── index.html │ ├── sitemap.xml │ ├── sitemap.xml.gz │ ├── skew-image │ │ └── index.html │ ├── skew-rendertexture │ │ └── index.html │ ├── slider │ │ └── index.html │ ├── snap │ │ └── index.html │ ├── snapshot │ │ └── index.html │ ├── sprite │ │ └── index.html │ ├── statemanager │ │ └── index.html │ ├── step │ │ └── index.html │ ├── structs-list │ │ └── index.html │ ├── structs-set │ │ └── index.html │ ├── tagplayer │ │ └── index.html │ ├── tagtext │ │ └── index.html │ ├── tcrp-player │ │ └── index.html │ ├── tcrp-recoder │ │ └── index.html │ ├── text │ │ └── index.html │ ├── textedit │ │ └── index.html │ ├── textpage │ │ └── index.html │ ├── textplayer │ │ └── index.html │ ├── texttranslation │ │ └── index.html │ ├── texttruncator │ │ └── index.html │ ├── texttyping │ │ └── index.html │ ├── textures │ │ └── index.html │ ├── tiledmapdata │ │ └── index.html │ ├── tilemap │ │ └── index.html │ ├── tilesprite │ │ └── index.html │ ├── timeline │ │ └── index.html │ ├── timer │ │ └── index.html │ ├── tintrgb │ │ └── index.html │ ├── tools │ │ └── index.html │ ├── touchevents │ │ └── index.html │ ├── toucheventstop │ │ └── index.html │ ├── touchstate │ │ └── index.html │ ├── transitionimage │ │ └── index.html │ ├── transitionimagepack │ │ └── index.html │ ├── tween │ │ └── index.html │ ├── ui-badgelabel │ │ └── index.html │ ├── ui-basesizer │ │ └── index.html │ ├── ui-buttons │ │ └── index.html │ ├── ui-chart │ │ └── index.html │ ├── ui-colorcomponents │ │ └── index.html │ ├── ui-colorinput │ │ └── index.html │ ├── ui-colorpicker │ │ └── index.html │ ├── ui-confirmaction │ │ └── index.html │ ├── ui-confirmactionbutton │ │ └── index.html │ ├── ui-confirmdialog │ │ └── index.html │ ├── ui-dialog │ │ └── index.html │ ├── ui-dropdownlist │ │ └── index.html │ ├── ui-expbar │ │ └── index.html │ ├── ui-fileselectorbutton │ │ └── index.html │ ├── ui-fixwidthbuttons │ │ └── index.html │ ├── ui-fixwidthsizer │ │ └── index.html │ ├── ui-folder │ │ └── index.html │ ├── ui-fullscreenbutton │ │ └── index.html │ ├── ui-gridbuttons │ │ └── index.html │ ├── ui-gridsizer │ │ └── index.html │ ├── ui-gridtable │ │ └── index.html │ ├── ui-holygrail │ │ └── index.html │ ├── ui-imageinputlabel │ │ └── index.html │ ├── ui-knob │ │ └── index.html │ ├── ui-label │ │ └── index.html │ ├── ui-menu │ │ └── index.html │ ├── ui-nameinputdialog │ │ └── index.html │ ├── ui-namevaluelabel │ │ └── index.html │ ├── ui-numberbar │ │ └── index.html │ ├── ui-overlapsizer │ │ └── index.html │ ├── ui-overview │ │ └── index.html │ ├── ui-pages │ │ └── index.html │ ├── ui-perspectivecard │ │ └── index.html │ ├── ui-scrollablepanel │ │ └── index.html │ ├── ui-scrollbar │ │ └── index.html │ ├── ui-simpledropdownlist │ │ └── index.html │ ├── ui-simplelabel │ │ └── index.html │ ├── ui-simpletextbox │ │ └── index.html │ ├── ui-simpletitlelabel │ │ └── index.html │ ├── ui-sizer │ │ └── index.html │ ├── ui-slider │ │ └── index.html │ ├── ui-splitpanels │ │ └── index.html │ ├── ui-style │ │ └── index.html │ ├── ui-tabpages │ │ └── index.html │ ├── ui-tabs │ │ └── index.html │ ├── ui-text-helper │ │ └── index.html │ ├── ui-textarea │ │ └── index.html │ ├── ui-textareainput │ │ └── index.html │ ├── ui-textbox │ │ └── index.html │ ├── ui-titlelabel │ │ └── index.html │ ├── ui-toast │ │ └── index.html │ ├── ui-toastqueue │ │ └── index.html │ ├── ui-trees │ │ └── index.html │ ├── ui-tweaker │ │ └── index.html │ ├── uniqueitemlist │ │ └── index.html │ ├── uuid │ │ └── index.html │ ├── vector2 │ │ └── index.html │ ├── video │ │ └── index.html │ ├── viewport-coordinate │ │ └── index.html │ ├── virtualjoystick │ │ └── index.html │ ├── waitevents │ │ └── index.html │ ├── webfontloader │ │ └── index.html │ ├── wrap │ │ └── index.html │ ├── xor │ │ └── index.html │ ├── ymlachievements │ │ └── index.html │ ├── ymlconditionstable │ │ └── index.html │ ├── youtubeplayer │ │ └── index.html │ └── zone │ │ └── index.html └── upgrade.bat ├── examples ├── achievements │ ├── achievements.bat │ └── achievements.js ├── alphamaskimage │ ├── alpha-mask-image.bat │ └── alpha-mask-image.js ├── anchor │ ├── anchor.bat │ ├── anchor.js │ ├── resize.bat │ ├── resize.js │ ├── update-viewport.bat │ ├── update-viewport.js │ ├── zoom-scroll.bat │ └── zoom-scroll.js ├── arcadestepclock │ ├── clock.bat │ └── clock.js ├── arcadetcrp │ ├── platformer.bat │ ├── platformer.js │ ├── player.bat │ └── player.js ├── audio │ ├── next-scene-play-music.bat │ ├── next-scene-play-music.js │ ├── unlock-html5-audio.bat │ ├── unlock-html5-audio.js │ └── webaudio-memory-leakage │ │ ├── decoder.bat │ │ ├── decoder.js │ │ ├── howler-unload.bat │ │ ├── howler-unload.js │ │ ├── memory-leakage.bat │ │ ├── memory-leakage.js │ │ ├── release-context.bat │ │ └── release-context.js ├── awaitloader │ ├── async-ts.bat │ ├── async-ts.ts │ ├── awaitloader-ts.bat │ ├── awaitloader-ts.ts │ ├── awaitloader.bat │ ├── awaitloader.js │ ├── load-ttf.bat │ ├── load-ttf.ts │ ├── progress.bat │ └── progress.js ├── awaytime │ ├── awaytime.bat │ ├── awaytime.js │ ├── pause-time.bat │ └── pause-time.js ├── bbcodelog │ ├── log.bat │ └── log.js ├── bbcodetext │ ├── align.bat │ ├── align.js │ ├── bbcodetext.bat │ ├── bbcodetext.js │ ├── esc-typing.bat │ ├── esc-typing.js │ ├── esc.bat │ ├── esc.js │ ├── font-family.bat │ ├── font-family.js │ ├── free-pools.bat │ ├── free-pools.js │ ├── generate-texture.bat │ ├── generate-texture.js │ ├── get-hitarea.bat │ ├── get-hitarea.js │ ├── hitarea-fontsize.bat │ ├── hitarea-fontsize.js │ ├── hitarea.bat │ ├── hitarea.js │ ├── image-color.bat │ ├── image-color.js │ ├── image-height.bat │ ├── image-height.js │ ├── image-origin.bat │ ├── image-origin.js │ ├── letter-spacing.bat │ ├── letter-spacing.js │ ├── line-spacing.bat │ ├── line-spacing.js │ ├── measure-textmargins.bat │ ├── measure-textmargins.js │ ├── mix-wrap.bat │ ├── mix-wrap.js │ ├── multiple-instances.bat │ ├── multiple-instances.js │ ├── no-stoke.bat │ ├── no-stoke.js │ ├── performance.bat │ ├── performance.js │ ├── performance2.bat │ ├── performance2.js │ ├── prepare-canvas.bat │ ├── prepare-canvas.js │ ├── prev-next-page.bat │ ├── prev-next-page.js │ ├── resolution.bat │ ├── resolution.js │ ├── reuse-metrics.bat │ ├── reuse-metrics.js │ ├── rtl.bat │ ├── rtl.js │ ├── shadow-color.bat │ ├── shadow-color.js │ ├── shadow-underline.bat │ ├── shadow-underline.js │ ├── stroke.bat │ ├── stroke.js │ ├── test-wrap.bat │ ├── test-wrap.js │ ├── textwrap.bat │ ├── textwrap.js │ ├── typing-page-by-page.bat │ ├── typing-page-by-page.js │ ├── typing.bat │ ├── typing.js │ ├── wordwrap.bat │ └── wordwrap.js ├── behavior-tree │ ├── abort-if.bat │ ├── abort-if.js │ ├── continue-if.bat │ ├── continue-if.js │ ├── cooldown.bat │ ├── cooldown.js │ ├── dump-load.bat │ ├── dump-load.js │ ├── if-selector.bat │ ├── if-selector.js │ ├── if.bat │ ├── if.js │ ├── parallel.bat │ ├── parallel.js │ ├── random-selector.bat │ ├── random-selector.js │ ├── service.bat │ ├── service.js │ ├── shuffle-selector.bat │ ├── shuffle-selector.js │ ├── switch-selector.bat │ ├── switch-selector.js │ ├── test.bat │ ├── test.js │ ├── time-limit.bat │ ├── time-limit.js │ ├── wait-0.bat │ ├── wait-0.js │ ├── weight-selector.bat │ ├── weight-selector.js │ ├── yaml-input.bat │ └── yaml-input.js ├── bitmap-zone │ ├── text-particles.bat │ ├── text-particles.js │ ├── texture-particles.bat │ └── texture-particles.js ├── bitmaptext │ ├── bitmapfont-texture.bat │ ├── bitmapfont-texture.js │ ├── getbounds.bat │ ├── getbounds.js │ ├── lineheight.bat │ ├── lineheight.js │ ├── performance.bat │ ├── performance.js │ ├── tint.bat │ └── tint.js ├── blend-mode │ ├── bitmap-mask.bat │ ├── bitmap-mask.js │ ├── geometry-mask.bat │ └── geometry-mask.js ├── blitter │ ├── blitter.bat │ ├── blitter.js │ ├── stratch.bat │ └── stratch.js ├── board-bejeweled │ ├── app.bat │ ├── app.js │ ├── click.bat │ ├── click.js │ ├── custom-input.bat │ ├── custom-input.js │ ├── default.bat │ ├── default.js │ ├── events-ts.bat │ ├── events-ts.ts │ ├── events.bat │ ├── events.js │ ├── reset-board.bat │ ├── reset-board.js │ ├── save-load.bat │ └── save-load.js ├── board-bejeweled2 │ ├── moving-direction.bat │ ├── moving-direction.js │ ├── test.bat │ └── test.js ├── board-chess │ ├── custom-gameobject-ts.bat │ ├── custom-gameobject-ts.ts │ ├── image.bat │ ├── image.js │ ├── shape.bat │ ├── shape.js │ ├── sprite-ts.bat │ ├── sprite-ts.ts │ ├── sprite.bat │ └── sprite.js ├── board-fieldofview │ ├── big-board.bat │ ├── big-board.js │ ├── field-of-view.bat │ ├── field-of-view.js │ ├── fov-blocker.bat │ ├── fov-blocker.js │ ├── fov-occupied.bat │ ├── fov-occupied.js │ ├── fov-pretest.bat │ ├── fov-pretest.js │ ├── line-of-sight.bat │ ├── line-of-sight.js │ ├── pathfinder-los.bat │ ├── pathfinder-los.js │ ├── perspective.bat │ └── perspective.js ├── board-hexagonmap │ ├── hexagon.bat │ ├── hexagon.js │ ├── parallelogram.bat │ ├── parallelogram.js │ ├── triangle.bat │ └── triangle.js ├── board-match │ ├── group.bat │ ├── group.js │ ├── line-match.bat │ └── line-match.js ├── board-miniboard-moveto │ ├── wander-ts.bat │ ├── wander-ts.ts │ ├── wander.bat │ └── wander.js ├── board-miniboard │ ├── drag-mirror-rotate.bat │ ├── drag-mirror-rotate.js │ ├── drag.bat │ ├── drag.js │ ├── get-bounds.bat │ ├── get-bounds.js │ ├── group4.bat │ └── group4.js ├── board-monopoly │ ├── move-forward.bat │ └── move-forward.js ├── board-moveto │ ├── follow.bat │ ├── follow.js │ ├── move-away.bat │ ├── move-away.js │ ├── push.bat │ ├── push.js │ ├── sneak.bat │ ├── sneak.js │ ├── wander.bat │ ├── wander.js │ ├── wrap.bat │ └── wrap.js ├── board-pathfinder │ ├── attract-repel.bat │ ├── attract-repel.js │ ├── big-board.bat │ ├── big-board.js │ ├── chinese-checkers.bat │ ├── chinese-checkers.js │ ├── draw-path.bat │ ├── draw-path.js │ ├── energy-drain.bat │ ├── energy-drain.js │ ├── find-area-get-path-ts.bat │ ├── find-area-get-path-ts.ts │ ├── find-area-get-path.bat │ ├── find-area-get-path.js │ ├── find-area.bat │ ├── find-area.js │ ├── find-path.bat │ ├── find-path.js │ ├── move-from-high-to-low.bat │ ├── move-from-high-to-low.js │ ├── turning-cost.bat │ └── turning-cost.js ├── board-texture │ ├── create-tile-texture.bat │ └── create-tile-texture.js ├── board-tilemap │ ├── orthogonal.bat │ └── orthogonal.js ├── board │ ├── circle-to-tileXY-array.bat │ ├── circle-to-tileXY-array.js │ ├── destroy-board.bat │ ├── destroy-board.js │ ├── direction-between.bat │ ├── direction-between.js │ ├── drag-to-neighbor.bat │ ├── drag-to-neighbor.js │ ├── draw-grid.bat │ ├── draw-grid.js │ ├── ellipse-to-tileXY-array.bat │ ├── ellipse-to-tileXY-array.js │ ├── filled-ring-chess-array.bat │ ├── filled-ring-chess-array.js │ ├── filled-ring-tileXY-array.bat │ ├── filled-ring-tileXY-array.js │ ├── gameobjectout-event.bat │ ├── gameobjectout-event.js │ ├── get-boundary-points.bat │ ├── get-boundary-points.js │ ├── get-neighbor-tileXY.bat │ ├── get-neighbor-tileXY.js │ ├── get-random-empty-grid.bat │ ├── get-random-empty-grid.js │ ├── get-random-empty-neighbor.bat │ ├── get-random-empty-neighbor.js │ ├── get-tileXY-at-direction.bat │ ├── get-tileXY-at-direction.js │ ├── grid-bounds.bat │ ├── grid-bounds.js │ ├── line-to-tileXY-array.bat │ ├── line-to-tileXY-array.js │ ├── polygon-to-tileXY-array.bat │ ├── polygon-to-tileXY-array.js │ ├── ring-tileXY-array.bat │ ├── ring-tileXY-array.js │ ├── road-tilemap.bat │ ├── road-tilemap.js │ ├── road.bat │ ├── road.js │ ├── touch-event-ts.bat │ ├── touch-event-ts.ts │ ├── touch-event.bat │ ├── touch-event.js │ ├── triangle-to-tileXY-array.bat │ └── triangle-to-tileXY-array.js ├── boids │ ├── boids.bat │ └── boids.js ├── bounds │ ├── drag-bounds.bat │ ├── drag-bounds.js │ ├── target.bat │ ├── target.js │ ├── wrap.bat │ └── wrap.js ├── bracket-parser │ ├── bracket-parser.bat │ ├── bracket-parser.js │ ├── color-bitmaptext.bat │ ├── color-bitmaptext.js │ ├── translate-tagname.bat │ └── translate-tagname.js ├── bracket-parser2 │ ├── bracket-parser.bat │ └── bracket-parser.js ├── buffdata │ ├── buffdata.bat │ ├── buffdata.js │ ├── extend.bat │ └── extend.js ├── build-arcade-object │ ├── arcademethods.bat │ ├── arcademethods.js │ ├── build-arcade-object.bat │ └── build-arcade-object.js ├── bullet │ ├── bullet.bat │ └── bullet.js ├── button │ ├── button.bat │ └── button.js ├── camera-controller │ ├── bounds-scroll.bat │ ├── bounds-scroll.js │ ├── controller-pack.bat │ ├── controller-pack.js │ ├── pan-scroll.bat │ ├── pan-scroll.js │ ├── pinch-zoom.bat │ ├── pinch-zoom.js │ ├── wheel-zoom.bat │ └── wheel-zoom.js ├── camera │ ├── camera-properties.bat │ ├── camera-properties.js │ ├── get-world-position.bat │ ├── get-world-position.js │ ├── pan-to-pointer.bat │ ├── pan-to-pointer.js │ ├── resize-viewport.bat │ └── resize-viewport.js ├── canvas-data │ ├── dump-character-bitmap.bat │ ├── dump-character-bitmap.js │ ├── text-object-to-bitmap.bat │ ├── text-object-to-bitmap.js │ ├── texture-to-color-map.bat │ └── texture-to-color-map.js ├── canvas │ ├── canvas.bat │ ├── canvas.js │ ├── chartjs.bat │ ├── chartjs.js │ ├── clip-frame.bat │ ├── clip-frame.js │ ├── hsv-palette.bat │ ├── hsv-palette.js │ ├── kaleidoscope.bat │ ├── kaleidoscope.js │ ├── load-from-url.bat │ ├── load-from-url.js │ ├── load-local-file.bat │ ├── load-local-file.js │ ├── load-texture.bat │ ├── load-texture.js │ ├── resolution.bat │ └── resolution.js ├── canvasinput │ ├── compact.bat │ ├── compact.js │ ├── modal-dialog.bat │ ├── modal-dialog.js │ ├── number.bat │ ├── number.js │ ├── simple.bat │ ├── simple.js │ ├── text.bat │ ├── text.js │ ├── textarea-resize.bat │ ├── textarea-resize.js │ ├── textarea.bat │ ├── textarea.js │ ├── thin-cursor.bat │ └── thin-cursor.js ├── carousel │ ├── carousel.bat │ └── carousel.js ├── charactercache │ ├── page.bat │ ├── page.js │ ├── settext.bat │ ├── settext.js │ ├── textbox.bat │ ├── textbox.js │ ├── typing.bat │ └── typing.js ├── checkbox │ ├── checkbox.bat │ └── checkbox.js ├── circlemaskimage │ ├── circle-mask-image.bat │ └── circle-mask-image.js ├── circularprogress │ ├── circularprogress.bat │ ├── circularprogress.js │ ├── pie-bar.bat │ └── pie-bar.js ├── circularprogresscanvas │ ├── circularprogress.bat │ └── circularprogress.js ├── clickoutside │ ├── clickoutside.bat │ └── clickoutside.js ├── clock │ ├── clock.bat │ └── clock.js ├── color │ ├── hsv-color-wheel.bat │ └── hsv-color-wheel.js ├── conditions-table │ ├── conditions-table.bat │ └── conditions-table.js ├── container │ ├── simulate-camera.bat │ └── simulate-camera.js ├── containerlite │ ├── add-local.bat │ ├── add-local.js │ ├── add-to-container.bat │ ├── add-to-container.js │ ├── add-to-layer.bat │ ├── add-to-layer.js │ ├── bring-to-top.bat │ ├── bring-to-top.js │ ├── camera-ignore.bat │ ├── camera-ignore.js │ ├── change-origin.bat │ ├── change-origin.js │ ├── container-scale.bat │ ├── container-scale.js │ ├── destroy-panel.bat │ ├── destroy-panel.js │ ├── destroy.bat │ ├── destroy.js │ ├── extend-class.bat │ ├── extend-class.js │ ├── get-by-name-recursive.bat │ ├── get-by-name-recursive.js │ ├── layer-bring-to-top.bat │ ├── layer-bring-to-top.js │ ├── mix-timeline.bat │ ├── mix-timeline.js │ ├── pin.bat │ ├── pin.js │ ├── scene-stop.bat │ ├── scene-stop.js │ ├── send-to-back.bat │ ├── send-to-back.js │ ├── tween-config.bat │ ├── tween-config.js │ ├── tween.bat │ ├── tween.js │ ├── unpin.bat │ └── unpin.js ├── cover │ ├── cover.bat │ ├── cover.js │ ├── multi-camera.bat │ └── multi-camera.js ├── csv-scenario │ ├── goto.bat │ ├── goto.js │ ├── if.bat │ ├── if.js │ ├── invalid-command.bat │ ├── invalid-command.js │ ├── label-exit.bat │ ├── label-exit.js │ ├── logic-if.bat │ ├── logic-if.js │ ├── managers.bat │ ├── managers.js │ ├── offset.bat │ ├── offset.js │ ├── play-promise.bat │ ├── play-promise.js │ ├── skip-waiting.bat │ ├── skip-waiting.js │ ├── task.bat │ ├── task.js │ ├── textplayer.bat │ ├── textplayer.js │ ├── wait.bat │ └── wait.js ├── csv-to-array │ ├── csv-to-array.bat │ ├── csv-to-array.js │ ├── load-csv-to-array.bat │ └── load-csv-to-array.js ├── csv-to-hash-table │ ├── csv-to-hash-table.bat │ ├── csv-to-hash-table.js │ ├── save-load.bat │ ├── save-load.js │ ├── sort.bat │ └── sort.js ├── cursoratbounds │ ├── control-camera.bat │ ├── control-camera.js │ ├── cursor-at-bounds.bat │ └── cursor-at-bounds.js ├── curve-spiral │ ├── particles.bat │ ├── particles.js │ ├── simple.bat │ ├── simple.js │ ├── spiral-curve.bat │ └── spiral-curve.js ├── custom-progress │ ├── copy-path-ts.bat │ ├── copy-path-ts.ts │ ├── copy-path.bat │ ├── copy-path.js │ ├── orb.bat │ ├── orb.js │ ├── pie-mask.bat │ ├── pie-mask.js │ ├── react-circle-progress-bar.bat │ ├── react-circle-progress-bar.js │ ├── round-rectangle-mask.bat │ ├── round-rectangle-mask.js │ ├── round-rectangle.bat │ ├── round-rectangle.js │ ├── set-display-path-segment.bat │ ├── set-display-path-segment.js │ ├── slash-rexui.bat │ ├── slash-rexui.js │ ├── slash.bat │ ├── slash.js │ ├── trapezoid-mask.bat │ ├── trapezoid-mask.js │ ├── wave-mask.bat │ └── wave-mask.js ├── custom-shapes │ ├── checkbox.bat │ ├── checkbox.js │ ├── jigsaw.bat │ ├── jigsaw.js │ ├── speech-bubble-ts.bat │ ├── speech-bubble-ts.ts │ ├── speech-bubble.bat │ ├── speech-bubble.js │ ├── worldxy-to-localxy.bat │ └── worldxy-to-localxy.js ├── cutjigsawimage │ ├── create-pieces.bat │ ├── create-pieces.js │ ├── custom-piece-shape.bat │ ├── custom-piece-shape.js │ ├── drag-drop.bat │ ├── drag-drop.js │ ├── get-edge-callbacks.bat │ ├── get-edge-callbacks.js │ ├── test-defaultdrawshapecallback.bat │ ├── test-defaultdrawshapecallback.js │ ├── test.bat │ └── test.js ├── datamonitor │ ├── array.bat │ ├── array.js │ ├── dictionary.bat │ ├── dictionary.js │ ├── primitive.bat │ ├── primitive.js │ ├── primitive.ts │ └── primitive.ts.bat ├── dialog-quest │ ├── branch.bat │ ├── branch.js │ ├── shuffle.bat │ └── shuffle.js ├── diff │ ├── chars.bat │ └── chars.js ├── displaylist │ ├── bring-to-top.bat │ ├── bring-to-top.js │ ├── for-each-gameobject.bat │ ├── for-each-gameobject.js │ ├── in-container.bat │ ├── in-container.js │ ├── move-mydepth-above.bat │ └── move-mydepth-above.js ├── dom │ ├── flatpickr.bat │ └── flatpickr.js ├── drag │ ├── drag-axis.bat │ ├── drag-axis.js │ ├── drag-disable.bat │ ├── drag-disable.js │ ├── dragend.bat │ ├── dragend.js │ ├── try-drag.bat │ └── try-drag.js ├── dragrotate │ ├── origin-gameobject.bat │ ├── origin-gameobject.js │ ├── spin-button.bat │ └── spin-button.js ├── dragspeed │ ├── camera-zoom-scale.bat │ ├── camera-zoom-scale.js │ ├── last-drag-speed.bat │ └── last-drag-speed.js ├── dropdown │ ├── dropdown.bat │ └── dropdown.js ├── dynamictext │ ├── align.bat │ ├── align.js │ ├── character-input.bat │ ├── character-input.js │ ├── drawcallback.bat │ ├── drawcallback.js │ ├── drawer.bat │ ├── drawer.js │ ├── horizontal-wrap-align.bat │ ├── horizontal-wrap-align.js │ ├── horizontal-wrap.bat │ ├── horizontal-wrap.js │ ├── horizontal-wrap2.bat │ ├── horizontal-wrap2.js │ ├── mix-wrap.bat │ ├── mix-wrap.js │ ├── no-wrap.bat │ ├── no-wrap.js │ ├── page-typing.bat │ ├── page-typing.js │ ├── path.bat │ ├── path.js │ ├── show-all-lines.bat │ ├── show-all-lines.js │ ├── vertical-wrap.bat │ └── vertical-wrap.js ├── easedata │ ├── ease-data.bat │ └── ease-data.js ├── easemove │ ├── easemethods.bat │ ├── easemethods.js │ ├── move-in-out-destroy.bat │ └── move-in-out-destroy.js ├── effect-properties │ ├── barrel.bat │ ├── barrel.js │ ├── bloom.bat │ ├── bloom.js │ ├── blur.bat │ ├── blur.js │ ├── bokeh.bat │ ├── bokeh.js │ ├── circle.bat │ ├── circle.js │ ├── color-effects.bat │ ├── color-effects.js │ ├── displacement-camera.bat │ ├── displacement-camera.js │ ├── displacement.bat │ ├── displacement.js │ ├── glow.bat │ ├── glow.js │ ├── gradient.bat │ ├── gradient.js │ ├── interactive.bat │ ├── interactive.js │ ├── pixelate.bat │ ├── pixelate.js │ ├── reveal.bat │ ├── reveal.js │ ├── shadow.bat │ ├── shadow.js │ ├── shine.bat │ ├── shine.js │ ├── tilt-shift.bat │ ├── tilt-shift.js │ ├── vignette.bat │ ├── vignette.js │ ├── wipe.bat │ └── wipe.js ├── effectlayer-outline │ ├── camera-follow.bat │ ├── camera-follow.js │ ├── outline.bat │ ├── outline.js │ ├── window-resize.bat │ └── window-resize.js ├── eightdirection │ ├── eightdirection-virtualjoystick.bat │ ├── eightdirection-virtualjoystick.js │ ├── eightdirection.bat │ └── eightdirection.js ├── event-promise │ ├── tween-complete.bat │ └── tween-complete.js ├── expression-parser │ ├── boolean.bat │ ├── boolean.js │ ├── custom-method.bat │ ├── custom-method.js │ ├── dot-notation.bat │ ├── dot-notation.js │ ├── get-scene-data.bat │ ├── get-scene-data.js │ ├── proxy-context.bat │ ├── proxy-context.js │ ├── string.bat │ ├── string.js │ ├── unicode-variable.bat │ └── unicode-variable.js ├── fade │ ├── blinking.bat │ ├── blinking.js │ ├── fademethods.bat │ ├── fademethods.js │ ├── fadeout-destroy.bat │ └── fadeout-destroy.js ├── filechooser │ ├── touch-open.bat │ ├── touch-open.js │ ├── transparent.bat │ └── transparent.js ├── filedropzone │ ├── drop-image.bat │ ├── drop-image.js │ ├── drop-text-file.bat │ ├── drop-text-file.js │ ├── interactive-with-another-gameobject.bat │ └── interactive-with-another-gameobject.js ├── filter │ ├── filter.bat │ └── filter.js ├── firebase-auth │ ├── facebook-login.bat │ ├── facebook-login.js │ ├── firebaseConfig.js │ ├── google-login.bat │ ├── google-login.js │ ├── password-login.bat │ └── password-login.js ├── firebase-broadcast │ ├── firebaseConfig.js │ ├── send-receive.bat │ └── send-receive.js ├── firebase-files │ ├── firebaseConfig.js │ ├── save-load.bat │ └── save-load.js ├── firebase-firestore │ ├── firebaseConfig.js │ ├── save-load.bat │ ├── save-load.js │ ├── start-at.bat │ └── start-at.js ├── firebase-idalias │ ├── add.bat │ ├── add.js │ └── firebaseConfig.js ├── firebase-itemtable │ ├── firebaseConfig.js │ ├── table3d.bat │ └── table3d.js ├── firebase-leaderboard │ ├── firebaseConfig.js │ ├── get-score.bat │ ├── get-score.js │ ├── post-debug.bat │ ├── post-debug.js │ ├── post-load.bat │ └── post-load.js ├── firebase-messages │ ├── firebaseConfig.js │ ├── send.bat │ └── send.js ├── firebase-onlineuserlist │ ├── firebaseConfig.js │ ├── join.bat │ └── join.js ├── firebase-pagequery │ ├── firebaseConfig.js │ ├── next-page.bat │ └── next-page.js ├── firebase-room │ ├── create-random-room.bat │ ├── create-random-room.js │ ├── create-room.bat │ ├── create-room.js │ └── firebaseConfig.js ├── firebase-singleroom │ ├── firebaseConfig.js │ ├── gui-ts.bat │ ├── gui-ts.ts │ ├── gui.bat │ ├── gui.js │ ├── join.bat │ └── join.js ├── firebase-storage │ ├── firebaseConfig.js │ ├── upload-image.bat │ ├── upload-image.js │ ├── upload-string.bat │ └── upload-string.js ├── flash │ ├── flash.bat │ └── flash.js ├── flip │ ├── flip-image.bat │ └── flip-image.js ├── format │ ├── format.bat │ ├── format.js │ ├── mustache.bat │ └── mustache.js ├── framemanager │ ├── paste-graphics.bat │ ├── paste-graphics.js │ ├── paste-text.bat │ └── paste-text.js ├── fsm │ ├── enter-next.bat │ ├── enter-next.js │ ├── fsm-class.bat │ ├── fsm-class.js │ ├── state-config.bat │ ├── state-config.js │ ├── state-instance.bat │ ├── state-instance.js │ ├── update.bat │ └── update.js ├── fullscreen │ ├── dom.bat │ └── dom.js ├── fullwindow │ ├── 2nd-camera.bat │ ├── 2nd-camera.js │ ├── rectangle.bat │ └── rectangle.js ├── fullwindowrectangle │ ├── camera.bat │ └── camera.js ├── fuzzy │ ├── build-fuzzy-module.bat │ ├── build-fuzzy-module.js │ ├── gui.bat │ └── gui.js ├── fx │ ├── barrel.bat │ ├── barrel.js │ ├── custom-fx.bat │ ├── custom-fx.js │ ├── mask-fx.bat │ ├── mask-fx.js │ ├── remove-camera-fx.bat │ ├── remove-camera-fx.js │ ├── remove-fx.bat │ └── remove-fx.js ├── gameobject │ ├── add-event.bat │ ├── add-event.js │ ├── clickablewhenhidden.bat │ ├── clickablewhenhidden.js │ ├── polyfill-gameobject-class.bat │ └── polyfill-gameobject-class.js ├── gameobjectshell │ ├── shell.bat │ └── shell.js ├── gamepad │ ├── test.bat │ └── test.js ├── gamepadkeys │ ├── single-gamepad.bat │ ├── single-gamepad.js │ ├── two-gamepads.bat │ └── two-gamepads.js ├── gashapon │ ├── clone.bat │ ├── clone.js │ ├── pick-item.bat │ ├── pick-item.js │ ├── rnd.bat │ ├── rnd.js │ ├── shuffle-wo-reload.bat │ ├── shuffle-wo-reload.js │ ├── shuffle.bat │ └── shuffle.js ├── gesture-pan │ ├── camera-scroll.bat │ ├── camera-scroll.js │ ├── drag-multi-camera.bat │ ├── drag-multi-camera.js │ ├── drag-object.bat │ ├── drag-object.js │ ├── pan-detect.bat │ └── pan-detect.js ├── gesture-pinch │ ├── control-camera.bat │ ├── control-camera.js │ ├── gameobject-pointerdown.bat │ ├── gameobject-pointerdown.js │ ├── scale-detect.bat │ └── scale-detect.js ├── gesture-press │ ├── press-detect.bat │ ├── press-detect.js │ ├── press-drag.bat │ ├── press-drag.js │ ├── press-drag2.bat │ ├── press-drag2.js │ ├── press-object.bat │ └── press-object.js ├── gesture-rotate │ ├── rotate-detect.bat │ └── rotate-detect.js ├── gesture-swipe │ ├── swipe-detect.bat │ └── swipe-detect.js ├── gesture-tap │ ├── tap-detect.bat │ ├── tap-detect.js │ ├── tap-object.bat │ └── tap-object.js ├── gomanager │ ├── pick-all.bat │ └── pick-all.js ├── graph-build-from-text │ ├── flow-parser.bat │ └── flow-parser.js ├── graph-layout │ ├── dagre-layout.bat │ ├── dagre-layout.js │ ├── elk-layout.bat │ ├── elk-layout.js │ ├── graph-in-container-ts.bat │ ├── graph-in-container-ts.ts │ ├── graph-in-container.bat │ ├── graph-in-container.js │ ├── graph-in-scrollablepanel.bat │ └── graph-in-scrollablepanel.js ├── graph │ ├── random-connection.bat │ └── random-connection.js ├── gridalign │ ├── hexagon.bat │ ├── hexagon.js │ ├── quad.bat │ └── quad.js ├── gridcutimage │ ├── cut-image.bat │ ├── cut-image.js │ ├── cut-rendertexture.bat │ └── cut-rendertexture.js ├── gridtable │ ├── cell-container-align.bat │ ├── cell-container-align.js │ ├── fixed-cell-size.bat │ ├── fixed-cell-size.js │ ├── gridtable.bat │ ├── gridtable.js │ ├── horizontal-scroll.bat │ ├── horizontal-scroll.js │ ├── resize.bat │ ├── resize.js │ ├── reuse-cell-container.bat │ ├── reuse-cell-container.js │ ├── scroll-to-row.bat │ ├── scroll-to-row.js │ ├── set-origin.bat │ ├── set-origin.js │ ├── start-from-bottom.bat │ ├── start-from-bottom.js │ ├── switch-between-databases.bat │ ├── switch-between-databases.js │ ├── table-scroller-slider.bat │ ├── table-scroller-slider.js │ ├── vary-cell-height.bat │ ├── vary-cell-height.js │ ├── vary-cell-width.bat │ └── vary-cell-width.js ├── groupnavigator │ ├── 1d.bat │ ├── 1d.js │ ├── 2d.bat │ └── 2d.js ├── handlebars │ ├── expression-calculaction.bat │ ├── expression-calculaction.js │ ├── proxy-context.bat │ └── proxy-context.js ├── hexagon │ ├── hexagon.bat │ └── hexagon.js ├── hiddeninputtext │ ├── bbcodetext.bat │ ├── bbcodetext.js │ ├── number.bat │ ├── number.js │ ├── text.bat │ └── text.js ├── howler │ ├── test.bat │ ├── test.js │ ├── unlock-html5-audio.bat │ └── unlock-html5-audio.js ├── howlersoundmanager │ ├── test.bat │ └── test.js ├── i18next │ ├── test.bat │ └── test.js ├── imagebox │ ├── imagebox.bat │ └── imagebox.js ├── imageuriloader │ ├── imageuriloader-ts.bat │ ├── imageuriloader-ts.ts │ ├── imageuriloader.bat │ ├── imageuriloader.js │ ├── load-local-file.bat │ ├── load-local-file.js │ ├── load-spritesheet.bat │ └── load-spritesheet.js ├── index.tmpl ├── inputtext │ ├── full-screen.bat │ ├── full-screen.js │ ├── inputtext-in-cotainer.bat │ ├── inputtext-in-cotainer.js │ ├── inputtext.bat │ ├── inputtext.js │ ├── number-input.bat │ ├── number-input.js │ ├── round-corners.bat │ ├── round-corners.js │ ├── select.bat │ └── select.js ├── interception │ ├── interception.bat │ └── interception.js ├── intouching │ ├── cooldown.bat │ ├── cooldown.js │ ├── is-in-touch.bat │ └── is-in-touch.js ├── keyshub │ ├── define-key.bat │ ├── define-key.js │ ├── multiple-map.bat │ ├── multiple-map.js │ ├── single-map.bat │ └── single-map.js ├── layer │ ├── nested-layers.bat │ └── nested-layers.js ├── layermanager │ ├── dedicated-camera.bat │ ├── dedicated-camera.js │ ├── move-depth.bat │ ├── move-depth.js │ ├── scrollfactor.bat │ └── scrollfactor.js ├── levelcounter │ ├── exp-bar.bat │ ├── exp-bar.js │ ├── level-table.bat │ ├── level-table.js │ ├── levelup.bat │ └── levelup.js ├── lifetime │ ├── lifetime.bat │ └── lifetime.js ├── line │ ├── line.bat │ └── line.js ├── lineprogress │ ├── lineprogress.bat │ └── lineprogress.js ├── lineprogresscanvas │ ├── lineprogress.bat │ └── lineprogress.js ├── lineshape │ ├── line-type.bat │ └── line-type.js ├── live2d │ ├── alpha-tint.bat │ ├── alpha-tint.js │ ├── change-model.bat │ ├── change-model.js │ ├── hit-test.bat │ ├── hit-test.js │ ├── motion.bat │ ├── motion.js │ ├── scale-zoom.bat │ ├── scale-zoom.js │ ├── scaleouter.bat │ ├── scaleouter.js │ ├── test-ts.bat │ └── test-ts.ts ├── loader │ ├── load-atlas-from-binary.bat │ ├── load-atlas-from-binary.js │ ├── load-base64-image.bat │ ├── load-base64-image.js │ ├── load-complete-promise.bat │ ├── load-complete-promise.js │ ├── load-error.bat │ ├── load-error.js │ ├── load-image-from-binary.bat │ ├── load-image-from-binary.js │ ├── load-image-from-localforage.bat │ ├── load-image-from-localforage.js │ ├── load-image-from-zip.bat │ ├── load-image-from-zip.js │ ├── load-image-runtime.bat │ ├── load-image-runtime.js │ ├── load-non-english-file.bat │ ├── load-non-english-file.js │ ├── loading-animation.bat │ ├── loading-animation.js │ ├── loading-progress-bar.bat │ ├── loading-progress-bar.js │ ├── pack.bat │ ├── pack.js │ ├── stop-scene-when-loading.bat │ └── stop-scene-when-loading.js ├── loading-animation-scene │ ├── from-animation-scene.bat │ ├── from-animation-scene.js │ ├── from-main-scene.bat │ └── from-main-scene.js ├── loading-progress │ ├── custom-transit.bat │ ├── custom-transit.js │ ├── knob.bat │ ├── knob.js │ ├── stop-scene-when-loading.bat │ └── stop-scene-when-loading.js ├── localforage-files │ ├── save-load.bat │ └── save-load.js ├── localforage │ ├── file-blob.bat │ ├── file-blob.js │ ├── set-remove-get.bat │ └── set-remove-get.js ├── localstorage-data │ ├── extend.bat │ ├── extend.js │ ├── set-get.bat │ └── set-get.js ├── localstorage │ ├── localstorage.bat │ └── localstorage.js ├── lokijs │ ├── branch.bat │ ├── branch.js │ ├── dynamicview.bat │ ├── dynamicview.js │ ├── load-csv-table.bat │ ├── load-csv-table.js │ ├── map.bat │ ├── map.js │ ├── pagination.bat │ ├── pagination.js │ ├── remove.bat │ ├── remove.js │ ├── serialize.bat │ ├── serialize.js │ ├── sort.bat │ ├── sort.js │ ├── update.bat │ └── update.js ├── loop-in-ticks │ ├── loop-in-ticks.bat │ └── loop-in-ticks.js ├── lzstring │ ├── lzstring.bat │ └── lzstring.js ├── markedeventheets │ ├── active.bat │ ├── active.js │ ├── branch.bat │ ├── branch.js │ ├── command-executor.bat │ ├── command-executor.js │ ├── csv2md-action-only.bat │ ├── csv2md-action-only.js │ ├── csv2md.bat │ ├── csv2md.js │ ├── if-else.bat │ ├── if-else.js │ ├── ignore-condition.bat │ ├── ignore-condition.js │ ├── json-data.bat │ ├── json-data.js │ ├── memory-monitor.bat │ ├── memory-monitor.js │ ├── parallel-groups.bat │ ├── parallel-groups.js │ ├── parallel.bat │ ├── parallel.js │ ├── repeat.bat │ ├── repeat.js │ ├── sample.bat │ ├── sample.js │ ├── save-load.bat │ ├── save-load.js │ ├── start-group-by-event.bat │ └── start-group-by-event.js ├── mask │ ├── container-fix.bat │ ├── container-fix.js │ ├── container.bat │ ├── container.js │ ├── default-mask.bat │ ├── default-mask.js │ ├── scale.bat │ ├── scale.js │ ├── shape.bat │ └── shape.js ├── midi │ ├── loadmidi.bat │ └── loadmidi.js ├── modal │ ├── custom-transit.bat │ ├── custom-transit.js │ ├── manual-promise.bat │ ├── manual-promise.js │ ├── manual.bat │ ├── manual.js │ ├── timeout-promise.bat │ ├── timeout-promise.js │ ├── timeout.bat │ ├── timeout.js │ ├── touch-outside.bat │ └── touch-outside.js ├── mousewheel-to-updown │ ├── updown.bat │ └── updown.js ├── mousewheelscroller │ ├── scroller.bat │ └── scroller.js ├── moveto │ ├── moveto.bat │ └── moveto.js ├── mustache │ ├── string-macro.bat │ └── string-macro.js ├── ninepatch │ ├── 3x3-2.bat │ ├── 3x3-2.js │ ├── 3x3.bat │ ├── 3x3.js │ ├── 5x5.bat │ ├── 5x5.js │ ├── custom-base-frame.bat │ ├── custom-base-frame.js │ ├── get-frame-name.bat │ ├── get-frame-name.js │ ├── preserve-ratio.bat │ ├── preserve-ratio.js │ ├── scale-corner.bat │ ├── scale-corner.js │ ├── scale-down-corners.bat │ ├── scale-down-corners.js │ ├── stretch-edge.bat │ └── stretch-edge.js ├── ninepatch2 │ ├── 3x3.bat │ ├── 3x3.js │ ├── performance.bat │ ├── performance.js │ ├── resize.bat │ └── resize.js ├── papaparser │ ├── parse-csv.bat │ └── parse-csv.js ├── parse-itemtable │ ├── delete.bat │ ├── delete.js │ ├── load-random-items.bat │ ├── load-random-items.js │ ├── load.bat │ ├── load.js │ ├── owner-access.bat │ ├── owner-access.js │ ├── save.bat │ └── save.js ├── parse-leaderboard │ ├── get-score.bat │ ├── get-score.js │ ├── post-load.bat │ └── post-load.js ├── parse-quicklogin │ ├── quick-login.bat │ └── quick-login.js ├── particles-along-bounds │ ├── start-effect.bat │ └── start-effect.js ├── particles │ ├── update-path.bat │ └── update-path.js ├── pathdata │ ├── jigsaw.bat │ └── jigsaw.js ├── pathfollower │ ├── pathfollower.bat │ ├── pathfollower.js │ ├── spaced-points.bat │ └── spaced-points.js ├── perlin-grivaty-well │ ├── perlin-grivaty-well.bat │ └── perlin-grivaty-well.js ├── perlin │ ├── perlin2.bat │ ├── perlin2.js │ ├── terrain.bat │ └── terrain.js ├── perspective-card │ ├── add-to-container.bat │ ├── add-to-container.js │ ├── add-to-containerlite.bat │ ├── add-to-containerlite.js │ ├── card.bat │ ├── card.js │ ├── label-card.bat │ ├── label-card.js │ ├── perspective-camera.bat │ ├── perspective-camera.js │ ├── set-texture.bat │ └── set-texture.js ├── perspective-carousel │ ├── list.bat │ ├── list.js │ ├── ui-cards.bat │ └── ui-cards.js ├── perspective-image-carousel │ ├── list.bat │ └── list.js ├── perspective-image │ ├── camera-scroll.bat │ ├── camera-scroll.js │ ├── camera-texture.bat │ ├── camera-texture.js │ ├── hit-test.bat │ ├── hit-test.js │ ├── image.bat │ ├── image.js │ ├── tint.bat │ ├── tint.js │ ├── vs-plane.bat │ └── vs-plane.js ├── perspective-render-texture │ ├── label.bat │ ├── label.js │ ├── render-texture.bat │ └── render-texture.js ├── perspective-sprite │ ├── play-animation.bat │ └── play-animation.js ├── png-appender │ ├── append-extract.bat │ ├── append-extract.js │ ├── zip-data.bat │ └── zip-data.js ├── polar-coordinate │ ├── circle.bat │ ├── circle.js │ ├── spiral.bat │ └── spiral.js ├── promise │ ├── leakage.bat │ └── leakage.js ├── quad-image │ ├── image.bat │ ├── image.js │ ├── nine-points.bat │ └── nine-points.js ├── quad-render-texture │ ├── label.bat │ ├── label.js │ ├── nine-points.bat │ ├── nine-points.js │ ├── render-texture.bat │ └── render-texture.js ├── quadshape │ ├── quad.bat │ ├── quad.js │ ├── side-points.bat │ └── side-points.js ├── quest │ ├── branch-yaml.bat │ ├── branch-yaml.js │ ├── branch.bat │ ├── branch.js │ ├── shuffle.bat │ └── shuffle.js ├── randomplace │ ├── randomplace.bat │ └── randomplace.js ├── raycaster │ ├── raycaster.bat │ ├── raycaster.js │ ├── update-polygon.bat │ └── update-polygon.js ├── realtimetimers │ ├── timers.bat │ └── timers.js ├── rendertexture │ ├── fit-to-viewport.bat │ ├── fit-to-viewport.js │ ├── paste-mask-result.bat │ ├── paste-mask-result.js │ ├── snapshot.bat │ └── snapshot.js ├── repeat-image │ ├── pixelart.bat │ ├── pixelart.js │ ├── repeat-image.bat │ └── repeat-image.js ├── restorabledata │ ├── restorable-canvas-commands.bat │ ├── restorable-canvas-commands.js │ ├── restorable-canvas-content.bat │ ├── restorable-canvas-content.js │ ├── restorabledata.bat │ └── restorabledata.js ├── rex-bitmaptext │ ├── set-text.bat │ └── set-text.js ├── rhombus │ ├── rhombus.bat │ └── rhombus.js ├── rotate │ ├── rotate.bat │ └── rotate.js ├── rotateto │ ├── rotateto.bat │ └── rotateto.js ├── roundrectangle │ ├── roundrectangle.bat │ ├── roundrectangle.js │ ├── shadow-effect.bat │ ├── shadow-effect.js │ ├── test-ts.bat │ ├── test-ts.ts │ ├── tween.bat │ └── tween.js ├── roundrectanglecanvas │ ├── roundrectangle.bat │ ├── roundrectangle.js │ ├── tween.bat │ └── tween.js ├── roundrectangleprogress │ ├── roundrectangleprogress.bat │ └── roundrectangleprogress.js ├── run-commands │ ├── run-commands-ts.bat │ ├── run-commands-ts.ts │ ├── run-commands.bat │ ├── run-commands.js │ ├── run-csv-commands.bat │ └── run-csv-commands.js ├── run-sequence │ ├── run-csv-sequence.bat │ ├── run-csv-sequence.js │ ├── run-sequence.bat │ ├── run-sequence.js │ ├── run-yoyo-sequence.bat │ └── run-yoyo-sequence.js ├── scale-manager │ ├── envelop-change-game-size.bat │ ├── envelop-change-game-size.js │ ├── envelop.bat │ ├── envelop.js │ ├── expand-centeron.bat │ ├── expand-centeron.js │ ├── expand-scenes.bat │ ├── expand-scenes.js │ ├── expand.bat │ ├── expand.js │ ├── fit-change-game-size.bat │ ├── fit-change-game-size.js │ ├── fit.bat │ ├── fit.js │ ├── height-control-width.bat │ ├── height-control-width.js │ ├── orientation.bat │ ├── orientation.js │ ├── resize.bat │ ├── resize.js │ ├── resolution.bat │ └── resolution.js ├── scale │ ├── scaledown-destroy.bat │ ├── scaledown-destroy.js │ ├── yoyo.bat │ └── yoyo.js ├── scaleouter │ ├── camera-tween.bat │ ├── camera-tween.js │ ├── camera.bat │ ├── camera.js │ ├── label-click.bat │ ├── label-click.js │ ├── viewport.bat │ └── viewport.js ├── scene-transition │ ├── camera-alpha.bat │ ├── camera-alpha.js │ ├── camera-fade.bat │ ├── camera-fade.js │ ├── onstart.bat │ └── onstart.js ├── scene │ ├── game-created.bat │ ├── game-created.js │ ├── swap-state.bat │ └── swap-state.js ├── scripttagloader │ ├── scripttagloader-ts.bat │ ├── scripttagloader-ts.ts │ ├── scripttagloader.bat │ └── scripttagloader.js ├── scroller │ ├── camera-scroll.bat │ ├── camera-scroll.js │ ├── scroller.bat │ └── scroller.js ├── serialize │ ├── test.bat │ └── test.js ├── shader-alphatint │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-barrel │ ├── camera-postfx.bat │ └── camera-postfx.js ├── shader-colorreplace │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-crossstitching │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-crt │ ├── camera-postfx.bat │ └── camera-postfx.js ├── shader-dissolve │ ├── camera-postfx.bat │ ├── camera-postfx.js │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-dropshadow │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-fisheye │ ├── camera-postfx.bat │ └── camera-postfx.js ├── shader-glowfilter │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-glowfilter2 │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-grayscale │ ├── camera-postfx.bat │ ├── camera-postfx.js │ ├── gameobject-postfx.bat │ ├── gameobject-postfx.js │ ├── layer-postfx.bat │ └── layer-postfx.js ├── shader-horrifi │ ├── camera-postfx.bat │ └── camera-postfx.js ├── shader-hsladjust │ ├── camera-postfx.bat │ ├── camera-postfx.js │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-inverse │ ├── camera-postfx.bat │ ├── camera-postfx.js │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-kawaseblur │ ├── camera-postfx-ts-2.bat │ ├── camera-postfx-ts-2.ts │ ├── camera-postfx-ts.bat │ ├── camera-postfx-ts.ts │ ├── camera-postfx.bat │ └── camera-postfx.js ├── shader-localmask │ ├── localmask.bat │ └── localmask.js ├── shader-outline │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-pixelation │ ├── camera-postfx.bat │ └── camera-postfx.js ├── shader-shockwave │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-split │ ├── camera-postfx.bat │ ├── camera-postfx.js │ ├── gameobject-postfx.bat │ └── gameobject-postfx.js ├── shader-swirl │ ├── camera-postfx.bat │ └── camera-postfx.js ├── shader-test │ ├── test-skew.bat │ └── test-skew.js ├── shader-toonify │ ├── camera-postfx.bat │ └── camera-postfx.js ├── shake │ ├── multiple-shake.bat │ ├── multiple-shake.js │ ├── shake-position-effect.bat │ └── shake-position-effect.js ├── shatter-image │ ├── shatter-image.bat │ ├── shatter-image.js │ ├── size-test.bat │ └── size-test.js ├── shatter-rendertexture │ ├── render-texture.bat │ └── render-texture.js ├── ship │ ├── ship.bat │ └── ship.js ├── skew-image │ ├── skew.bat │ └── skew.js ├── slider │ ├── slider.bat │ └── slider.js ├── snapshot │ ├── snapshot-scale.bat │ └── snapshot-scale.js ├── sound-fade │ ├── fade-cross-scene.bat │ ├── fade-cross-scene.js │ ├── fade.bat │ └── fade.js ├── soundmanager │ ├── play-bgm.bat │ ├── play-bgm.js │ ├── play-bgm2.bat │ └── play-bgm2.js ├── spinner │ ├── aio.bat │ ├── aio.js │ ├── arrow.bat │ ├── arrow.js │ ├── custom-bouncing-ball.bat │ ├── custom-bouncing-ball.js │ ├── custom-explode-ring.bat │ ├── custom-explode-ring.js │ ├── custom-hour-glass.bat │ ├── custom-hour-glass.js │ ├── custom-snake.bat │ ├── custom-snake.js │ ├── custom-ts.bat │ ├── custom-ts.ts │ ├── custom.bat │ ├── custom.js │ ├── spinners.bat │ ├── spinners.js │ ├── test.bat │ └── test.js ├── statemanager │ ├── enter-next.bat │ ├── enter-next.js │ ├── update.bat │ └── update.js ├── step │ ├── step.bat │ ├── step.js │ ├── stepmethods.bat │ └── stepmethods.js ├── string-template │ ├── render.bat │ └── render.js ├── tagplayer │ ├── bbcodetext.bat │ ├── bbcodetext.js │ ├── choices.bat │ ├── choices.js │ ├── custom-gameobject.bat │ ├── custom-gameobject.js │ ├── custom-text.bat │ ├── custom-text.js │ ├── sprite.bat │ ├── sprite.js │ ├── viewport-coordinate.bat │ └── viewport-coordinate.js ├── tagtext │ ├── hitarea.bat │ ├── hitarea.js │ ├── prev-next-page.bat │ ├── prev-next-page.js │ ├── tagtext.bat │ ├── tagtext.js │ ├── typing.bat │ ├── typing.js │ ├── wrap.bat │ └── wrap.js ├── tcrp │ ├── play-callbacks.bat │ ├── play-callbacks.js │ ├── play-csv-commands.bat │ ├── play-csv-commands.js │ ├── player.bat │ ├── player.js │ ├── recorder.bat │ ├── recorder.js │ ├── replay-drawing.bat │ ├── replay-drawing.js │ ├── seek-to-next.bat │ └── seek-to-next.js ├── test │ ├── test-ts.bat │ ├── test-ts.ts │ ├── test-ui.bat │ ├── test-ui.js │ ├── test.bat │ └── test.js ├── text │ ├── fontsize-resize.bat │ ├── fontsize-resize.js │ ├── resolution.bat │ ├── resolution.js │ ├── tween-fontsize.bat │ ├── tween-fontsize.js │ ├── wrap-by-char.bat │ └── wrap-by-char.js ├── textedit │ ├── camera-scroll.bat │ ├── camera-scroll.js │ ├── edit.bat │ ├── edit.js │ ├── max-length.bat │ ├── max-length.js │ ├── number-type.bat │ ├── number-type.js │ ├── rtl.bat │ ├── rtl.js │ ├── text-in-container.bat │ ├── text-in-container.js │ ├── textedit.bat │ └── textedit.js ├── textpage │ ├── page-break.bat │ ├── page-break.js │ ├── prev-next-line.bat │ ├── prev-next-line.js │ ├── prev-next-page-bitmaptext.bat │ ├── prev-next-page-bitmaptext.js │ ├── prev-next-page.bat │ ├── prev-next-page.js │ ├── typing-lines.bat │ ├── typing-lines.js │ ├── typing-next.bat │ ├── typing-next.js │ ├── typing-page-by-page.bat │ └── typing-page-by-page.js ├── textplayer │ ├── bbcodetext.bat │ ├── bbcodetext.js │ ├── char-world-position.bat │ ├── char-world-position.js │ ├── choices-ui.bat │ ├── choices-ui.js │ ├── choices.bat │ ├── choices.js │ ├── custom-gameobject.bat │ ├── custom-gameobject.js │ ├── destroy.bat │ ├── destroy.js │ ├── fast-typing.bat │ ├── fast-typing.js │ ├── pause-resume.bat │ ├── pause-resume.js │ ├── play.bat │ ├── play.js │ ├── resolution.bat │ ├── resolution.js │ ├── show-page.bat │ ├── show-page.js │ ├── sprite.bat │ ├── sprite.js │ ├── typing-fadeout.bat │ ├── typing-fadeout.js │ ├── undefined-height.bat │ └── undefined-height.js ├── textruncator │ ├── truncate-bbcodetext.bat │ ├── truncate-bbcodetext.js │ ├── truncate-text.bat │ └── truncate-text.js ├── texttranslation │ ├── external-resources.bat │ ├── external-resources.js │ ├── external-yaml-resources.bat │ ├── external-yaml-resources.js │ ├── inline-resources.bat │ ├── inline-resources.js │ ├── standalone.bat │ └── standalone.js ├── texttyping │ ├── fast-typing.bat │ ├── fast-typing.js │ ├── typing-bbcodetext.bat │ ├── typing-bbcodetext.js │ ├── typing-bitmaptext.bat │ ├── typing-bitmaptext.js │ ├── typing-tagtext.bat │ ├── typing-tagtext.js │ ├── typing.bat │ ├── typing.js │ ├── wrap-typing.bat │ ├── wrap-typing.js │ ├── wrap-typing2.bat │ └── wrap-typing2.js ├── texture │ ├── circle.bat │ ├── circle.js │ ├── dashed-line.bat │ ├── dashed-line.js │ ├── draw-frame.bat │ ├── draw-frame.js │ ├── grid-cut.bat │ ├── grid-cut.js │ ├── rectangle.bat │ ├── rectangle.js │ ├── roundrectangle.bat │ ├── roundrectangle.js │ ├── to-base64.bat │ ├── to-base64.js │ ├── touch-pointer-to-object-color.bat │ ├── touch-pointer-to-object-color.js │ ├── trimmed-frame.bat │ └── trimmed-frame.js ├── tilemap │ ├── hexagon-x.bat │ ├── hexagon-x.js │ ├── hexagon-y.bat │ ├── hexagon-y.js │ ├── orthogonal.bat │ └── orthogonal.js ├── tintrgb │ ├── fade.bat │ ├── fade.js │ ├── yellow-to-green.bat │ └── yellow-to-green.js ├── toggleswitch │ ├── toggleswitch.bat │ └── toggleswitch.js ├── touch-helper │ ├── is-at-top.bat │ └── is-at-top.js ├── touch │ ├── events-order.bat │ ├── events-order.js │ ├── hit-test.bat │ ├── hit-test.js │ ├── multiple-scene-toponly.bat │ ├── multiple-scene-toponly.js │ ├── poll-always.bat │ ├── poll-always.js │ ├── scene-input-enable.bat │ └── scene-input-enable.js ├── toucheventstop │ ├── touch-event-stop.bat │ └── touch-event-stop.js ├── touchstate │ ├── dragdelta.bat │ └── dragdelta.js ├── transition-image-pack │ ├── blinds.bat │ ├── blinds.js │ ├── fade.bat │ ├── fade.js │ ├── iris.bat │ ├── iris.js │ ├── list.bat │ ├── list.js │ ├── shader-effects.bat │ ├── shader-effects.js │ ├── slide.bat │ ├── slide.js │ ├── test-ts.bat │ ├── test-ts.ts │ ├── wipe.bat │ ├── wipe.js │ ├── zoom.bat │ └── zoom.js ├── transition-image │ ├── container-scale.bat │ ├── container-scale.js │ ├── cross-fade.bat │ ├── cross-fade.js │ ├── dissolve.bat │ ├── dissolve.js │ ├── fixed-size.bat │ ├── fixed-size.js │ ├── grid-cut.bat │ ├── grid-cut.js │ ├── pie-mask.bat │ ├── pie-mask.js │ ├── scale.bat │ ├── scale.js │ ├── slide.bat │ ├── slide.js │ ├── split.bat │ ├── split.js │ ├── three-columns.bat │ ├── three-columns.js │ ├── transition-modes.bat │ └── transition-modes.js ├── tree │ ├── ref-path.bat │ └── ref-path.js ├── triangle │ ├── direction.bat │ ├── direction.js │ ├── ease-direction.bat │ ├── ease-direction.js │ ├── radius.bat │ └── radius.js ├── triangulate │ ├── shatter-rectangle-to-triangles.bat │ └── shatter-rectangle-to-triangles.js ├── tween │ ├── auto-remove.bat │ ├── auto-remove.js │ ├── data-manager.bat │ ├── data-manager.js │ ├── sine.bat │ ├── sine.js │ ├── target-value-callback.bat │ └── target-value-callback.js ├── ui-anchor │ ├── aspect-ratio.bat │ ├── aspect-ratio.js │ ├── resize-layout.bat │ ├── resize-layout.js │ ├── resize.bat │ └── resize.js ├── ui-badgelabel │ ├── label.bat │ └── label.js ├── ui-buttons │ ├── add-button.bat │ ├── add-button.js │ ├── align.bat │ ├── align.js │ ├── buttons.bat │ ├── buttons.js │ ├── checkboxes.bat │ ├── checkboxes.js │ ├── customprogress-bg.bat │ ├── customprogress-bg.js │ ├── expand.bat │ ├── expand.js │ ├── lineprogress-bg.bat │ ├── lineprogress-bg.js │ ├── popup-buttons.bat │ ├── popup-buttons.js │ ├── shake.bat │ ├── shake.js │ ├── space.bat │ └── space.js ├── ui-canvasinput │ ├── login.bat │ ├── login.js │ ├── textarea.bat │ └── textarea.js ├── ui-chart │ ├── radar-ts.bat │ ├── radar-ts.ts │ ├── radar-v3.bat │ ├── radar-v3.js │ ├── radar.bat │ ├── radar.js │ ├── resize.bat │ └── resize.js ├── ui-circularprogress │ ├── circularprogress.bat │ └── circularprogress.js ├── ui-colorcomponents │ ├── color-components.bat │ └── color-components.js ├── ui-colorinput │ ├── color-input.bat │ └── color-input.js ├── ui-colorpicker │ ├── color-picker.bat │ └── color-picker.js ├── ui-confirmaction │ ├── confirm-action.bat │ └── confirm-action.js ├── ui-confirmactionbutton │ ├── open-page.bat │ ├── open-page.js │ ├── test-ts.bat │ └── test-ts.ts ├── ui-confirmdialog │ ├── any-touch.bat │ ├── any-touch.js │ ├── ok.bat │ ├── ok.js │ ├── radio-choice-no-action.bat │ ├── radio-choice-no-action.js │ ├── radio-choice.bat │ ├── radio-choice.js │ ├── textarea-content.bat │ ├── textarea-content.js │ ├── yes-no.bat │ └── yes-no.js ├── ui-customprogress │ ├── customprogress.bat │ └── customprogress.js ├── ui-d-ts │ ├── add-to-layer.bat │ ├── add-to-layer.ts │ ├── panel.bat │ └── panel.ts ├── ui-dialog │ ├── action-buttons-with-space.bat │ ├── action-buttons-with-space.js │ ├── add-button.bat │ ├── add-button.js │ ├── content.bat │ ├── content.js │ ├── dialog.bat │ ├── dialog.js │ ├── grid-checkboxes-choices.bat │ ├── grid-checkboxes-choices.js │ ├── horizontal-radio-choices.bat │ ├── horizontal-radio-choices.js │ ├── move-in-out.bat │ ├── move-in-out.js │ ├── popup-dialog.bat │ ├── popup-dialog.js │ ├── popup-scaledown.bat │ ├── popup-scaledown.js │ ├── radio-choices.bat │ ├── radio-choices.js │ ├── radio-modal-choices.bat │ ├── radio-modal-choices.js │ ├── reuse-modal-dialog.bat │ ├── reuse-modal-dialog.js │ ├── show-hide-button.bat │ ├── show-hide-button.js │ ├── wrap-checkboxes-choices.bat │ ├── wrap-checkboxes-choices.js │ ├── wrap-description-label.bat │ ├── wrap-description-label.js │ ├── wrap-radio-choices.bat │ ├── wrap-radio-choices.js │ ├── yes-no-dialog.bat │ ├── yes-no-dialog.js │ ├── yes-no-modal-dialog.bat │ └── yes-no-modal-dialog.js ├── ui-dropdownlist │ ├── align-to-label-right.bat │ ├── align-to-label-right.js │ ├── cursor-select.bat │ ├── cursor-select.js │ ├── custom-transit.bat │ ├── custom-transit.js │ ├── dropdown-list.bat │ ├── dropdown-list.js │ ├── dropdown-scrollablelist.bat │ ├── dropdown-scrollablelist.js │ ├── dropdown-wraplist.bat │ ├── dropdown-wraplist.js │ ├── emit-button-click.bat │ └── emit-button-click.js ├── ui-edit │ ├── login.bat │ └── login.js ├── ui-expbar │ ├── custom-bar.bat │ ├── custom-bar.js │ ├── exp-bar.bat │ └── exp-bar.js ├── ui-fileselectorbutton │ ├── select-image.bat │ └── select-image.js ├── ui-fixwidthbuttons │ ├── checkboxes.bat │ ├── checkboxes.js │ ├── indent-left.bat │ ├── indent-left.js │ ├── indent-top.bat │ └── indent-top.js ├── ui-fixwidthsizer │ ├── add-clear.bat │ ├── add-clear.js │ ├── add-remove-animation.bat │ ├── add-remove-animation.js │ ├── children-interactive.bat │ ├── children-interactive.js │ ├── drag-drop.bat │ ├── drag-drop.js │ ├── fix-width-sizer-hv.bat │ ├── fix-width-sizer-hv.js │ ├── fix-width-sizer.bat │ ├── fix-width-sizer.js │ ├── indent.bat │ ├── indent.js │ ├── nested-sizer-2.bat │ ├── nested-sizer-2.js │ ├── nested-sizer.bat │ ├── nested-sizer.js │ ├── table.bat │ └── table.js ├── ui-flip │ ├── flip.bat │ └── flip.js ├── ui-folder │ ├── dragable-folder.bat │ ├── dragable-folder.js │ ├── nested-folder.bat │ ├── nested-folder.js │ ├── scrollable-folders.bat │ └── scrollable-folders.js ├── ui-fontsize-expand-text │ ├── expand-height.bat │ ├── expand-height.js │ ├── fontsize.bat │ ├── fontsize.js │ ├── resize-scale.bat │ └── resize-scale.js ├── ui-fullscreenbutton │ ├── fullscreenbutton.bat │ └── fullscreenbutton.js ├── ui-gridbuttons │ ├── buttons.bat │ ├── buttons.js │ ├── checkboxes.bat │ ├── checkboxes.js │ ├── createcells.bat │ ├── createcells.js │ ├── indent.bat │ └── indent.js ├── ui-gridsizer │ ├── add-new-column.bat │ ├── add-new-column.js │ ├── add-new-row.bat │ ├── add-new-row.js │ ├── children-interactive.bat │ ├── children-interactive.js │ ├── create-cell-callback.bat │ ├── create-cell-callback.js │ ├── destroy-cell.bat │ ├── destroy-cell.js │ ├── expand.bat │ ├── expand.js │ ├── full-viewport.bat │ ├── full-viewport.js │ ├── gridsizer.bat │ ├── gridsizer.js │ ├── indent.bat │ ├── indent.js │ ├── nested-sizer.bat │ ├── nested-sizer.js │ ├── proportion.bat │ ├── proportion.js │ ├── reset-grid.bat │ ├── reset-grid.js │ ├── trace-pointerover.bat │ └── trace-pointerover.js ├── ui-gridtable │ ├── cell-container-align.bat │ ├── cell-container-align.js │ ├── cell-interactive.bat │ ├── cell-interactive.js │ ├── cell-size.bat │ ├── cell-size.js │ ├── change-column.bat │ ├── change-column.js │ ├── child-padding.bat │ ├── child-padding.js │ ├── conversation-box.bat │ ├── conversation-box.js │ ├── custom-mask.bat │ ├── custom-mask.js │ ├── drag-item.bat │ ├── drag-item.js │ ├── fade-out-destroy-cell.bat │ ├── fade-out-destroy-cell.js │ ├── fixed-cell-size.bat │ ├── fixed-cell-size.js │ ├── gridtable-sliderxy.bat │ ├── gridtable-sliderxy.js │ ├── gridtable.bat │ ├── gridtable.js │ ├── layer-mask.bat │ ├── layer-mask.js │ ├── level-select.bat │ ├── level-select.js │ ├── messages.bat │ ├── messages.js │ ├── messages2.bat │ ├── messages2.js │ ├── modal.bat │ ├── modal.js │ ├── overlap-slider.bat │ ├── overlap-slider.js │ ├── overlapsizer-cell.bat │ ├── overlapsizer-cell.js │ ├── resize.bat │ ├── resize.js │ ├── scale.bat │ ├── scale.js │ ├── separator.bat │ ├── separator.js │ ├── set-origin.bat │ ├── set-origin.js │ ├── side-buttons-cell.bat │ ├── side-buttons-cell.js │ ├── simple.bat │ ├── simple.js │ ├── sizer-cell.bat │ ├── sizer-cell.js │ ├── snap.bat │ ├── snap.js │ ├── start-from-bottom.bat │ ├── start-from-bottom.js │ ├── swipe-carousel.bat │ ├── swipe-carousel.js │ ├── tween-scrolldown.bat │ └── tween-scrolldown.js ├── ui-hiddenedit │ ├── label-bitmaptext.bat │ ├── label-bitmaptext.js │ ├── label.bat │ ├── label.js │ ├── login.bat │ └── login.js ├── ui-holygrail │ ├── align.bat │ ├── align.js │ ├── change-layout-mode.bat │ ├── change-layout-mode.js │ ├── layout-modes.bat │ ├── layout-modes.js │ ├── simple.bat │ └── simple.js ├── ui-imageinputlabel │ ├── image-input.bat │ ├── image-input.js │ ├── save-texture.bat │ └── save-texture.js ├── ui-inputtext │ ├── fix-width-sizer.bat │ ├── fix-width-sizer.js │ ├── scrollable-panel.bat │ └── scrollable-panel.js ├── ui-knob │ ├── knob.bat │ └── knob.js ├── ui-label │ ├── adjust-text-font-size.bat │ ├── adjust-text-font-size.js │ ├── align.bat │ ├── align.js │ ├── charwrap-bbcodetext.bat │ ├── charwrap-bbcodetext.js │ ├── click-outside.bat │ ├── click-outside.js │ ├── custom-background.bat │ ├── custom-background.js │ ├── depth.bat │ ├── depth.js │ ├── ease-data.bat │ ├── ease-data.js │ ├── enable-layer.bat │ ├── enable-layer.js │ ├── expand-text-width.bat │ ├── expand-text-width.js │ ├── icon-size.bat │ ├── icon-size.js │ ├── label.bat │ ├── label.js │ ├── mask-icon.bat │ ├── mask-icon.js │ ├── pin-child.bat │ ├── pin-child.js │ ├── replace-background.bat │ ├── replace-background.js │ ├── rotate.bat │ ├── rotate.js │ ├── scale-image.bat │ ├── scale-image.js │ ├── set-children-align-mode.bat │ ├── set-children-align-mode.js │ ├── snapshot-rt.bat │ ├── snapshot-rt.js │ ├── snapshot-texture.bat │ ├── snapshot-texture.js │ ├── square-fit-icon.bat │ ├── square-fit-icon.js │ ├── text-color.bat │ ├── text-color.js │ ├── tween-scale.bat │ ├── tween-scale.js │ ├── two-scenes.bat │ ├── two-scenes.js │ ├── wrap-horizontal-label-text.bat │ ├── wrap-horizontal-label-text.js │ ├── wrap-vertical-label-text.bat │ └── wrap-vertical-label-text.js ├── ui-menu │ ├── camera-scroll.bat │ ├── camera-scroll.js │ ├── custom-shape-background.bat │ ├── custom-shape-background.js │ ├── custom-transit.bat │ ├── custom-transit.js │ ├── drop-down-list.bat │ ├── drop-down-list.js │ ├── popup-menu.bat │ ├── popup-menu.js │ ├── static-menu.bat │ ├── static-menu.js │ ├── toggle-orientation.bat │ └── toggle-orientation.js ├── ui-modal │ ├── modal-overlap-panel.bat │ └── modal-overlap-panel.js ├── ui-nameinputdialog │ ├── horizontal-layout.bat │ ├── horizontal-layout.js │ ├── vertical-layout.bat │ └── vertical-layout.js ├── ui-namevaluelabel │ ├── custom-bar.bat │ ├── custom-bar.js │ ├── set-value.bat │ └── set-value.js ├── ui-ninepatch │ ├── 3x3.bat │ └── 3x3.js ├── ui-numberbar │ ├── color-picker.bat │ ├── color-picker.js │ ├── numberbar.bat │ ├── numberbar.js │ ├── video-player.bat │ └── video-player.js ├── ui-overlapsizer │ ├── aspect-ratio.bat │ ├── aspect-ratio.js │ ├── fit-viewport.bat │ ├── fit-viewport.js │ ├── overlapsizer.bat │ └── overlapsizer.js ├── ui-pages │ ├── static-pages.bat │ ├── static-pages.js │ ├── tabpages.bat │ └── tabpages.js ├── ui-perspective │ ├── tween-angle.bat │ └── tween-angle.js ├── ui-perspectivecard │ ├── anglexyz.bat │ ├── anglexyz.js │ ├── flip.bat │ ├── flip.js │ ├── shader-effect.bat │ └── shader-effect.js ├── ui-scale │ ├── fit-change-game-size.bat │ └── fit-change-game-size.js ├── ui-scene-control │ ├── restart-scene.bat │ └── restart-scene.js ├── ui-scrollablepanel │ ├── add-child.bat │ ├── add-child.js │ ├── button-click-childinteractive.bat │ ├── button-click-childinteractive.js │ ├── button-click.bat │ ├── button-click.js │ ├── child-padding.bat │ ├── child-padding.js │ ├── destroy.bat │ ├── destroy.js │ ├── drag-corner-resize-2.bat │ ├── drag-corner-resize-2.js │ ├── drag-corner-resize.bat │ ├── drag-corner-resize.js │ ├── drag-drop-between-panels-noscroller.bat │ ├── drag-drop-between-panels-noscroller.js │ ├── drag-drop-between-panels.bat │ ├── drag-drop-between-panels.js │ ├── drag-item.bat │ ├── drag-item.js │ ├── drop-down-scrolllist.bat │ ├── drop-down-scrolllist.js │ ├── fix-width-sizer-destroy.bat │ ├── fix-width-sizer-destroy.js │ ├── fix-width-sizer-table.bat │ ├── fix-width-sizer-table.js │ ├── fix-width-sizer.bat │ ├── fix-width-sizer.js │ ├── grid-sizer-sliderxy.bat │ ├── grid-sizer-sliderxy.js │ ├── grid-sizer-table.bat │ ├── grid-sizer-table.js │ ├── hit-test.bat │ ├── hit-test.js │ ├── min-width-panel.bat │ ├── min-width-panel.js │ ├── nested-scrollablepanels.bat │ ├── nested-scrollablepanels.js │ ├── non-sizer-child.bat │ ├── non-sizer-child.js │ ├── p3container-child.bat │ ├── p3container-child.js │ ├── p3container-panel.bat │ ├── p3container-panel.js │ ├── panel.bat │ ├── panel.js │ ├── resize.bat │ ├── resize.js │ ├── scale.bat │ ├── scale.js │ ├── scroll-percentage.bat │ ├── scroll-percentage.js │ ├── scroll-to-child.bat │ ├── scroll-to-child.js │ ├── swipe-carousel.bat │ ├── swipe-carousel.js │ ├── textbox.bat │ ├── textbox.js │ ├── two-panels.bat │ ├── two-panels.js │ ├── typing-label.bat │ └── typing-label.js ├── ui-scrollbar │ ├── scrollbar.bat │ └── scrollbar.js ├── ui-sides │ ├── fade.bat │ ├── fade.js │ ├── move-panel.bat │ ├── move-panel.js │ ├── move.bat │ ├── move.js │ ├── visible.bat │ └── visible.js ├── ui-simpledropdownlist │ ├── dropdown-list.bat │ ├── dropdown-list.js │ ├── dropdown-scrollablelist.bat │ └── dropdown-scrollablelist.js ├── ui-simplelabel │ ├── bar-background.bat │ ├── bar-background.js │ ├── bitmaptext.bat │ ├── bitmaptext.js │ ├── buttons.bat │ ├── buttons.js │ ├── label.bat │ ├── label.js │ ├── nineslice-background.bat │ ├── nineslice-background.js │ ├── no-icon.bat │ ├── no-icon.js │ ├── textarea.bat │ ├── textarea.js │ ├── wraptext-char.bat │ ├── wraptext-char.js │ ├── wraptext.bat │ └── wraptext.js ├── ui-simpletextbox │ ├── inner-sizer.bat │ ├── inner-sizer.js │ ├── textbox.bat │ └── textbox.js ├── ui-simpletitlelabel │ ├── titlelabel.bat │ ├── titlelabel.js │ ├── tween.bat │ └── tween.js ├── ui-sizer │ ├── add-multiple.bat │ ├── add-multiple.js │ ├── backgrounds.bat │ ├── backgrounds.js │ ├── bring-child-to-top.bat │ ├── bring-child-to-top.js │ ├── children-interactive-directmode.bat │ ├── children-interactive-directmode.js │ ├── children-interactive.bat │ ├── children-interactive.js │ ├── dom-child.bat │ ├── dom-child.js │ ├── drag-drop.bat │ ├── drag-drop.js │ ├── fit-ratio.bat │ ├── fit-ratio.js │ ├── getelement-recursive.bat │ ├── getelement-recursive.js │ ├── header-footer.bat │ ├── header-footer.js │ ├── nested-sizer-2.bat │ ├── nested-sizer-2.js │ ├── nested-sizer.bat │ ├── nested-sizer.js │ ├── number-input-dialog.bat │ ├── number-input-dialog.js │ ├── offset-origin.bat │ ├── offset-origin.js │ ├── proportion.bat │ ├── proportion.js │ ├── rtl.bat │ ├── rtl.js │ ├── scaled-child.bat │ ├── scaled-child.js │ ├── sort.bat │ ├── sort.js │ ├── space.bat │ └── space.js ├── ui-skew │ ├── skew.bat │ └── skew.js ├── ui-slider │ ├── color-strip.bat │ ├── color-strip.js │ ├── crop.bat │ ├── crop.js │ ├── resize.bat │ ├── resize.js │ ├── scale.bat │ ├── scale.js │ ├── slider.bat │ ├── slider.js │ ├── tick.bat │ └── tick.js ├── ui-splitpanels │ ├── splitpanels.bat │ └── splitpanels.js ├── ui-statesbitmaptext │ ├── buttons.bat │ └── buttons.js ├── ui-statesimage │ ├── buttons.bat │ └── buttons.js ├── ui-statesninepatch │ ├── buttons.bat │ └── buttons.js ├── ui-statesnineslice │ ├── buttons.bat │ └── buttons.js ├── ui-statesroundrectangle │ ├── buttons.bat │ └── buttons.js ├── ui-statestext │ ├── buttons.bat │ └── buttons.js ├── ui-tabpages │ ├── tabpages.bat │ └── tabpages.js ├── ui-tabs │ ├── expand-buttons.bat │ ├── expand-buttons.js │ ├── tabs.bat │ ├── tabs.js │ ├── tabstable.bat │ └── tabstable.js ├── ui-textarea │ ├── adapt-thumb-size.bat │ ├── adapt-thumb-size.js │ ├── always-scrollable.bat │ ├── always-scrollable.js │ ├── append-text.bat │ ├── append-text.js │ ├── bitmaptext-snap.bat │ ├── bitmaptext-snap.js │ ├── bitmaptext.bat │ ├── bitmaptext.js │ ├── child-padding.bat │ ├── child-padding.js │ ├── hide-unscrollable-slider.bat │ ├── hide-unscrollable-slider.js │ ├── max-text-height.bat │ ├── max-text-height.js │ ├── modal.bat │ ├── modal.js │ ├── resize.bat │ ├── resize.js │ ├── scale.bat │ ├── scale.js │ ├── scroll-to-line.bat │ ├── scroll-to-line.js │ ├── test-scroll.bat │ ├── test-scroll.js │ ├── textarea.bat │ ├── textarea.js │ ├── tween-scrolldown.bat │ ├── tween-scrolldown.js │ ├── typing.bat │ └── typing.js ├── ui-textareainput │ ├── textareainput.bat │ └── textareainput.js ├── ui-textbox │ ├── destroy.bat │ ├── destroy.js │ ├── inner-sizer.bat │ ├── inner-sizer.js │ ├── more.bat │ ├── more.js │ ├── page-break.bat │ ├── page-break.js │ ├── show-last-page.bat │ ├── show-last-page.js │ ├── speech-bubble-background.bat │ ├── speech-bubble-background.js │ ├── textbox-bbcodetext.bat │ ├── textbox-bbcodetext.js │ ├── textbox-bitmaptext.bat │ ├── textbox-bitmaptext.js │ ├── textbox.bat │ ├── textbox.js │ ├── textbox2.bat │ └── textbox2.js ├── ui-titlelabel │ ├── label.bat │ ├── label.js │ ├── layout-modes.bat │ └── layout-modes.js ├── ui-toast │ ├── bring-to-top.bat │ ├── bring-to-top.js │ ├── depth.bat │ ├── depth.js │ ├── layer.bat │ ├── layer.js │ ├── toast.bat │ └── toast.js ├── ui-toastqueue │ ├── toast-queue.bat │ └── toast-queue.js ├── ui-trees │ ├── default-node.bat │ ├── default-node.js │ ├── tree.bat │ └── tree.js ├── ui-tweaker │ ├── add-rows.bat │ ├── add-rows.js │ ├── bind-target.bat │ ├── bind-target.js │ ├── buttons.bat │ ├── buttons.js │ ├── columns-addrow.bat │ ├── columns-addrow.js │ ├── columns.bat │ ├── columns.js │ ├── horizontal.bat │ ├── horizontal.js │ ├── item-table.bat │ ├── item-table.js │ ├── simple.bat │ ├── simple.js │ ├── wrap.bat │ └── wrap.js ├── ui-viewport │ ├── anchor-resize.bat │ ├── anchor-resize.js │ ├── viewport.bat │ └── viewport.js ├── ui-wrap-expand-text │ ├── speech-bubble-background-ts.bat │ ├── speech-bubble-background-ts.ts │ ├── speech-bubble-background.bat │ ├── speech-bubble-background.js │ ├── wrap-expand-bitmaptext.bat │ ├── wrap-expand-bitmaptext.js │ ├── wrap-expand-dynamictext.bat │ ├── wrap-expand-dynamictext.js │ ├── wrap-expand-text.bat │ └── wrap-expand-text.js ├── uniqueitemlist │ ├── call-method.bat │ ├── call-method.js │ ├── operations.bat │ └── operations.js ├── video │ ├── displaysize.bat │ └── displaysize.js ├── viewport-coordinate │ ├── resize.bat │ ├── resize.js │ ├── scaleouter.bat │ └── scaleouter.js ├── viewport │ ├── camera-zoom.bat │ └── camera-zoom.js ├── virtualjoystick │ ├── camera-follow.bat │ ├── camera-follow.js │ ├── camera-scroll-zoom.bat │ ├── camera-scroll-zoom.js │ ├── drag-joystick.bat │ ├── drag-joystick.js │ ├── drag-vector.bat │ ├── drag-vector.js │ ├── float.bat │ ├── float.js │ ├── multi-cameras.bat │ ├── multi-cameras.js │ ├── toggle-visible.bat │ ├── toggle-visible.js │ ├── two-virtualjoystick.bat │ ├── two-virtualjoystick.js │ ├── virtualjoystick+button.bat │ ├── virtualjoystick+button.js │ ├── virtualjoystick.bat │ └── virtualjoystick.js ├── waitevents │ ├── wait-callbacks.bat │ ├── wait-callbacks.js │ ├── wait-complete-event.bat │ └── wait-complete-event.js ├── webfontloader │ ├── font-weight.bat │ ├── font-weight.js │ ├── hebrew-font.bat │ ├── hebrew-font.js │ ├── load-ttf.bat │ ├── load-ttf.js │ ├── payload-es6.bat │ ├── payload-es6.js │ ├── payload.bat │ ├── payload.js │ ├── webfontloader-ts.bat │ ├── webfontloader-ts.ts │ ├── webfontloader.bat │ └── webfontloader.js ├── xor │ ├── xor-compress.bat │ ├── xor-compress.js │ ├── xor.bat │ └── xor.js ├── yaml │ ├── reference-override.bat │ ├── reference-override.js │ ├── test.bat │ └── test.js ├── yamleventsheets │ ├── active.bat │ ├── active.js │ ├── branch.bat │ ├── branch.js │ ├── break.bat │ ├── break.js │ ├── command-executor.bat │ ├── command-executor.js │ ├── condition-break.bat │ ├── condition-break.js │ ├── condition.bat │ ├── condition.js │ ├── for.bat │ ├── for.js │ ├── ignore-condition.bat │ ├── ignore-condition.js │ ├── json-data.bat │ ├── json-data.js │ ├── memory-monitor.bat │ ├── memory-monitor.js │ ├── parallel-groups.bat │ ├── parallel-groups.js │ ├── parallel.bat │ ├── parallel.js │ ├── repeat.bat │ ├── repeat.js │ ├── sample.bat │ ├── sample.js │ ├── save-load.bat │ ├── save-load.js │ ├── start-group-by-event.bat │ └── start-group-by-event.js ├── yml-achievements │ ├── achievements.bat │ └── achievements.js ├── yml-conditions-table │ ├── conditions-table.bat │ └── conditions-table.js └── youtubeplayer │ ├── autoplay.bat │ ├── autoplay.js │ ├── loop.bat │ └── loop.js ├── export-plugins.bat ├── install.bat ├── package.json ├── plugin-list.js ├── plugins ├── achievements-plugin.d.ts ├── achievements-plugin.js ├── achievements.d.ts ├── achievements.js ├── actions │ ├── GridCutImage.d.ts │ ├── GridCutImage.js │ ├── HexagonGridAlign.js │ ├── QuadGridAlign.js │ ├── RandomPlace.d.ts │ ├── RandomPlace.js │ └── cutjigsawimage │ │ ├── CreatePieces.d.ts │ │ ├── CreatePieces.js │ │ └── generateframes │ │ ├── GenerateEdges.js │ │ ├── GenerateFrames.d.ts │ │ ├── GenerateFrames.js │ │ └── jigsawpiece │ │ ├── ConvertEdgeMode.js │ │ ├── DefaultDrawShapeCallback.js │ │ ├── DrawCanvasPieceCallback.js │ │ ├── JigsawPieceBase.js │ │ ├── JigsawPieceCanvas.js │ │ └── JigsawPieceRenderTexurue.js ├── alphamaskimage-plugin.d.ts ├── alphamaskimage-plugin.js ├── alphamaskimage.d.ts ├── alphamaskimage.js ├── alphatintpipeline-plugin.d.ts ├── alphatintpipeline-plugin.js ├── alphatintpipeline.d.ts ├── alphatintpipeline.js ├── anchor-plugin.d.ts ├── anchor-plugin.js ├── anchor.d.ts ├── anchor.js ├── arcadestepclock-plugin.js ├── arcadestepclock.js ├── arcadetcrp-plugin.d.ts ├── arcadetcrp-plugin.js ├── arcadetcrp.d.ts ├── arcadetcrp.js ├── audio │ ├── fade │ │ ├── Fade.d.ts │ │ ├── Fade.js │ │ ├── FadeIn.d.ts │ │ ├── FadeIn.js │ │ ├── FadeOut.d.ts │ │ └── FadeOut.js │ └── midiplayer │ │ ├── MidiPlayer.js │ │ └── Track.js ├── awaitloader-plugin.d.ts ├── awaitloader-plugin.js ├── awaitloader.d.ts ├── awaitloader.js ├── awaytime-plugin.d.ts ├── awaytime-plugin.js ├── awaytime.d.ts ├── awaytime.js ├── bank-plugin.js ├── bank.js ├── barrelpipeline-plugin.d.ts ├── barrelpipeline-plugin.js ├── barrelpipeline.d.ts ├── barrelpipeline.js ├── bbcodelog.d.ts ├── bbcodelog.js ├── bbcodetext-plugin.d.ts ├── bbcodetext-plugin.js ├── bbcodetext.d.ts ├── bbcodetext.js ├── behaviors │ ├── anchor │ │ ├── Anchor.d.ts │ │ ├── Anchor.js │ │ └── DefaultResizeCallback.js │ ├── bitmapzone │ │ ├── BitmapZone.d.ts │ │ └── BitmapZone.js │ ├── boids │ │ ├── AddAlignmentForce.js │ │ ├── AddCohesionForce.js │ │ ├── AddSeparationForce.js │ │ ├── Boids.d.ts │ │ └── Boids.js │ ├── bounds │ │ ├── Bounds.d.ts │ │ └── Bounds.js │ ├── bullet │ │ ├── Bullet.d.ts │ │ └── Bullet.js │ ├── containerperspective │ │ ├── ContainerPerspective.d.ts │ │ └── ContainerPerspective.js │ ├── containerskew │ │ ├── ContainerSkew.d.ts │ │ └── ContainerSkew.js │ ├── dropdown │ │ ├── DropDown.d.ts │ │ ├── DropDown.js │ │ └── SetPosition.js │ ├── easedata │ │ ├── EaseData.d.ts │ │ └── EaseData.js │ ├── easemove │ │ ├── EaseMove.d.ts │ │ ├── EaseMove.js │ │ ├── EaseMoveFrom.d.ts │ │ ├── EaseMoveFrom.js │ │ ├── EaseMoveMethods.d.ts │ │ ├── EaseMoveMethods.js │ │ ├── EaseMoveTo.d.ts │ │ ├── EaseMoveTo.js │ │ └── ParseValue.js │ ├── effectproperties │ │ ├── AddBarrelProperties.d.ts │ │ ├── AddBarrelProperties.js │ │ ├── AddBloomProperties.d.ts │ │ ├── AddBloomProperties.js │ │ ├── AddBlurProperties.d.ts │ │ ├── AddBlurProperties.js │ │ ├── AddBokehProperties.d.ts │ │ ├── AddBokehProperties.js │ │ ├── AddCircleProperties.d.ts │ │ ├── AddCircleProperties.js │ │ ├── AddClearEffectCallback.js │ │ ├── AddDisplacementProperties.d.ts │ │ ├── AddDisplacementProperties.js │ │ ├── AddEffectProperties.d.ts │ │ ├── AddEffectProperties.js │ │ ├── AddGlowProperties.d.ts │ │ ├── AddGlowProperties.js │ │ ├── AddGradientProperties.d.ts │ │ ├── AddGradientProperties.js │ │ ├── AddPixelateProperties.d.ts │ │ ├── AddPixelateProperties.js │ │ ├── AddRevealProperties.d.ts │ │ ├── AddRevealProperties.js │ │ ├── AddShadowProperties.d.ts │ │ ├── AddShadowProperties.js │ │ ├── AddShineProperties.d.ts │ │ ├── AddShineProperties.js │ │ ├── AddTiltShiftProperties.d.ts │ │ ├── AddTiltShiftProperties.js │ │ ├── AddVignetteProperties.d.ts │ │ ├── AddVignetteProperties.js │ │ ├── AddWipeProperties.d.ts │ │ ├── AddWipeProperties.js │ │ ├── EffectMap.js │ │ ├── EffectProperties.d.ts │ │ ├── EffectProperties.js │ │ ├── GetFXFactory.js │ │ └── colormatrix │ │ │ ├── AddBlackWhiteProperties.d.ts │ │ │ ├── AddBlackWhiteProperties.js │ │ │ ├── AddBrightnessProperties.d.ts │ │ │ ├── AddBrightnessProperties.js │ │ │ ├── AddBrownProperties.d.ts │ │ │ ├── AddBrownProperties.js │ │ │ ├── AddColorMatrixEffectPropertiesBase.js │ │ │ ├── AddContrastProperties.d.ts │ │ │ ├── AddContrastProperties.js │ │ │ ├── AddDesaturateLuminanceProperties.d.ts │ │ │ ├── AddDesaturateLuminanceProperties.js │ │ │ ├── AddDesaturateProperties.d.ts │ │ │ ├── AddDesaturateProperties.js │ │ │ ├── AddGrayscaleProperties.d.ts │ │ │ ├── AddGrayscaleProperties.js │ │ │ ├── AddHueProperties.d.ts │ │ │ ├── AddHueProperties.js │ │ │ ├── AddKodachromeProperties.d.ts │ │ │ ├── AddKodachromeProperties.js │ │ │ ├── AddLSDProperties.d.ts │ │ │ ├── AddLSDProperties.js │ │ │ ├── AddNegativeProperties.d.ts │ │ │ ├── AddNegativeProperties.js │ │ │ ├── AddPolaroidProperties.d.ts │ │ │ ├── AddPolaroidProperties.js │ │ │ ├── AddSaturateProperties.d.ts │ │ │ ├── AddSaturateProperties.js │ │ │ ├── AddSepiaProperties.d.ts │ │ │ ├── AddSepiaProperties.js │ │ │ ├── AddShiftToBGRProperties.d.ts │ │ │ ├── AddShiftToBGRProperties.js │ │ │ ├── AddTechnicolorProperties.d.ts │ │ │ ├── AddTechnicolorProperties.js │ │ │ ├── AddVintagePinholeProperties.d.ts │ │ │ └── AddVintagePinholeProperties.js │ ├── eightdirection │ │ ├── EightDirection.d.ts │ │ └── EightDirection.js │ ├── fade │ │ ├── Fade.d.ts │ │ ├── Fade.js │ │ ├── FadeIn.d.ts │ │ ├── FadeIn.js │ │ ├── FadeMethods.d.ts │ │ ├── FadeMethods.js │ │ ├── FadeOutDestroy.d.ts │ │ └── FadeOutDestroy.js │ ├── filechooser │ │ ├── CreateFileInput.js │ │ ├── Open.d.ts │ │ └── Open.js │ ├── flash │ │ ├── Flash.d.ts │ │ └── Flash.js │ ├── flip │ │ ├── Flip.d.ts │ │ ├── Flip.js │ │ └── GetFaceUpdatingCallback.js │ ├── fullwindow │ │ ├── FullWindow.d.ts │ │ └── FullWindow.js │ ├── hiddentextedit │ │ ├── HiddenTextEdit.d.ts │ │ ├── HiddenTextEdit.js │ │ ├── HiddenTextEditBase.d.ts │ │ ├── HiddenTextEditBase.js │ │ ├── defaultcallbacks │ │ │ └── NumberInputUpdateCallback.js │ │ └── methods │ │ │ ├── Close.js │ │ │ ├── CopyElementConfig.js │ │ │ ├── CreateElement.js │ │ │ ├── EnterClose.js │ │ │ ├── InputTextProperties.js │ │ │ ├── LastOpenedEditor.js │ │ │ ├── Methods.js │ │ │ ├── OnClose.js │ │ │ ├── OnOpen.js │ │ │ ├── Open.js │ │ │ └── RemoveElement.js │ ├── interception │ │ ├── Interception.d.ts │ │ └── Interception.js │ ├── loadingprogress │ │ ├── LoadingProgress.d.ts │ │ └── LoadingProgress.js │ ├── modal │ │ ├── CreateCover.js │ │ ├── DefaultCoverTransitCallbacks.js │ │ ├── DefaultTransitCallbacks.js │ │ ├── Modal.d.ts │ │ ├── Modal.js │ │ ├── ModalPromise.d.ts │ │ └── ModalPromise.js │ ├── moveto │ │ ├── MoveTo.d.ts │ │ └── MoveTo.js │ ├── openclosetransition │ │ ├── OpenCloseTransition.d.ts │ │ ├── OpenCloseTransition.js │ │ ├── State.js │ │ └── methods │ │ │ ├── CloseMethods.js │ │ │ ├── ConfigurationMethods.js │ │ │ ├── DelayCallMethods.js │ │ │ ├── Methods.js │ │ │ └── OpenMethods.js │ ├── particlesalongbounds │ │ ├── ParticlesAlongBounds.d.ts │ │ ├── ParticlesAlongBounds.js │ │ └── methods │ │ │ ├── BoundsToPoints.js │ │ │ ├── CreateEmitterConfig.js │ │ │ └── SyncToGameObject.js │ ├── pathfollower │ │ ├── PathFollower.d.ts │ │ └── PathFollower.js │ ├── perlingrivatywell │ │ └── PerlinGrivatyWell.js │ ├── polarcoordinate │ │ ├── AddPolarCoordinateProperties.d.ts │ │ └── AddPolarCoordinateProperties.js │ ├── rotate │ │ ├── Rotate.d.ts │ │ └── Rotate.js │ ├── rotateto │ │ ├── RotateTo.d.ts │ │ └── RotateTo.js │ ├── scale │ │ ├── PopUp.d.ts │ │ ├── PopUp.js │ │ ├── Scale.d.ts │ │ ├── Scale.js │ │ ├── ScaleDown.d.ts │ │ ├── ScaleDown.js │ │ ├── ScaleDownDestroy.d.ts │ │ ├── ScaleDownDestroy.js │ │ ├── ScaleMethods.d.ts │ │ ├── ScaleMethods.js │ │ ├── Yoyo.d.ts │ │ └── Yoyo.js │ ├── shake │ │ ├── ShakePosition.d.ts │ │ └── ShakePosition.js │ ├── ship │ │ ├── Ship.d.ts │ │ └── Ship.js │ ├── step │ │ ├── Step.d.ts │ │ ├── Step.js │ │ ├── StepMethods.d.ts │ │ └── StepMethods.js │ ├── textedit │ │ ├── Edit.d.ts │ │ ├── Edit.js │ │ ├── TextEdit.d.ts │ │ ├── TextEdit.js │ │ └── methods │ │ │ ├── Close.js │ │ │ ├── CreateInputText.js │ │ │ ├── LastOpenedEditor.js │ │ │ ├── Methods.js │ │ │ └── Open.js │ ├── textpage │ │ ├── TextPage.d.ts │ │ ├── TextPage.js │ │ └── methods │ │ │ ├── GetLines.js │ │ │ ├── GetPageMethods.js │ │ │ ├── Methods.js │ │ │ ├── SetContentMethods.js │ │ │ └── ShowMethods.js │ ├── texttranslation │ │ ├── TextTranslation.d.ts │ │ └── TextTranslation.js │ ├── texttruncator │ │ ├── TextTruncator.d.ts │ │ ├── TextTruncator.js │ │ └── method │ │ │ ├── Methods.js │ │ │ ├── SetTextMethods.js │ │ │ └── UpdateText.js │ ├── texttyping │ │ ├── TextTyping.d.ts │ │ ├── TextTyping.js │ │ ├── methods │ │ │ ├── Methods.js │ │ │ ├── PauseTyping.js │ │ │ ├── ResumeTyping.js │ │ │ ├── SetTextMethods.js │ │ │ ├── StartTyping.js │ │ │ ├── StartTypingFromLine.js │ │ │ └── StopTyping.js │ │ └── utils │ │ │ └── GetTypingString.js │ ├── tintrgb │ │ ├── AddTintRGBProperties.d.ts │ │ └── AddTintRGBProperties.js │ └── viewportcoordinate │ │ ├── AddViewportCoordinateProperties.d.ts │ │ ├── AddViewportCoordinateProperties.js │ │ ├── MonitorViewport.js │ │ ├── VPXYToXY.d.ts │ │ └── VPXYToXY.js ├── behaviortree-plugin.js ├── bitmapzone-plugin.d.ts ├── bitmapzone-plugin.js ├── bitmapzone.d.ts ├── bitmapzone.js ├── blitter-plugin.js ├── blitter.js ├── board-components.d.ts ├── board-components.js ├── board-logic.d.ts ├── board-logic.js ├── board-plugin.d.ts ├── board-plugin.js ├── board │ ├── ObjectFactory.js │ ├── board │ │ ├── Board.d.ts │ │ ├── Board.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── LogicBoard.d.ts │ │ ├── LogicBoard.js │ │ ├── LogicMethods.js │ │ ├── blocker │ │ │ ├── HasBlocker.js │ │ │ └── HasEdgeBlocker.js │ │ ├── boarddata │ │ │ ├── BoardData.js │ │ │ ├── SetBoardHeight.js │ │ │ └── SetBoardWidth.js │ │ ├── camera │ │ │ └── ForEachCullTileXY.js │ │ ├── chess │ │ │ ├── AddChess.js │ │ │ ├── GetAllChess.js │ │ │ ├── GetBoard.js │ │ │ ├── RemoveAllChess.js │ │ │ ├── RemoveChess.js │ │ │ ├── SetChessTileZ.js │ │ │ ├── SwapChess.js │ │ │ └── UidToChess.js │ │ ├── empty │ │ │ ├── GetEmptyTileXYArray.js │ │ │ ├── GetEmptyTileXYArrayInRange.js │ │ │ ├── GetRandomEmptyTileXY.js │ │ │ ├── GetRandomEmptyTileXYInRange.js │ │ │ └── IsEmptyTileXYZ.js │ │ ├── input │ │ │ ├── EmitChessEvent.js │ │ │ ├── Input.js │ │ │ ├── InstallPress.js │ │ │ ├── InstallSwipe.js │ │ │ ├── InstallTap.js │ │ │ ├── OnPointerDown.js │ │ │ ├── OnPointerMove.js │ │ │ ├── OnPointerUp.js │ │ │ ├── SetInteractive.js │ │ │ └── TouchZone.js │ │ ├── neighbors │ │ │ ├── AreNeighbors.js │ │ │ ├── GetNeighborChess.js │ │ │ ├── GetNeighborChessDirection.js │ │ │ ├── GetNeighborTileDirection.js │ │ │ ├── GetNeighborTileXY.js │ │ │ ├── GetNeighborTileXYAtAngle.js │ │ │ ├── GetTileXYAtDirection.js │ │ │ └── MapNeighobrs.js │ │ ├── ring │ │ │ ├── FilledRingToChessArray.js │ │ │ ├── FilledRingToTileXYArray.js │ │ │ ├── RingToChessArray.js │ │ │ └── RingToTileXYArray.js │ │ ├── shape │ │ │ ├── CircleToTileXYArray.js │ │ │ ├── EllipseToTileXYArray.js │ │ │ ├── ForEachTileXYInShape.js │ │ │ ├── LineToTileXYArray.js │ │ │ ├── PolygonToTileXYArray.js │ │ │ ├── RectangleToTileXYArray.js │ │ │ ├── ShapeToTileXYArray.js │ │ │ └── TriangleToTileXYArray.js │ │ ├── tileposition │ │ │ ├── ChessToTileXYZ.js │ │ │ ├── Contains.js │ │ │ ├── DirectionBetween.js │ │ │ ├── ForEachTileXY.js │ │ │ ├── GetDistance.js │ │ │ ├── GetOppositeDirection.js │ │ │ ├── GetWrapTileXY.js │ │ │ ├── IsDirectionInCone.js │ │ │ ├── TileXYArrayToChessArray.js │ │ │ ├── TileXYToChessArray.js │ │ │ ├── TileXYZToChess.js │ │ │ └── TileZToChessArray.js │ │ ├── transform │ │ │ ├── Fit.js │ │ │ ├── Mirror.js │ │ │ ├── Offset.js │ │ │ └── Rotate.js │ │ └── worldposition │ │ │ ├── AngleBetween.js │ │ │ ├── AngleSnapToDirection.js │ │ │ ├── AngleToward.js │ │ │ ├── GetBoardBounds.js │ │ │ ├── GetGridBounds.js │ │ │ ├── GetGridPoints.js │ │ │ ├── GridAlign.js │ │ │ ├── IsAngleInCone.js │ │ │ ├── IsOverlappingPoint.js │ │ │ ├── TileXYArrayToWorldXYArray.js │ │ │ ├── TileXYToWorldX.js │ │ │ ├── TileXYToWorldXY.js │ │ │ ├── TileXYToWorldY.js │ │ │ ├── WorldXYSnapToGrid.js │ │ │ ├── WorldXYToChess.js │ │ │ ├── WorldXYToChessArray.js │ │ │ ├── WorldXYToTileX.js │ │ │ ├── WorldXYToTileXY.js │ │ │ ├── WorldXYToTileY.js │ │ │ └── getboundarypoints │ │ │ ├── GetBoundaryPoints.js │ │ │ ├── GetBoundarySegments.js │ │ │ ├── GetCyclesPoints.js │ │ │ ├── GetTileXYArray.js │ │ │ ├── Graph.js │ │ │ └── PointsToSegments.js │ ├── chess │ │ ├── ChessBank.js │ │ ├── ChessData.d.ts │ │ ├── ChessData.js │ │ ├── GetChessData.js │ │ ├── GetChessUID.js │ │ ├── GetTileDirection.js │ │ ├── IsChess.js │ │ └── IsUID.js │ ├── fieldofview │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── FieldOfView.d.ts │ │ ├── FieldOfView.js │ │ ├── FindFOV.js │ │ ├── GetCost.js │ │ ├── IsInCone.js │ │ ├── IsInLOS.js │ │ ├── IsPathVisible.js │ │ ├── LOS.js │ │ ├── Methods.js │ │ ├── PreTest.js │ │ └── const.js │ ├── grid │ │ ├── hexagon │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── GetBounds.js │ │ │ ├── GetGridPoints.js │ │ │ ├── Hexagon.d.ts │ │ │ └── Hexagon.js │ │ ├── index.js │ │ ├── quad │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── GetBounds.js │ │ │ ├── GetGridPoints.js │ │ │ ├── Quad.d.ts │ │ │ └── Quad.js │ │ └── utils │ │ │ ├── DirectionNormalize.js │ │ │ ├── RestoreOrigin.js │ │ │ └── SaveOrigin.js │ ├── hexagonmap │ │ ├── GetHexagonMap.d.ts │ │ ├── GetHexagonMap.js │ │ ├── GetParallelogramMap.d.ts │ │ ├── GetParallelogramMap.js │ │ ├── GetTriangleMap.d.ts │ │ ├── GetTriangleMap.js │ │ ├── index.d.ts │ │ └── index.js │ ├── image │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Image.d.ts │ │ └── Image.js │ ├── match │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Group.js │ │ ├── Match.d.ts │ │ ├── Match.js │ │ ├── MatchAll.js │ │ ├── MatchAtDir.js │ │ └── Methods.js │ ├── miniboard │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── IsMiniBoardObject.js │ │ ├── Methods.js │ │ ├── MiniBoard.d.ts │ │ ├── MiniBoard.js │ │ ├── chess │ │ │ ├── AddChess.js │ │ │ ├── GetAllChess.js │ │ │ ├── RemoveAllChess.js │ │ │ ├── RemoveChess.js │ │ │ └── WorldXYToChess.js │ │ ├── input │ │ │ ├── DragEnd.js │ │ │ ├── HitAreaCallback.js │ │ │ ├── IsInTouching.js │ │ │ ├── RegisterDragEvents.js │ │ │ ├── RegisterPointerEvents.js │ │ │ ├── SetDraggable.js │ │ │ └── SetInteractive.js │ │ ├── mainboard │ │ │ ├── AlignToMainBoard.js │ │ │ ├── CanPutOnMainBoard.js │ │ │ ├── IsOverlapping.js │ │ │ ├── MainBoardReference.js │ │ │ ├── PullOutFromMainBoard.js │ │ │ ├── PutBack.js │ │ │ ├── PutOnMainBoard.js │ │ │ └── SetMainboard.js │ │ ├── moveto │ │ │ ├── CanMoveToTile.js │ │ │ ├── MoveTo.js │ │ │ ├── MoveToRandomNeighbor.js │ │ │ ├── MoveToTile.js │ │ │ └── MoveToward.js │ │ └── transform │ │ │ ├── CanMirror.js │ │ │ ├── CanRotate.js │ │ │ ├── CanRotateTo.js │ │ │ ├── GetBounds.js │ │ │ ├── Mirror.js │ │ │ ├── ResetChessTileXYZ.js │ │ │ ├── Rotate.js │ │ │ ├── RotateTo.js │ │ │ ├── SetOrigin.js │ │ │ ├── SetSizeFromBounds.js │ │ │ └── transferfunctions │ │ │ ├── Mirror.js │ │ │ ├── Offset.js │ │ │ └── Rotate.js │ ├── monopoly │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── GetCost.js │ │ ├── GetNextTile.js │ │ ├── GetPath.js │ │ ├── Methods.js │ │ ├── Monopoly.d.ts │ │ ├── Monopoly.js │ │ ├── TileData.js │ │ └── const.js │ ├── moveto │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── MoveTo.d.ts │ │ ├── MoveTo.js │ │ └── methods │ │ │ ├── CanMoveToTile.js │ │ │ ├── GetSneakTileZ.js │ │ │ ├── Methods.js │ │ │ ├── MoveAway.js │ │ │ ├── MoveCloser.js │ │ │ ├── MoveToRandomNeighbor.js │ │ │ ├── MoveToTile.js │ │ │ ├── MoveToward.js │ │ │ └── movetotask │ │ │ ├── AddMoveLine.js │ │ │ ├── MoveAloneLine.js │ │ │ ├── MoveNextLine.js │ │ │ └── MoveToTask.js │ ├── pathfinder │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── FindArea.js │ │ ├── FindPath.js │ │ ├── GetCost.js │ │ ├── GetPath.js │ │ ├── Methods.js │ │ ├── PathFinder.d.ts │ │ ├── PathFinder.js │ │ ├── TileXYToCost.js │ │ ├── astartsearch │ │ │ ├── AStarSearch.js │ │ │ ├── BinaryHeap.js │ │ │ ├── GetNodePath.js │ │ │ ├── Node.js │ │ │ └── NodeManager.js │ │ └── const.js │ ├── shape │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Shape.d.ts │ │ └── Shape.js │ ├── sprite │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Sprite.d.ts │ │ └── Sprite.js │ ├── texture │ │ ├── CreateTileTexture.d.ts │ │ └── CreateTileTexture.js │ ├── tilemap │ │ ├── AddLayers.js │ │ ├── CreateBoard.js │ │ ├── CreateBoardFromTilemap.d.ts │ │ └── CreateBoardFromTilemap.js │ ├── types │ │ └── Position.d.ts │ └── utils │ │ ├── AreTileXYArrayEqual.js │ │ ├── AreTileXYEqual.js │ │ ├── IsTileXYInArray.js │ │ ├── IsTileXYZ.js │ │ └── tilexyzkey │ │ ├── KeyToTileXYZ.js │ │ ├── TileXYToKey.js │ │ └── TileXYZToKey.js ├── boids-plugin.d.ts ├── boids-plugin.js ├── boids.d.ts ├── boids.js ├── bounds-plugin.js ├── bounds.js ├── bracketparser-plugin.d.ts ├── bracketparser-plugin.js ├── bracketparser.d.ts ├── bracketparser.js ├── bracketparser2-plugin.d.ts ├── bracketparser2-plugin.js ├── bracketparser2.d.ts ├── bracketparser2.js ├── buffdata-plugin.d.ts ├── buffdata-plugin.js ├── buffdata.d.ts ├── buffdata.js ├── buildarcadeobject-plugin.d.ts ├── buildarcadeobject-plugin.js ├── buildarcadeobject.d.ts ├── buildarcadeobject.js ├── bullet-plugin.d.ts ├── bullet-plugin.js ├── bullet.d.ts ├── bullet.js ├── button-plugin.d.ts ├── button-plugin.js ├── button.d.ts ├── button.js ├── camera │ ├── boundsscroll │ │ ├── BoundsScroll.d.ts │ │ └── BoundsScroll.js │ ├── controllerpack │ │ ├── ControllerPack.d.ts │ │ └── ControllerPack.js │ ├── mousewheelzoom │ │ ├── EaseZoom.js │ │ ├── MouseWheelZoom.d.ts │ │ └── MouseWheelZoom.js │ ├── panscroll │ │ ├── PanScroll.d.ts │ │ └── PanScroll.js │ └── pinchzoom │ │ ├── PinchZoom.d.ts │ │ └── PinchZoom.js ├── cameracontroller-plugin.d.ts ├── cameracontroller-plugin.js ├── cameracontroller.d.ts ├── cameracontroller.js ├── canvas-plugin.d.ts ├── canvas-plugin.js ├── canvas.d.ts ├── canvas.js ├── canvasdata-plugin.d.ts ├── canvasdata-plugin.js ├── canvasdata.d.ts ├── canvasdata.js ├── canvasframemanager-plugin.d.ts ├── canvasframemanager-plugin.js ├── canvasframemanager.d.ts ├── canvasframemanager.js ├── canvasinput-plugin.d.ts ├── canvasinput-plugin.js ├── canvasinput.d.ts ├── canvasinput.js ├── carousel-plugin.js ├── carousel.js ├── charactercache-plugin.d.ts ├── charactercache-plugin.js ├── charactercache.d.ts ├── charactercache.js ├── checkbox-plugin.d.ts ├── checkbox-plugin.js ├── checkbox.d.ts ├── checkbox.js ├── checkboxshape.d.ts ├── checkboxshape.js ├── circlemaskimage-plugin.d.ts ├── circlemaskimage-plugin.js ├── circlemaskimage.d.ts ├── circlemaskimage.js ├── circularprogress-plugin.d.ts ├── circularprogress-plugin.js ├── circularprogress.d.ts ├── circularprogress.js ├── circularprogresscanvas-plugin.d.ts ├── circularprogresscanvas-plugin.js ├── circularprogresscanvas.d.ts ├── circularprogresscanvas.js ├── clickoutside-plugin.d.ts ├── clickoutside-plugin.js ├── clickoutside.d.ts ├── clickoutside.js ├── clock-plugin.d.ts ├── clock-plugin.js ├── clock.d.ts ├── clock.js ├── colorreplacepipeline-plugin.d.ts ├── colorreplacepipeline-plugin.js ├── colorreplacepipeline.d.ts ├── colorreplacepipeline.js ├── commandexecutor.d.ts ├── commandexecutor.js ├── conditionstable-plugin.d.ts ├── conditionstable-plugin.js ├── conditionstable.d.ts ├── conditionstable.js ├── containerlite-plugin.d.ts ├── containerlite-plugin.js ├── containerlite.d.ts ├── containerlite.js ├── cover-plugin.d.ts ├── cover-plugin.js ├── cover.d.ts ├── cover.js ├── crossstitchingpipeline-plugin.d.ts ├── crossstitchingpipeline-plugin.js ├── crossstitchingpipeline.d.ts ├── crossstitchingpipeline.js ├── crtpipeline-plugin.d.ts ├── crtpipeline-plugin.js ├── crtpipeline.d.ts ├── crtpipeline.js ├── csvscenario-plugin.d.ts ├── csvscenario-plugin.js ├── csvscenario.d.ts ├── csvscenario.js ├── csvscenariologic.d.ts ├── csvscenariologic.js ├── csvtoarray-plugin.d.ts ├── csvtoarray-plugin.js ├── csvtoarray.d.ts ├── csvtoarray.js ├── csvtohashtable-plugin.d.ts ├── csvtohashtable-plugin.js ├── csvtohashtable.d.ts ├── csvtohashtable.js ├── cursoratbounds-plugin.d.ts ├── cursoratbounds-plugin.js ├── cursoratbounds.d.ts ├── cursoratbounds.js ├── curve │ ├── SpiralCurve.d.ts │ └── SpiralCurve.js ├── customprogress-plugin.d.ts ├── customprogress-plugin.js ├── customprogress.d.ts ├── customprogress.js ├── customprogresscanvas-plugin.d.ts ├── customprogresscanvas-plugin.js ├── customprogresscanvas.d.ts ├── customprogresscanvas.js ├── customshapes-plugin.d.ts ├── customshapes-plugin.js ├── customshapes.d.ts ├── customshapes.js ├── cutjigsawimage-plugin.d.ts ├── cutjigsawimage-plugin.js ├── cutjigsawimage.d.ts ├── cutjigsawimage.js ├── data │ ├── bank │ │ └── Bank.js │ ├── buff │ │ ├── DataManager.d.ts │ │ ├── DataManager.js │ │ ├── Extend.d.ts │ │ ├── Extend.js │ │ └── Methods.js │ ├── canvasdata │ │ ├── CanvasObjectToBitmap.d.ts │ │ ├── CanvasObjectToBitmap.js │ │ ├── Methods.js │ │ ├── TextureToColorMap.d.ts │ │ ├── TextureToColorMap.js │ │ ├── canvasdata │ │ │ ├── CanvasData.d.ts │ │ │ ├── CanvasData.js │ │ │ └── CanvasToData.js │ │ └── fillcallbacks │ │ │ ├── alpha.js │ │ │ └── color32.js │ ├── csvtoarray │ │ ├── CSVToArray.d.ts │ │ └── CSVToArray.js │ ├── csvtohashtable │ │ ├── CsvToHashTable.d.ts │ │ └── CsvToHashTable.js │ ├── pngappender │ │ ├── AppendData.d.ts │ │ ├── AppendData.js │ │ ├── ExtractData.d.ts │ │ ├── ExtractData.js │ │ └── GetChunkEndByteIndex.js │ ├── pool │ │ └── ObjectPool.js │ ├── restorabledata │ │ ├── DataManager.d.ts │ │ └── DataManager.js │ └── uniqueitemlist │ │ ├── ArrayMethods.js │ │ ├── ContainMethods.js │ │ ├── DestroyCallbackMethods.js │ │ ├── SetMethods.js │ │ ├── UniqueItemList.d.ts │ │ └── UniqueItemList.js ├── datamonitor-plugin.d.ts ├── datamonitor-plugin.js ├── datamonitor.d.ts ├── datamonitor.js ├── dissolvepipeline-plugin.d.ts ├── dissolvepipeline-plugin.js ├── dissolvepipeline.d.ts ├── dissolvepipeline.js ├── drag-plugin.d.ts ├── drag-plugin.js ├── drag.d.ts ├── drag.js ├── dragrotate-plugin.d.ts ├── dragrotate-plugin.js ├── dragrotate.d.ts ├── dragrotate.js ├── dragspeed-plugin.js ├── dragspeed.js ├── dropdown-plugin.d.ts ├── dropdown-plugin.js ├── dropdown.d.ts ├── dropdown.js ├── dropshadowpipeline-plugin.d.ts ├── dropshadowpipeline-plugin.js ├── dropshadowpipeline.d.ts ├── dropshadowpipeline.js ├── dynamictext-plugin.d.ts ├── dynamictext-plugin.js ├── dynamictext.d.ts ├── dynamictext.js ├── easedata-plugin.d.ts ├── easedata-plugin.js ├── easedata.d.ts ├── easedata.js ├── easemove-plugin.d.ts ├── easemove-plugin.js ├── easemove.d.ts ├── easemove.js ├── effectlayer-plugin.js ├── effectlayer.js ├── effectproperties-plugin.d.ts ├── effectproperties-plugin.js ├── effectproperties.d.ts ├── effectproperties.js ├── eightdirection-plugin.d.ts ├── eightdirection-plugin.js ├── eightdirection.d.ts ├── eightdirection.js ├── eventpromise-plugin.d.ts ├── eventpromise-plugin.js ├── eventpromise.d.ts ├── eventpromise.js ├── expressionparser-plugin.d.ts ├── expressionparser-plugin.js ├── expressionparser.d.ts ├── expressionparser.js ├── fade-in.d.ts ├── fade-in.js ├── fade-out-destroy.d.ts ├── fade-out-destroy.js ├── fade-plugin.d.ts ├── fade-plugin.js ├── fade.d.ts ├── fade.js ├── filechooser-plugin.d.ts ├── filechooser-plugin.js ├── filechooser.d.ts ├── filechooser.js ├── filedropzone-plugin.d.ts ├── filedropzone-plugin.js ├── filedropzone.d.ts ├── filedropzone.js ├── firebase-components.d.ts ├── firebase-components.js ├── firebase-plugin.d.ts ├── firebase-plugin.js ├── firebase.d.ts ├── firebase.js ├── firebase │ ├── ObjectFactory.js │ ├── database │ │ ├── broadcast │ │ │ ├── Broadcast.d.ts │ │ │ ├── Broadcast.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── History.js │ │ │ ├── ReceiveMethods.js │ │ │ ├── Send.js │ │ │ └── schema.md │ │ ├── itemtable │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── ItemTable.d.ts │ │ │ ├── ItemTable.js │ │ │ ├── read │ │ │ │ ├── BaseUpdater.js │ │ │ │ ├── ColumnUpdater.js │ │ │ │ ├── Init.js │ │ │ │ ├── PageUpdater.js │ │ │ │ └── RowUpdater.js │ │ │ ├── schema.md │ │ │ └── write │ │ │ │ ├── IncValue.js │ │ │ │ ├── RemoveData.js │ │ │ │ ├── RemoveDataOnDisconnect.js │ │ │ │ ├── SetData.js │ │ │ │ ├── SetDataOnDisconnect.js │ │ │ │ ├── Transaction.js │ │ │ │ └── UpdateData.js │ │ ├── onlineuserlist │ │ │ ├── ChangeUserName.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Join.js │ │ │ ├── Leave.js │ │ │ ├── OnlineUserList.d.ts │ │ │ ├── OnlineUserList.js │ │ │ └── schema.md │ │ ├── room │ │ │ ├── ChangeFilterData.js │ │ │ ├── ChangeRoomName.js │ │ │ ├── ChangeRoomState.js │ │ │ ├── ChangeUserName.js │ │ │ ├── CreateRandomRoom.js │ │ │ ├── CreateRoom.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── GetRefMethods.js │ │ │ ├── GetRoomList.js │ │ │ ├── GetUserList.js │ │ │ ├── HasRoom.js │ │ │ ├── IsRoomOpened.js │ │ │ ├── JoinRandomRoom.js │ │ │ ├── JoinRoom.js │ │ │ ├── KickUser.js │ │ │ ├── LeaveRoom.js │ │ │ ├── Methods.js │ │ │ ├── RemoveRoom.js │ │ │ ├── Room.d.ts │ │ │ ├── Room.js │ │ │ ├── schema.md │ │ │ └── utils │ │ │ │ ├── CreateBroadcast.js │ │ │ │ ├── CreateRoomList.js │ │ │ │ ├── CreateTables.js │ │ │ │ ├── CreateUserList.js │ │ │ │ ├── OnJoinRoom.js │ │ │ │ └── RoomFilterMethods.js │ │ ├── singleroom │ │ │ ├── ChangeUserName.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── GetRefMethods.js │ │ │ ├── GetUserList.js │ │ │ ├── JoinRoom.js │ │ │ ├── KickUser.js │ │ │ ├── LeaveRoom.js │ │ │ ├── Methods.js │ │ │ ├── SingleRoom.d.ts │ │ │ ├── SingleRoom.js │ │ │ ├── schema.md │ │ │ └── utils │ │ │ │ ├── CreateBroadcast.js │ │ │ │ ├── CreateTables.js │ │ │ │ └── CreateUserList.js │ │ └── utils │ │ │ └── itemlist │ │ │ ├── ItemList.js │ │ │ ├── ItemMethods.js │ │ │ └── updaters │ │ │ ├── Callbacks.js │ │ │ ├── UpdateAll.js │ │ │ ├── UpdateChild.js │ │ │ └── UpdateOnce.js │ ├── firestore │ │ ├── files │ │ │ ├── Clear.js │ │ │ ├── Delete.js │ │ │ ├── DocToHeader.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Files.d.ts │ │ │ ├── Files.js │ │ │ ├── Load.js │ │ │ ├── LoadHeader.js │ │ │ ├── LoadHeaders.js │ │ │ ├── Save.js │ │ │ └── schema.md │ │ ├── idalias │ │ │ ├── Add.js │ │ │ ├── AddAliasTransaction.js │ │ │ ├── AddRandom.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── GetAlias.js │ │ │ ├── GetId.js │ │ │ ├── GetRandomAlias.js │ │ │ ├── IdAlias.d.ts │ │ │ ├── IdAlias.js │ │ │ ├── Remove.js │ │ │ ├── RetryAddRandomAliasTransaction.js │ │ │ └── schema.md │ │ ├── leaderboard │ │ │ ├── Const.js │ │ │ ├── DeleteMethods.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── GetQueryMethods.js │ │ │ ├── GetRank.js │ │ │ ├── GetScore.js │ │ │ ├── GetTime.js │ │ │ ├── LeaderBoard.d.ts │ │ │ ├── LeaderBoard.js │ │ │ ├── LoadMethods.js │ │ │ ├── Post.js │ │ │ └── schema.md │ │ ├── messages │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── GetQueryMethods.js │ │ │ ├── Messages.d.ts │ │ │ ├── Messages.js │ │ │ ├── ReceiveMethods.js │ │ │ ├── Send.js │ │ │ └── schema.md │ │ ├── pageloader │ │ │ ├── Factory.js │ │ │ ├── LoadCurrentPage.js │ │ │ ├── LoadFirstPage.js │ │ │ ├── LoadInRange.js │ │ │ ├── LoadNextPage.js │ │ │ ├── LoadPreviousPage.js │ │ │ └── PageLoader.js │ │ └── utils │ │ │ └── query │ │ │ ├── Delete.js │ │ │ ├── FindFirst.js │ │ │ ├── Load.js │ │ │ └── Query.js │ └── preload │ │ ├── AvailableTest.js │ │ ├── GetDefaultUrl.js │ │ ├── LoaderCallback.js │ │ ├── Preload.d.ts │ │ └── Preload.js ├── fisheyepipeline-plugin.d.ts ├── fisheyepipeline-plugin.js ├── fisheyepipeline.d.ts ├── fisheyepipeline.js ├── flash-plugin.d.ts ├── flash-plugin.js ├── flash.d.ts ├── flash.js ├── flip-plugin.d.ts ├── flip-plugin.js ├── flip.d.ts ├── flip.js ├── framemanager-plugin.d.ts ├── framemanager-plugin.js ├── framemanager.d.ts ├── framemanager.js ├── fsm-plugin.d.ts ├── fsm-plugin.js ├── fsm.d.ts ├── fsm.js ├── fullwindowrectangle-plugin.d.ts ├── fullwindowrectangle-plugin.js ├── fullwindowrectangle.d.ts ├── fullwindowrectangle.js ├── fullwindowzone-plugin.d.ts ├── fullwindowzone-plugin.js ├── fullwindowzone.d.ts ├── fullwindowzone.js ├── fuzzy-plugin.d.ts ├── fuzzy-plugin.js ├── fuzzy.d.ts ├── fuzzy.js ├── gameobjects │ ├── blitter │ │ ├── bitmaptext │ │ │ ├── BitmapText.js │ │ │ ├── methods │ │ │ │ ├── AppendText.js │ │ │ │ ├── Methods.js │ │ │ │ ├── RunVerticalWrap.js │ │ │ │ ├── RunWordWrap.js │ │ │ │ ├── SetFixedSize.js │ │ │ │ ├── SetFont.js │ │ │ │ ├── SetLetterSpacing.js │ │ │ │ ├── SetPadding.js │ │ │ │ ├── SetText.js │ │ │ │ ├── SetWrapConfig.js │ │ │ │ ├── UpdateCharacterDataManager.js │ │ │ │ └── UpdateText.js │ │ │ └── penmanager │ │ │ │ ├── PenManager.js │ │ │ │ ├── methods │ │ │ │ ├── AddTextPens.js │ │ │ │ ├── Methods.js │ │ │ │ ├── RemovePenMethods.js │ │ │ │ ├── SetTextPens.js │ │ │ │ ├── runverticalwrap │ │ │ │ │ └── RunVerticalWrap.js │ │ │ │ └── runwordwrap │ │ │ │ │ ├── GetWord.js │ │ │ │ │ └── RunWordWrap.js │ │ │ │ └── pen │ │ │ │ ├── Base.js │ │ │ │ ├── CharPen.js │ │ │ │ └── ImagePen.js │ │ ├── blitter │ │ │ ├── Blitter.d.ts │ │ │ ├── Blitter.js │ │ │ ├── Creator.js │ │ │ └── Factory.js │ │ ├── blitterbase │ │ │ ├── BlitterBase.d.ts │ │ │ ├── BlitterBase.js │ │ │ ├── bob │ │ │ │ ├── Base.d.ts │ │ │ │ ├── Base.js │ │ │ │ ├── RenderBase.d.ts │ │ │ │ ├── RenderBase.js │ │ │ │ ├── Types.js │ │ │ │ └── image │ │ │ │ │ ├── CanvasRender.js │ │ │ │ │ ├── ImageData.d.ts │ │ │ │ │ ├── ImageData.js │ │ │ │ │ └── WebglRender.js │ │ │ ├── methods │ │ │ │ ├── AddChild.js │ │ │ │ ├── GetChildren.js │ │ │ │ ├── GetLastAppendedChildren.js │ │ │ │ ├── Methods.js │ │ │ │ ├── PopReusedBob.js │ │ │ │ ├── RemoveChild.js │ │ │ │ ├── RemoveChildren.js │ │ │ │ ├── Resize.js │ │ │ │ ├── SetTexture.js │ │ │ │ └── TintMethods.js │ │ │ ├── poolmanager │ │ │ │ └── PoolManager.js │ │ │ ├── render │ │ │ │ ├── CanvasRenderer.js │ │ │ │ ├── Render.js │ │ │ │ └── WebGLRenderer.js │ │ │ └── utils │ │ │ │ └── AddImage.js │ │ └── ninepatch │ │ │ ├── Creator.js │ │ │ ├── Factory.js │ │ │ ├── Methods.js │ │ │ ├── NinePatch.d.ts │ │ │ ├── NinePatch.js │ │ │ └── texture │ │ │ ├── DrawImage.js │ │ │ └── DrawTileSprite.js │ ├── canvas │ │ ├── alphamaskimage │ │ │ ├── AlphaMaskImage.d.ts │ │ │ ├── AlphaMaskImage.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ └── Factory.js │ │ ├── canvas │ │ │ ├── Canvas.d.ts │ │ │ ├── Canvas.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ └── LoadImageMethods.js │ │ ├── canvasbase │ │ │ ├── Canvas.d.ts │ │ │ ├── Canvas.js │ │ │ ├── CanvasMethods.js │ │ │ ├── TextureMethods.js │ │ │ └── render │ │ │ │ ├── CanvasRenderer.js │ │ │ │ ├── Render.js │ │ │ │ └── WebGLRenderer.js │ │ ├── circlemaskimage │ │ │ ├── CircleMaskImage.d.ts │ │ │ ├── CircleMaskImage.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ └── Factory.js │ │ ├── circularprogress │ │ │ ├── CircularProgress.d.ts │ │ │ ├── CircularProgress.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── DrawContent.js │ │ │ ├── Factory.d.ts │ │ │ └── Factory.js │ │ ├── customprogress │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── CustomProgress.d.ts │ │ │ ├── CustomProgress.js │ │ │ ├── Factory.d.ts │ │ │ └── Factory.js │ │ ├── lineprogress │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── DrawContent.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── LineProgress.d.ts │ │ │ └── LineProgress.js │ │ ├── repeatimage │ │ │ ├── CreateFillPattern.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── DrawContent.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── RepeatImage.d.ts │ │ │ └── RepeatImage.js │ │ ├── roundrectangle │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── DrawContent.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── RoundRectangle.d.ts │ │ │ └── RoundRectangle.js │ │ └── utils │ │ │ └── DrawRoundRectangleBackground.js │ ├── container │ │ ├── carousel │ │ │ ├── Carousel.js │ │ │ ├── Creator.js │ │ │ ├── Factory.js │ │ │ └── methods │ │ │ │ ├── Methods.js │ │ │ │ └── ShowCells.js │ │ ├── containerlite │ │ │ ├── Active.js │ │ │ ├── AddChild.js │ │ │ ├── Alpha.js │ │ │ ├── Base.d.ts │ │ │ ├── Base.js │ │ │ ├── CameraFilter.js │ │ │ ├── ChangeOrigin.js │ │ │ ├── ChildState.js │ │ │ ├── Children.js │ │ │ ├── ContainerLite.d.ts │ │ │ ├── ContainerLite.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Depth.js │ │ │ ├── DrawBounds.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── GetParent.js │ │ │ ├── Mask.js │ │ │ ├── Methods.js │ │ │ ├── P3Container.js │ │ │ ├── Parent.js │ │ │ ├── Position.js │ │ │ ├── RemoveChild.js │ │ │ ├── RenderLayer.js │ │ │ ├── RenderTexture.js │ │ │ ├── Rotation.js │ │ │ ├── Scale.js │ │ │ ├── ScrollFactor.js │ │ │ ├── Transform.js │ │ │ ├── Tween.js │ │ │ ├── Visible.js │ │ │ ├── mask │ │ │ │ ├── AddChildMask.js │ │ │ │ ├── ChildrenMaskMethods.js │ │ │ │ └── MaskChildren.js │ │ │ ├── rendertexture │ │ │ │ ├── Enter.js │ │ │ │ ├── Exit.js │ │ │ │ ├── Init.js │ │ │ │ └── MeshRenderTextureBase.js │ │ │ └── utils │ │ │ │ ├── GetLocalState.js │ │ │ │ ├── GetScale.js │ │ │ │ └── Traversal.js │ │ ├── gridtable │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── GridTable.d.ts │ │ │ ├── GridTable.js │ │ │ ├── methods │ │ │ │ ├── EachCell.js │ │ │ │ ├── InsertNewCells.js │ │ │ │ ├── IsCellVisible.js │ │ │ │ ├── Methods.js │ │ │ │ ├── PointToCell.js │ │ │ │ ├── RemoveCells.js │ │ │ │ ├── SetCellsCount.js │ │ │ │ ├── SetColumnCount.js │ │ │ │ ├── SetGridSize.js │ │ │ │ ├── SetTableOX.js │ │ │ │ ├── SetTableOY.js │ │ │ │ ├── UpdateVisibleCell.js │ │ │ │ └── updatetable │ │ │ │ │ ├── GetCellTLX.js │ │ │ │ │ ├── GetCellTLY.js │ │ │ │ │ ├── HideCell.js │ │ │ │ │ ├── HideCells.js │ │ │ │ │ ├── ShowCell.js │ │ │ │ │ ├── ShowCells.js │ │ │ │ │ └── UpdateTable.js │ │ │ └── table │ │ │ │ ├── Cell.js │ │ │ │ └── Table.js │ │ ├── imagebox │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── ImageBox.d.ts │ │ │ ├── ImageBox.js │ │ │ └── methods │ │ │ │ ├── Methods.js │ │ │ │ ├── ResizeBackground.js │ │ │ │ └── ScaleImage.js │ │ ├── transitionimage │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── TransitionImage.d.ts │ │ │ ├── TransitionImage.js │ │ │ └── methods │ │ │ │ ├── CrossFadeTransition.js │ │ │ │ ├── FitImages.js │ │ │ │ ├── GridCutMethods.js │ │ │ │ ├── MaskMethods.js │ │ │ │ ├── Methods.js │ │ │ │ ├── OnTextureChange.js │ │ │ │ ├── SetTransitionCallbackMethods.js │ │ │ │ └── TransitionMethods.js │ │ └── utils │ │ │ └── FlipMethods.js │ ├── dom │ │ ├── filechooser │ │ │ ├── ClickPromise.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── FileChooser.d.ts │ │ │ └── FileChooser.js │ │ ├── filedropzone │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── FileDropZone.d.ts │ │ │ ├── FileDropZone.js │ │ │ ├── FileDropZoneProperties.js │ │ │ └── methods │ │ │ │ ├── DropEnableMethods.js │ │ │ │ ├── FilterMethods.js │ │ │ │ └── Methods.js │ │ ├── inputtext │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── InputText.d.ts │ │ │ ├── InputText.js │ │ │ └── InputTextProperties.js │ │ ├── utils │ │ │ ├── LoadFileMethods.js │ │ │ ├── Resize.js │ │ │ ├── RouteEvents.js │ │ │ ├── SetProperties.js │ │ │ ├── StopPropagationTouchEvents.js │ │ │ └── SyncTo.js │ │ └── youtubeplayer │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── LoadAPI.js │ │ │ ├── YoutubePlayer.d.ts │ │ │ └── YoutubePlayer.js │ ├── dynamictext │ │ ├── canvasinput │ │ │ ├── CanvasInput.d.ts │ │ │ ├── CanvasInput.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── methods │ │ │ │ ├── CreateInsertCursorChild.js │ │ │ │ ├── InjectDefaultConfig.js │ │ │ │ ├── MoveCursorMethods.js │ │ │ │ ├── RegisterArrowKeysEvent.js │ │ │ │ ├── RegisterCursorStyle.js │ │ │ │ ├── RegisterFocusStyle.js │ │ │ │ ├── RegisterRangeStyle.js │ │ │ │ ├── SetText.js │ │ │ │ └── SetTextOXYMethods.js │ │ │ └── textedit │ │ │ │ ├── ClearCursor.js │ │ │ │ ├── ClearSelectRange.js │ │ │ │ ├── CreateHiddenTextEdit.js │ │ │ │ ├── HiddenTextEdit.d.ts │ │ │ │ ├── HiddenTextEdit.js │ │ │ │ ├── MoveCursor.js │ │ │ │ └── SelectRange.js │ │ ├── dynamictext │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── DynamicText.d.ts │ │ │ ├── DynamicText.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── bob │ │ │ │ ├── Base.d.ts │ │ │ │ ├── Base.js │ │ │ │ ├── Types.js │ │ │ │ ├── background │ │ │ │ │ ├── Background.d.ts │ │ │ │ │ └── Background.js │ │ │ │ ├── char │ │ │ │ │ ├── CharData.d.ts │ │ │ │ │ ├── CharData.js │ │ │ │ │ ├── TextStyle.d.ts │ │ │ │ │ └── TextStyle.js │ │ │ │ ├── command │ │ │ │ │ ├── Command.d.ts │ │ │ │ │ └── Command.js │ │ │ │ ├── drawer │ │ │ │ │ ├── Drawer.d.ts │ │ │ │ │ └── Drawer.js │ │ │ │ ├── image │ │ │ │ │ ├── ImageData.d.ts │ │ │ │ │ └── ImageData.js │ │ │ │ ├── innerbounds │ │ │ │ │ ├── InnerBounds.d.ts │ │ │ │ │ └── InnerBounds.js │ │ │ │ ├── renderbase │ │ │ │ │ ├── Contains.js │ │ │ │ │ ├── GetWorldPosition.js │ │ │ │ │ ├── Methods.js │ │ │ │ │ ├── RenderBase.d.ts │ │ │ │ │ ├── RenderBase.js │ │ │ │ │ └── RenderMethods.js │ │ │ │ ├── space │ │ │ │ │ ├── Space.d.ts │ │ │ │ │ └── Space.js │ │ │ │ └── utils │ │ │ │ │ ├── GetProperty.js │ │ │ │ │ └── ScrollToBob.js │ │ │ ├── methods │ │ │ │ ├── AddChild.js │ │ │ │ ├── AppendCommand.js │ │ │ │ ├── AppendDrawer.js │ │ │ │ ├── AppendImage.js │ │ │ │ ├── AppendSpace.js │ │ │ │ ├── AppendText.js │ │ │ │ ├── BackgroundMethods.js │ │ │ │ ├── ClearContent.js │ │ │ │ ├── CreateCharChild.js │ │ │ │ ├── CreateCharChildren.js │ │ │ │ ├── CreateCommandChild.js │ │ │ │ ├── CreateDrawerChild.js │ │ │ │ ├── CreateImageChild.js │ │ │ │ ├── CreateSpaceChild.js │ │ │ │ ├── ForEachCharChild.js │ │ │ │ ├── ForEachChild.js │ │ │ │ ├── ForEachRenderableChild.js │ │ │ │ ├── GetActiveChildren.js │ │ │ │ ├── GetCharChild.js │ │ │ │ ├── GetCharChildIndex.js │ │ │ │ ├── GetCharChildren.js │ │ │ │ ├── GetCharIndex.js │ │ │ │ ├── GetCharWorldPosition.js │ │ │ │ ├── GetChildren.js │ │ │ │ ├── GetLastAppendedChildren.js │ │ │ │ ├── GetNearestChild.js │ │ │ │ ├── GetPadding.js │ │ │ │ ├── GetText.js │ │ │ │ ├── InnerBoundsMethods.js │ │ │ │ ├── InsertText.js │ │ │ │ ├── Methods.js │ │ │ │ ├── ModifyDefaultTextStyle.js │ │ │ │ ├── ModifyTextStyle.js │ │ │ │ ├── MoveChildMethods.js │ │ │ │ ├── PopChild.js │ │ │ │ ├── RemoveChild.js │ │ │ │ ├── RemoveChildren.js │ │ │ │ ├── RemoveText.js │ │ │ │ ├── RenderContent.js │ │ │ │ ├── ResetTextStyle.js │ │ │ │ ├── RunVerticalWrap.js │ │ │ │ ├── RunWordWrap.js │ │ │ │ ├── RunWrap.js │ │ │ │ ├── SetAlignMethods.js │ │ │ │ ├── SetFixedSize.js │ │ │ │ ├── SetPadding.js │ │ │ │ ├── SetTestString.js │ │ │ │ ├── SetText.js │ │ │ │ ├── SetTextOXYMethods.js │ │ │ │ ├── SetToMinSize.js │ │ │ │ ├── SetWrapConfig.js │ │ │ │ ├── input │ │ │ │ │ ├── GetFirstChildContains.js │ │ │ │ │ ├── SetChildrenInteractive.js │ │ │ │ │ ├── SetChildrenInteractiveEnable.js │ │ │ │ │ └── SetInteractive.js │ │ │ │ ├── utils │ │ │ │ │ └── transform │ │ │ │ │ │ ├── BobPositionToCanvasPosition.js │ │ │ │ │ │ ├── BobPositionToWorldPosition.js │ │ │ │ │ │ ├── CanvasPositionToBobPosition.js │ │ │ │ │ │ ├── GetBobCenterPosition.js │ │ │ │ │ │ └── GetBobWorldPosition.js │ │ │ │ └── wrap │ │ │ │ │ ├── Const.js │ │ │ │ │ ├── CreateWrapResultData.js │ │ │ │ │ ├── GetChildrenAlign.js │ │ │ │ │ ├── OffsetChildren.js │ │ │ │ │ ├── runverticalwrap │ │ │ │ │ ├── AlignLines.js │ │ │ │ │ └── RunVerticalWrap.js │ │ │ │ │ └── runwordwrap │ │ │ │ │ ├── AlignLines.js │ │ │ │ │ ├── GetDefaultTextHeight.js │ │ │ │ │ ├── GetWord.js │ │ │ │ │ └── RunWordWrap.js │ │ │ └── poolmanager │ │ │ │ └── PoolManager.js │ │ └── textplayer │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── TextPlayer.d.ts │ │ │ ├── TextPlayer.js │ │ │ ├── methods │ │ │ ├── AddImage.js │ │ │ ├── ContentMethods.js │ │ │ ├── Methods.js │ │ │ ├── PauseMethods.js │ │ │ ├── PlayMethods.js │ │ │ ├── ResumeMethods.js │ │ │ ├── SetCameraTarget.js │ │ │ ├── SetClickTarget.js │ │ │ ├── SetIgnoreNextPageInput.js │ │ │ ├── SetIgnoreWait.js │ │ │ ├── SetNextPageInput.js │ │ │ ├── ShowPage.js │ │ │ ├── SpriteMethods.js │ │ │ ├── TypingNextPage.js │ │ │ ├── TypingSpeedMethods.js │ │ │ ├── Wait.js │ │ │ ├── gameobjectmanager │ │ │ │ ├── GameObjectManagerMethods.js │ │ │ │ ├── OnParseAddGameObjectTag.js │ │ │ │ ├── OnParseCallGameObjectMethodTag.js │ │ │ │ ├── OnParseEaseGameObjectPropertyTag.js │ │ │ │ └── OnParseRemoveAllGameObjectsTag.js │ │ │ ├── spritemanager │ │ │ │ ├── AddSpriteManager.js │ │ │ │ ├── OnParseChainAnimationTag.js │ │ │ │ ├── OnParsePauseAnimationTag.js │ │ │ │ ├── OnParsePlayAnimationTag.js │ │ │ │ └── SpriteMethods.js │ │ │ └── utils │ │ │ │ ├── ClearEvents.js │ │ │ │ ├── Events.js │ │ │ │ ├── Progress.js │ │ │ │ └── wait │ │ │ │ ├── WaitAny.js │ │ │ │ ├── WaitCameraEffect.js │ │ │ │ └── WaitGameObject.js │ │ │ ├── parser │ │ │ ├── AddParseCallbacks.js │ │ │ ├── Parser.js │ │ │ ├── PreProcessSource.js │ │ │ ├── backgroundmusic │ │ │ │ ├── OnParseCrossFadeBackgroundMusicTag.js │ │ │ │ ├── OnParseFadeInBackgroundMusicTag.js │ │ │ │ ├── OnParseFadeOutBackgroundMusicTag.js │ │ │ │ ├── OnParsePauseBackgroundMusicTag.js │ │ │ │ ├── OnParsePlayBackgroundMusicTag.js │ │ │ │ ├── OnParseSetBackgroundMusicMuteTag.js │ │ │ │ └── OnParseSetBackgroundMusicVolumeTag.js │ │ │ ├── camera │ │ │ │ ├── OnParseFadeInCameraTag.js │ │ │ │ ├── OnParseFadeOutCameraTag.js │ │ │ │ ├── OnParseFlashCameraTag.js │ │ │ │ ├── OnParseRotateCameraTag.js │ │ │ │ ├── OnParseScrollCameraTag.js │ │ │ │ ├── OnParseShakeCameraTag.js │ │ │ │ └── OnParseZoomCameraTag.js │ │ │ ├── content │ │ │ │ ├── OnParseContent.js │ │ │ │ ├── OnParseContentOff.js │ │ │ │ ├── OnParseContentOn.js │ │ │ │ ├── OnParseNewLineTag.js │ │ │ │ └── OnParsePageBreakTag.js │ │ │ ├── custom │ │ │ │ └── OnParseCustomTag.js │ │ │ ├── image │ │ │ │ └── OnParseImageTag.js │ │ │ ├── soundeffect │ │ │ │ ├── OnParseFadeInSoundEffectTag.js │ │ │ │ ├── OnParseFadeOutSoundEffectTag.js │ │ │ │ ├── OnParsePlaySoundEffectTag.js │ │ │ │ ├── OnParseSetSoundEffectMuteTag.js │ │ │ │ └── OnParseSetSoundEffectVolumeTag.js │ │ │ ├── space │ │ │ │ └── OnParseSpaceTag.js │ │ │ ├── textstyle │ │ │ │ ├── OnParseAlignTag.js │ │ │ │ ├── OnParseBoldTag.js │ │ │ │ ├── OnParseColorTag.js │ │ │ │ ├── OnParseFontSizeTag.js │ │ │ │ ├── OnParseItalicTag.js │ │ │ │ ├── OnParseLeftSpaceTag.js │ │ │ │ ├── OnParseOffsetXTag.js │ │ │ │ ├── OnParseOffsetYTag.js │ │ │ │ ├── OnParseRightSpaceTag.js │ │ │ │ ├── OnParseShadowColorTag.js │ │ │ │ └── OnParseStrokeColorTag.js │ │ │ ├── typing │ │ │ │ └── OnParseTypingSpeedTag.js │ │ │ └── wait │ │ │ │ └── OnParseWaitTag.js │ │ │ └── typewriter │ │ │ ├── FadeOutPage.js │ │ │ ├── Methods.js │ │ │ ├── Pause.js │ │ │ ├── PauseTyping.js │ │ │ ├── Resume.js │ │ │ ├── ResumeTyping.js │ │ │ ├── SetIgnoreWait.js │ │ │ ├── SetSkipSoundEffect.js │ │ │ ├── SetSkipSpaceEnable.js │ │ │ ├── SetSkipTypingAnimation.js │ │ │ ├── SkipCurrentTypingDelay.js │ │ │ ├── Start.js │ │ │ ├── TimerTypes.js │ │ │ ├── TypeWriter.js │ │ │ ├── Typing.js │ │ │ ├── TypingSpeedMethods.js │ │ │ └── Wait.js │ ├── fullwindow │ │ ├── fullwindowrectangle │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── FullWindowRectangle.d.ts │ │ │ └── FullWindowRectangle.js │ │ └── fullwindowzone │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── FullWindowZone.js │ │ │ └── FullWindowZone.ts │ ├── live2d │ │ ├── framework │ │ │ ├── .eslintrc.yml │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── settings.json │ │ │ │ └── tasks.json │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.ja.md │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── cubismdefaultparameterid.d.ts │ │ │ │ ├── cubismdefaultparameterid.d.ts.map │ │ │ │ ├── cubismdefaultparameterid.js │ │ │ │ ├── cubismdefaultparameterid.js.map │ │ │ │ ├── cubismframeworkconfig.d.ts │ │ │ │ ├── cubismframeworkconfig.d.ts.map │ │ │ │ ├── cubismframeworkconfig.js │ │ │ │ ├── cubismframeworkconfig.js.map │ │ │ │ ├── cubismmodelsettingjson.d.ts │ │ │ │ ├── cubismmodelsettingjson.d.ts.map │ │ │ │ ├── cubismmodelsettingjson.js │ │ │ │ ├── cubismmodelsettingjson.js.map │ │ │ │ ├── effect │ │ │ │ │ ├── cubismbreath.d.ts │ │ │ │ │ ├── cubismbreath.d.ts.map │ │ │ │ │ ├── cubismbreath.js │ │ │ │ │ ├── cubismbreath.js.map │ │ │ │ │ ├── cubismeyeblink.d.ts │ │ │ │ │ ├── cubismeyeblink.d.ts.map │ │ │ │ │ ├── cubismeyeblink.js │ │ │ │ │ ├── cubismeyeblink.js.map │ │ │ │ │ ├── cubismpose.d.ts │ │ │ │ │ ├── cubismpose.d.ts.map │ │ │ │ │ ├── cubismpose.js │ │ │ │ │ └── cubismpose.js.map │ │ │ │ ├── icubismallcator.d.ts │ │ │ │ ├── icubismallcator.d.ts.map │ │ │ │ ├── icubismallcator.js │ │ │ │ ├── icubismallcator.js.map │ │ │ │ ├── icubismmodelsetting.d.ts │ │ │ │ ├── icubismmodelsetting.d.ts.map │ │ │ │ ├── icubismmodelsetting.js │ │ │ │ ├── icubismmodelsetting.js.map │ │ │ │ ├── id │ │ │ │ │ ├── cubismid.d.ts │ │ │ │ │ ├── cubismid.d.ts.map │ │ │ │ │ ├── cubismid.js │ │ │ │ │ ├── cubismid.js.map │ │ │ │ │ ├── cubismidmanager.d.ts │ │ │ │ │ ├── cubismidmanager.d.ts.map │ │ │ │ │ ├── cubismidmanager.js │ │ │ │ │ └── cubismidmanager.js.map │ │ │ │ ├── live2dcubismframework.d.ts │ │ │ │ ├── live2dcubismframework.d.ts.map │ │ │ │ ├── live2dcubismframework.js │ │ │ │ ├── live2dcubismframework.js.map │ │ │ │ ├── math │ │ │ │ │ ├── cubismmath.d.ts │ │ │ │ │ ├── cubismmath.d.ts.map │ │ │ │ │ ├── cubismmath.js │ │ │ │ │ ├── cubismmath.js.map │ │ │ │ │ ├── cubismmatrix44.d.ts │ │ │ │ │ ├── cubismmatrix44.d.ts.map │ │ │ │ │ ├── cubismmatrix44.js │ │ │ │ │ ├── cubismmatrix44.js.map │ │ │ │ │ ├── cubismmodelmatrix.d.ts │ │ │ │ │ ├── cubismmodelmatrix.d.ts.map │ │ │ │ │ ├── cubismmodelmatrix.js │ │ │ │ │ ├── cubismmodelmatrix.js.map │ │ │ │ │ ├── cubismtargetpoint.d.ts │ │ │ │ │ ├── cubismtargetpoint.d.ts.map │ │ │ │ │ ├── cubismtargetpoint.js │ │ │ │ │ ├── cubismtargetpoint.js.map │ │ │ │ │ ├── cubismvector2.d.ts │ │ │ │ │ ├── cubismvector2.d.ts.map │ │ │ │ │ ├── cubismvector2.js │ │ │ │ │ ├── cubismvector2.js.map │ │ │ │ │ ├── cubismviewmatrix.d.ts │ │ │ │ │ ├── cubismviewmatrix.d.ts.map │ │ │ │ │ ├── cubismviewmatrix.js │ │ │ │ │ └── cubismviewmatrix.js.map │ │ │ │ ├── model │ │ │ │ │ ├── cubismmoc.d.ts │ │ │ │ │ ├── cubismmoc.d.ts.map │ │ │ │ │ ├── cubismmoc.js │ │ │ │ │ ├── cubismmoc.js.map │ │ │ │ │ ├── cubismmodel.d.ts │ │ │ │ │ ├── cubismmodel.d.ts.map │ │ │ │ │ ├── cubismmodel.js │ │ │ │ │ ├── cubismmodel.js.map │ │ │ │ │ ├── cubismmodeluserdata.d.ts │ │ │ │ │ ├── cubismmodeluserdata.d.ts.map │ │ │ │ │ ├── cubismmodeluserdata.js │ │ │ │ │ ├── cubismmodeluserdata.js.map │ │ │ │ │ ├── cubismmodeluserdatajson.d.ts │ │ │ │ │ ├── cubismmodeluserdatajson.d.ts.map │ │ │ │ │ ├── cubismmodeluserdatajson.js │ │ │ │ │ ├── cubismmodeluserdatajson.js.map │ │ │ │ │ ├── cubismusermodel.d.ts │ │ │ │ │ ├── cubismusermodel.d.ts.map │ │ │ │ │ ├── cubismusermodel.js │ │ │ │ │ └── cubismusermodel.js.map │ │ │ │ ├── motion │ │ │ │ │ ├── acubismmotion.d.ts │ │ │ │ │ ├── acubismmotion.d.ts.map │ │ │ │ │ ├── acubismmotion.js │ │ │ │ │ ├── acubismmotion.js.map │ │ │ │ │ ├── cubismexpressionmotion.d.ts │ │ │ │ │ ├── cubismexpressionmotion.d.ts.map │ │ │ │ │ ├── cubismexpressionmotion.js │ │ │ │ │ ├── cubismexpressionmotion.js.map │ │ │ │ │ ├── cubismmotion.d.ts │ │ │ │ │ ├── cubismmotion.d.ts.map │ │ │ │ │ ├── cubismmotion.js │ │ │ │ │ ├── cubismmotion.js.map │ │ │ │ │ ├── cubismmotioninternal.d.ts │ │ │ │ │ ├── cubismmotioninternal.d.ts.map │ │ │ │ │ ├── cubismmotioninternal.js │ │ │ │ │ ├── cubismmotioninternal.js.map │ │ │ │ │ ├── cubismmotionjson.d.ts │ │ │ │ │ ├── cubismmotionjson.d.ts.map │ │ │ │ │ ├── cubismmotionjson.js │ │ │ │ │ ├── cubismmotionjson.js.map │ │ │ │ │ ├── cubismmotionmanager.d.ts │ │ │ │ │ ├── cubismmotionmanager.d.ts.map │ │ │ │ │ ├── cubismmotionmanager.js │ │ │ │ │ ├── cubismmotionmanager.js.map │ │ │ │ │ ├── cubismmotionqueueentry.d.ts │ │ │ │ │ ├── cubismmotionqueueentry.d.ts.map │ │ │ │ │ ├── cubismmotionqueueentry.js │ │ │ │ │ ├── cubismmotionqueueentry.js.map │ │ │ │ │ ├── cubismmotionqueuemanager.d.ts │ │ │ │ │ ├── cubismmotionqueuemanager.d.ts.map │ │ │ │ │ ├── cubismmotionqueuemanager.js │ │ │ │ │ └── cubismmotionqueuemanager.js.map │ │ │ │ ├── physics │ │ │ │ │ ├── cubismphysics.d.ts │ │ │ │ │ ├── cubismphysics.d.ts.map │ │ │ │ │ ├── cubismphysics.js │ │ │ │ │ ├── cubismphysics.js.map │ │ │ │ │ ├── cubismphysicsinternal.d.ts │ │ │ │ │ ├── cubismphysicsinternal.d.ts.map │ │ │ │ │ ├── cubismphysicsinternal.js │ │ │ │ │ ├── cubismphysicsinternal.js.map │ │ │ │ │ ├── cubismphysicsjson.d.ts │ │ │ │ │ ├── cubismphysicsjson.d.ts.map │ │ │ │ │ ├── cubismphysicsjson.js │ │ │ │ │ └── cubismphysicsjson.js.map │ │ │ │ ├── rendering │ │ │ │ │ ├── cubismrenderer.d.ts │ │ │ │ │ ├── cubismrenderer.d.ts.map │ │ │ │ │ ├── cubismrenderer.js │ │ │ │ │ ├── cubismrenderer.js.map │ │ │ │ │ ├── cubismrenderer_webgl.d.ts │ │ │ │ │ ├── cubismrenderer_webgl.d.ts.map │ │ │ │ │ ├── cubismrenderer_webgl.js │ │ │ │ │ └── cubismrenderer_webgl.js.map │ │ │ │ ├── type │ │ │ │ │ ├── csmmap.d.ts │ │ │ │ │ ├── csmmap.d.ts.map │ │ │ │ │ ├── csmmap.js │ │ │ │ │ ├── csmmap.js.map │ │ │ │ │ ├── csmrectf.d.ts │ │ │ │ │ ├── csmrectf.d.ts.map │ │ │ │ │ ├── csmrectf.js │ │ │ │ │ ├── csmrectf.js.map │ │ │ │ │ ├── csmstring.d.ts │ │ │ │ │ ├── csmstring.d.ts.map │ │ │ │ │ ├── csmstring.js │ │ │ │ │ ├── csmstring.js.map │ │ │ │ │ ├── csmvector.d.ts │ │ │ │ │ ├── csmvector.d.ts.map │ │ │ │ │ ├── csmvector.js │ │ │ │ │ └── csmvector.js.map │ │ │ │ └── utils │ │ │ │ │ ├── cubismdebug.d.ts │ │ │ │ │ ├── cubismdebug.d.ts.map │ │ │ │ │ ├── cubismdebug.js │ │ │ │ │ ├── cubismdebug.js.map │ │ │ │ │ ├── cubismjson.d.ts │ │ │ │ │ ├── cubismjson.d.ts.map │ │ │ │ │ ├── cubismjson.js │ │ │ │ │ ├── cubismjson.js.map │ │ │ │ │ ├── cubismstring.d.ts │ │ │ │ │ ├── cubismstring.d.ts.map │ │ │ │ │ ├── cubismstring.js │ │ │ │ │ └── cubismstring.js.map │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── cubismdefaultparameterid.ts │ │ │ │ ├── cubismframeworkconfig.ts │ │ │ │ ├── cubismmodelsettingjson.ts │ │ │ │ ├── effect │ │ │ │ │ ├── cubismbreath.ts │ │ │ │ │ ├── cubismeyeblink.ts │ │ │ │ │ └── cubismpose.ts │ │ │ │ ├── icubismallcator.ts │ │ │ │ ├── icubismmodelsetting.ts │ │ │ │ ├── id │ │ │ │ │ ├── cubismid.ts │ │ │ │ │ └── cubismidmanager.ts │ │ │ │ ├── live2dcubismframework.ts │ │ │ │ ├── math │ │ │ │ │ ├── cubismmath.ts │ │ │ │ │ ├── cubismmatrix44.ts │ │ │ │ │ ├── cubismmodelmatrix.ts │ │ │ │ │ ├── cubismtargetpoint.ts │ │ │ │ │ ├── cubismvector2.ts │ │ │ │ │ └── cubismviewmatrix.ts │ │ │ │ ├── model │ │ │ │ │ ├── cubismmoc.ts │ │ │ │ │ ├── cubismmodel.ts │ │ │ │ │ ├── cubismmodeluserdata.ts │ │ │ │ │ ├── cubismmodeluserdatajson.ts │ │ │ │ │ └── cubismusermodel.ts │ │ │ │ ├── motion │ │ │ │ │ ├── acubismmotion.ts │ │ │ │ │ ├── cubismexpressionmotion.ts │ │ │ │ │ ├── cubismmotion.ts │ │ │ │ │ ├── cubismmotioninternal.ts │ │ │ │ │ ├── cubismmotionjson.ts │ │ │ │ │ ├── cubismmotionmanager.ts │ │ │ │ │ ├── cubismmotionqueueentry.ts │ │ │ │ │ └── cubismmotionqueuemanager.ts │ │ │ │ ├── physics │ │ │ │ │ ├── cubismphysics.ts │ │ │ │ │ ├── cubismphysicsinternal.ts │ │ │ │ │ └── cubismphysicsjson.ts │ │ │ │ ├── rendering │ │ │ │ │ ├── cubismrenderer.ts │ │ │ │ │ └── cubismrenderer_webgl.ts │ │ │ │ ├── type │ │ │ │ │ ├── csmmap.ts │ │ │ │ │ ├── csmrectf.ts │ │ │ │ │ ├── csmstring.ts │ │ │ │ │ └── csmvector.ts │ │ │ │ └── utils │ │ │ │ │ ├── cubismdebug.ts │ │ │ │ │ ├── cubismjson.ts │ │ │ │ │ ├── cubismjsonextension.ts │ │ │ │ │ └── cubismstring.ts │ │ │ └── tsconfig.json │ │ ├── gameobject │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Live2dGameObject.d.ts │ │ │ ├── Live2dGameObject.js │ │ │ ├── Live2dGameObjectBase.d.ts │ │ │ ├── Live2dGameObjectBase.js │ │ │ ├── events │ │ │ │ ├── OnExpressionStart.js │ │ │ │ ├── OnIdle.js │ │ │ │ ├── OnMotionComplete.js │ │ │ │ └── OnMotionStart.js │ │ │ ├── globaldata │ │ │ │ ├── CanvasMatrix.js │ │ │ │ └── GlobalData.js │ │ │ ├── methods │ │ │ │ ├── Methods.js │ │ │ │ ├── SetModel.js │ │ │ │ ├── SetTimeScale.js │ │ │ │ ├── expression │ │ │ │ │ ├── GetExpressionNames.js │ │ │ │ │ ├── SetExpression.js │ │ │ │ │ └── SetRandomExpression.js │ │ │ │ ├── interactive │ │ │ │ │ ├── GetHitTestResult.js │ │ │ │ │ ├── HitAreaCallback.js │ │ │ │ │ ├── HitTest.js │ │ │ │ │ └── SetInteractive.js │ │ │ │ ├── lipsync │ │ │ │ │ └── SetLipSyncValue.js │ │ │ │ ├── motion │ │ │ │ │ ├── AutoPlayIdleMotion.js │ │ │ │ │ ├── GetMotionGroupNames.js │ │ │ │ │ ├── GetMotionNames.js │ │ │ │ │ ├── GetPlayinigMotionNames.js │ │ │ │ │ ├── IsAnyMotionPlaying.js │ │ │ │ │ ├── StartMotion.js │ │ │ │ │ └── StopAllMotions.js │ │ │ │ ├── parameter │ │ │ │ │ ├── AddParameterValue.js │ │ │ │ │ ├── GetParameters.js │ │ │ │ │ ├── LookAt.js │ │ │ │ │ ├── LookForward.js │ │ │ │ │ ├── RegisterParameter.js │ │ │ │ │ └── ResetParameterValue.js │ │ │ │ └── position │ │ │ │ │ └── WorldXYToModelXY.js │ │ │ ├── model │ │ │ │ ├── Const.js │ │ │ │ ├── Methods.js │ │ │ │ ├── Model.js │ │ │ │ ├── ViewMatrix.js │ │ │ │ ├── draw │ │ │ │ │ ├── Draw.js │ │ │ │ │ └── UpdateViewMatrix.js │ │ │ │ ├── expression │ │ │ │ │ ├── GetExpressionNames.js │ │ │ │ │ ├── SetExpression.js │ │ │ │ │ └── SetRandomExpression.js │ │ │ │ ├── hitarea │ │ │ │ │ ├── GetDrawableBounds.js │ │ │ │ │ ├── HitAreaNameToDrawIndex.js │ │ │ │ │ └── HitTest.js │ │ │ │ ├── motion │ │ │ │ │ ├── GetMotionGroupNames.js │ │ │ │ │ ├── GetMotionNames.js │ │ │ │ │ ├── GetPlayinigMotionNames.js │ │ │ │ │ ├── IsAnyMotionPlaying.js │ │ │ │ │ ├── StartMotion.js │ │ │ │ │ └── StopAllMotions.js │ │ │ │ ├── parameter │ │ │ │ │ ├── AddParameterValue.js │ │ │ │ │ ├── RegisterParameter.js │ │ │ │ │ └── ResetParameterValue.js │ │ │ │ ├── position │ │ │ │ │ └── LocalXToModelMatrixX.js │ │ │ │ ├── setup │ │ │ │ │ └── Setup.js │ │ │ │ └── update │ │ │ │ │ └── Update.js │ │ │ └── render │ │ │ │ ├── CanvasRenderer.js │ │ │ │ ├── Render.js │ │ │ │ └── WebGLRenderer.js │ │ ├── index.js │ │ ├── index.ts │ │ ├── loader │ │ │ ├── core │ │ │ │ ├── CoreScriptFileCallback.d.ts │ │ │ │ ├── CoreScriptFileCallback.js │ │ │ │ ├── Live2dCoreScriptFile.js │ │ │ │ └── Live2dCoreScriptState.js │ │ │ └── model │ │ │ │ ├── CreateBinaryFile.js │ │ │ │ ├── Live2dFile.js │ │ │ │ ├── Live2dFileCallback.d.ts │ │ │ │ ├── Live2dFileCallback.js │ │ │ │ └── LoadChildrenFiles.js │ │ ├── note.md │ │ └── utils │ │ │ └── Initialize.js │ ├── mesh │ │ ├── perspective │ │ │ ├── card │ │ │ │ ├── Card.d.ts │ │ │ │ ├── Card.js │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── Flip.js │ │ │ │ └── LayoutFaces.js │ │ │ ├── carousel │ │ │ │ ├── Carousel.d.ts │ │ │ │ ├── Carousel.js │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── FaceNameToIndex.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── GetFirstFace.js │ │ │ │ ├── LayoutFaces.js │ │ │ │ └── Roll.js │ │ │ ├── image │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── Image.d.ts │ │ │ │ └── Image.js │ │ │ ├── imagecarousel │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── GetFaceSize.js │ │ │ │ ├── GetIndexOffsetMap.js │ │ │ │ ├── ImageCarousel.d.ts │ │ │ │ ├── ImageCarousel.js │ │ │ │ └── Roll.js │ │ │ ├── rendertexture │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── RenderTexture.d.ts │ │ │ │ └── RenderTexture.js │ │ │ ├── sprite │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── Sprite.d.ts │ │ │ │ └── Sprite.js │ │ │ └── utils │ │ │ │ ├── CreateFaces.js │ │ │ │ ├── CreatePerspectiveObject.js │ │ │ │ ├── FaceContainer.d.ts │ │ │ │ ├── FaceContainer.js │ │ │ │ ├── ForEachFace.js │ │ │ │ └── TransformVerts.js │ │ ├── quad │ │ │ ├── image │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── Image.d.ts │ │ │ │ ├── Image.js │ │ │ │ └── methods │ │ │ │ │ ├── ControlPoint.js │ │ │ │ │ ├── GetPointPosition.js │ │ │ │ │ └── InitFaces.js │ │ │ ├── rendertexture │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── RenderTexture.d.ts │ │ │ │ └── RenderTexture.js │ │ │ ├── skewimage │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── Skew.js │ │ │ │ ├── SkewImage.d.ts │ │ │ │ └── SkewImage.js │ │ │ └── skewrendertexture │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── SkewRenderTexture.d.ts │ │ │ │ └── SkewRenderTexture.js │ │ ├── shatter │ │ │ ├── image │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── Face.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── Image.d.ts │ │ │ │ └── Image.js │ │ │ └── rendertexture │ │ │ │ ├── Creator.d.ts │ │ │ │ ├── Creator.js │ │ │ │ ├── Factory.d.ts │ │ │ │ ├── Factory.js │ │ │ │ ├── RenderTexture.d.ts │ │ │ │ └── RenderTexture.js │ │ └── utils │ │ │ ├── LocalXY.js │ │ │ └── MeshBase.js │ ├── rendertexture │ │ ├── line │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Line.d.ts │ │ │ ├── Line.js │ │ │ └── UpdateTexture.js │ │ ├── ninepatch │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── NinePatch.d.ts │ │ │ └── NinePatch.js │ │ └── utils │ │ │ ├── DrawImage.js │ │ │ ├── DrawTileSprite.js │ │ │ └── GetStampGameObject.js │ ├── shader │ │ └── effectlayer │ │ │ ├── effectlayer │ │ │ ├── Creator.js │ │ │ ├── EffectLayer.js │ │ │ └── Factory.js │ │ │ └── outline │ │ │ ├── Creator.js │ │ │ ├── Factory.js │ │ │ ├── OutlineEffectLayer.js │ │ │ └── outline-frag.js │ ├── shape │ │ ├── checkbox │ │ │ ├── Checkbox.d.ts │ │ │ ├── Checkbox.js │ │ │ ├── CheckboxShape.d.ts │ │ │ ├── CheckboxShape.js │ │ │ ├── CheckboxShapeCreator.d.ts │ │ │ ├── CheckboxShapeCreator.js │ │ │ ├── CheckboxShapeFactory.d.ts │ │ │ ├── CheckboxShapeFactory.js │ │ │ ├── Const.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ └── methods │ │ │ │ ├── CheckerAnimationMethods.js │ │ │ │ ├── Methods.js │ │ │ │ ├── ShapesUpdateMethods.js │ │ │ │ ├── SizeMethods.js │ │ │ │ └── StyleMethods.js │ │ ├── circularprogress │ │ │ ├── CircularProgress.d.ts │ │ │ ├── CircularProgress.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ └── ShapesUpdateMethods.js │ │ ├── cover │ │ │ ├── Cover.d.ts │ │ │ ├── Cover.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ └── Factory.js │ │ ├── customprogress │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── CustomProgress.d.ts │ │ │ ├── CustomProgress.js │ │ │ ├── Factory.d.ts │ │ │ └── Factory.js │ │ ├── customshapes │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── CustomShapes.d.ts │ │ │ ├── CustomShapes.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ └── ShapesUpdateMethods.js │ │ ├── line │ │ │ ├── Const.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Line.d.ts │ │ │ ├── Line.js │ │ │ └── methods │ │ │ │ ├── BuildEndPoint.js │ │ │ │ ├── DrawCubicBezierCurve.js │ │ │ │ ├── DrawPolyLine.js │ │ │ │ ├── DrawQuadraticBezierCurve.js │ │ │ │ ├── DrawSpinleCurve.js │ │ │ │ ├── DrawStraightLine.js │ │ │ │ ├── EndPointsMethods.js │ │ │ │ ├── GetBounds.js │ │ │ │ ├── Methods.js │ │ │ │ ├── SetInteractiveMethods.js │ │ │ │ ├── SetSizeFromBounds.js │ │ │ │ └── ShapesUpdateMethods.js │ │ ├── lineprogress │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── LineProgress.d.ts │ │ │ ├── LineProgress.js │ │ │ └── UpdateShapes.js │ │ ├── quad │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Quad.d.ts │ │ │ ├── Quad.js │ │ │ └── methods │ │ │ │ ├── PointMethods.js │ │ │ │ └── QuadGeom.js │ │ ├── roundrectangle │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── PolygnBase.js │ │ │ ├── RoundRectangle.d.ts │ │ │ ├── RoundRectangle.js │ │ │ └── render │ │ │ │ ├── CanvasRenderer.js │ │ │ │ ├── Render.js │ │ │ │ └── WebGLRenderer.js │ │ ├── roundrectangleprogress │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── RoundRectangleProgress.d.ts │ │ │ ├── RoundRectangleProgress.js │ │ │ └── methods │ │ │ │ ├── BuildRoundRectangle.js │ │ │ │ ├── BuildRoundRectangleBar.js │ │ │ │ ├── BuildRoundRectangleBarDirection0.js │ │ │ │ ├── BuildRoundRectangleBarDirection1.js │ │ │ │ ├── BuildRoundRectangleBarDirection2.js │ │ │ │ ├── BuildRoundRectangleBarDirection3.js │ │ │ │ └── UpdateShapes.js │ │ ├── shapes │ │ │ ├── BaseShapes.d.ts │ │ │ ├── BaseShapes.js │ │ │ ├── geoms │ │ │ │ ├── base │ │ │ │ │ ├── BaseGeom.d.ts │ │ │ │ │ ├── BaseGeom.js │ │ │ │ │ └── StyleMethods.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── lines │ │ │ │ │ ├── Curve.d.ts │ │ │ │ │ ├── Curve.js │ │ │ │ │ ├── Line.d.ts │ │ │ │ │ ├── Line.js │ │ │ │ │ ├── Lines.d.ts │ │ │ │ │ ├── Lines.js │ │ │ │ │ ├── PathBase.d.ts │ │ │ │ │ ├── PathBase.js │ │ │ │ │ ├── arc │ │ │ │ │ │ ├── Arc.d.ts │ │ │ │ │ │ ├── Arc.js │ │ │ │ │ │ ├── Circle.d.ts │ │ │ │ │ │ ├── Circle.js │ │ │ │ │ │ ├── Ellipse.d.ts │ │ │ │ │ │ └── Ellipse.js │ │ │ │ │ └── roundrectangle │ │ │ │ │ │ ├── RoundRectangle.d.ts │ │ │ │ │ │ └── RoundRectangle.js │ │ │ │ ├── rectangle │ │ │ │ │ ├── Rectangle.d.ts │ │ │ │ │ └── Rectangle.js │ │ │ │ └── triangle │ │ │ │ │ ├── Triangle.d.ts │ │ │ │ │ └── Triangle.js │ │ │ └── render │ │ │ │ ├── CanvasRenderer.js │ │ │ │ ├── Render.js │ │ │ │ └── WebGLRenderer.js │ │ ├── toggleswitch │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── ToggleSwitch.d.ts │ │ │ ├── ToggleSwitch.js │ │ │ ├── ToggleSwitchShape.d.ts │ │ │ ├── ToggleSwitchShape.js │ │ │ ├── ToggleSwitchShapeCreator.d.ts │ │ │ ├── ToggleSwitchShapeCreator.js │ │ │ ├── ToggleSwitchShapeFactory.d.ts │ │ │ ├── ToggleSwitchShapeFactory.js │ │ │ └── methods │ │ │ │ ├── Methods.js │ │ │ │ ├── PositionMethods.js │ │ │ │ ├── ShapesUpdateMethods.js │ │ │ │ ├── SizeMethods.js │ │ │ │ ├── StyleMethods.js │ │ │ │ └── ToggleAnimationMethods.js │ │ ├── triangle │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Triangle.d.ts │ │ │ ├── Triangle.js │ │ │ └── methods │ │ │ │ ├── DrawCircleVerticesTriangle.js │ │ │ │ ├── DrawFitTriangle.js │ │ │ │ ├── EaseDirectionMethods.js │ │ │ │ └── ShapesUpdateMethods.js │ │ └── utils │ │ │ ├── IsArcCorner.js │ │ │ └── render │ │ │ ├── FillPathWebGL.js │ │ │ ├── FillStyleCanvas.js │ │ │ ├── LineStyleCanvas.js │ │ │ └── StrokePathWebGL.js │ ├── tagtext │ │ ├── bbcodetext │ │ │ ├── BBCodeText.d.ts │ │ │ ├── BBCodeText.js │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ └── parser │ │ │ │ ├── Parser.js │ │ │ │ ├── PropToContextStyle.js │ │ │ │ ├── PropToTagText.js │ │ │ │ ├── SplitText.js │ │ │ │ ├── TagRegex.js │ │ │ │ └── TagTextToProp.js │ │ ├── tagtext │ │ │ ├── Creator.d.ts │ │ │ ├── Creator.js │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Parser.js │ │ │ ├── TagText.d.ts │ │ │ └── TagText.js │ │ └── textbase │ │ │ ├── IsCanvasTextGameObject.js │ │ │ ├── Text.d.ts │ │ │ ├── Text.js │ │ │ ├── canvastext │ │ │ ├── CanvasText.js │ │ │ ├── DrawMethods.js │ │ │ ├── GetHitArea.js │ │ │ └── SetInteractive.js │ │ │ ├── hitareamanager │ │ │ └── HitAreaManager.js │ │ │ ├── penmanger │ │ │ ├── Pen.js │ │ │ └── PenManager.js │ │ │ └── wraptext │ │ │ ├── WrapText.js │ │ │ └── WrapTextLinesPool.js │ ├── textbase │ │ ├── TextBase.js │ │ ├── const.js │ │ ├── render │ │ │ ├── CanvasRenderer.js │ │ │ ├── Render.js │ │ │ └── WebGLRenderer.js │ │ └── textstyle │ │ │ ├── MeasureText.js │ │ │ ├── MeasureTextMargins.js │ │ │ ├── PropertyMap.js │ │ │ ├── TextStyle.d.ts │ │ │ ├── TextStyle.js │ │ │ └── WrapModes.js │ └── video │ │ ├── videobase │ │ ├── CreateVideoElement.js │ │ ├── Load.js │ │ └── VideoBase.js │ │ ├── videocanvas │ │ ├── Creator.js │ │ ├── Factory.js │ │ └── VideoCanvas.js │ │ └── videodom │ │ ├── Creator.js │ │ ├── Factory.js │ │ └── VideoDOM.js ├── gashapon-plugin.d.ts ├── gashapon-plugin.js ├── gashapon.d.ts ├── gashapon.js ├── geom │ ├── hexagon │ │ ├── Height.js │ │ ├── Hexagon.js │ │ ├── SetPoints.js │ │ └── Width.js │ ├── pathdata │ │ ├── ArcTo.js │ │ ├── CatmullRomTo.js │ │ ├── CubicBezierCurveTo.js │ │ ├── DuplicateLast.js │ │ ├── LineTo.js │ │ ├── Offset.js │ │ ├── PathDataBuilder │ │ │ ├── AddPathMethods.js │ │ │ ├── GraphicsMethods.js │ │ │ ├── PathDataBuilder.js │ │ │ ├── PathSegmentMethods.js │ │ │ ├── SavePathDataMethods.js │ │ │ └── TransformPointsMethods.js │ │ ├── QuadraticBezierTo.js │ │ ├── RotateAround.js │ │ ├── Scale.js │ │ ├── StartAt.js │ │ ├── ToPoints.js │ │ └── ToPolygon.js │ ├── quad │ │ ├── Quad.js │ │ └── SetPoints.js │ ├── rhombus │ │ └── Rhombus.js │ ├── roundrectangle │ │ └── RoundRectangle.js │ └── utils │ │ ├── GetPoint.js │ │ ├── InitPoints.js │ │ ├── Offset.js │ │ └── RotateAround.js ├── gestures-plugin.d.ts ├── gestures-plugin.js ├── gestures.d.ts ├── gestures.js ├── glowfilter2pipeline-plugin.d.ts ├── glowfilter2pipeline-plugin.js ├── glowfilter2pipeline.d.ts ├── glowfilter2pipeline.js ├── glowfilterpipeline-plugin.d.ts ├── glowfilterpipeline-plugin.js ├── glowfilterpipeline.d.ts ├── glowfilterpipeline.js ├── graph-components.d.ts ├── graph-components.js ├── graph-logic.js ├── graph-plugin.d.ts ├── graph-plugin.js ├── graph │ ├── ObjectFactory.js │ ├── buildgraphfromtext │ │ ├── BuildGraphFromText.d.ts │ │ ├── BuildGraphFromText.js │ │ ├── flowparser │ │ │ ├── export-parser.bat │ │ │ ├── export.js │ │ │ ├── grammar.jison │ │ │ └── parser.js │ │ └── methods │ │ │ └── DefaultCreateEdgeGameObjectCallback.js │ ├── graph │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Graph.d.ts │ │ ├── Graph.js │ │ ├── LogicGraph.d.ts │ │ ├── LogicGraph.js │ │ ├── edge │ │ │ ├── AddEdgeMethods..js │ │ │ ├── EdgeAttributeMethods.js │ │ │ ├── GetEdgeLength.js │ │ │ ├── GetEdgeMethods.js │ │ │ └── RemoveEdgeMethods.js │ │ ├── methods │ │ │ ├── ContainerMethods.js │ │ │ ├── GameObjectsMethods.js │ │ │ └── Methods.js │ │ └── node │ │ │ ├── AddNodeMethods.js │ │ │ ├── GetNodeMethods.js │ │ │ ├── NeighborNodeMethods.js │ │ │ ├── NodeAttributeMethods.js │ │ │ └── RemoveNodeMethods.js │ ├── graphitem │ │ ├── GetGraphItem.js │ │ ├── GetObjUID.js │ │ ├── GraphItemData.js │ │ ├── IsUID.js │ │ ├── ObjBank.js │ │ ├── UIDListToObjList.js │ │ └── UIDToObj.js │ ├── layout │ │ ├── DagreLayout.d.ts │ │ ├── DagreLayout.js │ │ ├── ELKLayout.d.ts │ │ ├── ELKLayout.js │ │ ├── dagre │ │ │ ├── BuildGraphData.js │ │ │ ├── GetPath.js │ │ │ ├── Layout.d.ts │ │ │ ├── Layout.js │ │ │ ├── PlaceGameObjects.js │ │ │ └── RunLayout.js │ │ ├── elkjs │ │ │ ├── BuildGraphData.js │ │ │ ├── GetPath.js │ │ │ ├── Layout.d.ts │ │ │ ├── Layout.js │ │ │ ├── PlaceGameObjects.js │ │ │ └── RunLayout.js │ │ └── utils │ │ │ ├── DefaultLayoutEdgeCallback.js │ │ │ ├── Layout.d.ts │ │ │ └── Layout.js │ └── line │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Line.d.ts │ │ └── Line.js ├── grayscalepipeline-plugin.d.ts ├── grayscalepipeline-plugin.js ├── grayscalepipeline.d.ts ├── grayscalepipeline.js ├── gridalign-plugin.js ├── gridalign.js ├── gridcutimage-plugin.d.ts ├── gridcutimage-plugin.js ├── gridcutimage.d.ts ├── gridcutimage.js ├── gridtable-plugin.d.ts ├── gridtable-plugin.js ├── gridtable.d.ts ├── gridtable.js ├── groupnavigator-plugin.d.ts ├── groupnavigator-plugin.js ├── groupnavigator.d.ts ├── groupnavigator.js ├── hexagon-plugin.js ├── hexagon.js ├── hiddeninputtext-plugin.js ├── hiddeninputtext.d.ts ├── hiddeninputtext.js ├── horrifipipeline-plugin.d.ts ├── horrifipipeline-plugin.js ├── horrifipipeline.d.ts ├── horrifipipeline.js ├── hsladjustpipeline-plugin.d.ts ├── hsladjustpipeline-plugin.js ├── hsladjustpipeline.d.ts ├── hsladjustpipeline.js ├── imagebox-plugin.d.ts ├── imagebox-plugin.js ├── imagebox.d.ts ├── imagebox.js ├── imageuriloader-plugin.js ├── imageuriloader.d.ts ├── imageuriloader.js ├── input │ ├── button │ │ ├── Button.d.ts │ │ └── Button.js │ ├── clickoutside │ │ ├── ClickOutside.d.ts │ │ └── ClickOutside.js │ ├── cursoratbounds │ │ ├── CursorAtBounds.d.ts │ │ └── CursorAtBounds.js │ ├── drag │ │ ├── Drag.d.ts │ │ └── Drag.js │ ├── dragrotate │ │ ├── DragRotate.d.ts │ │ └── DragRotate.js │ ├── dragspeed │ │ └── DragSpeed.js │ ├── gamepadkeys │ │ ├── GamepadKeys.js │ │ └── methods │ │ │ └── BindGamepadMethods.js │ ├── gestures │ │ ├── ObjectFactory.js │ │ ├── onepointertracer │ │ │ ├── OnePointerTracer.d.ts │ │ │ └── OnePointerTracer.js │ │ ├── pan │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Pan.d.ts │ │ │ └── Pan.js │ │ ├── pinch │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Pinch.d.ts │ │ │ └── Pinch.js │ │ ├── press │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Press.d.ts │ │ │ └── Press.js │ │ ├── rotate │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Rotate.d.ts │ │ │ ├── Rotate.js │ │ │ └── SpinObject.js │ │ ├── swipe │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Swipe.d.ts │ │ │ ├── Swipe.js │ │ │ └── VelocityMethods.js │ │ ├── tap │ │ │ ├── Factory.d.ts │ │ │ ├── Factory.js │ │ │ ├── Tap.d.ts │ │ │ └── Tap.js │ │ └── twopointerstracer │ │ │ ├── TwoPointersTracer.d.ts │ │ │ └── TwoPointersTracer.js │ ├── intouching │ │ ├── InTouching.d.ts │ │ └── InTouching.js │ ├── keyshub │ │ ├── KeysHub.d.ts │ │ ├── KeysHub.js │ │ └── methods │ │ │ ├── DefineKeyMethods.js │ │ │ ├── KeyHub.js │ │ │ └── Methods.js │ ├── mousewheelscroller │ │ ├── MouseWheelScroller.d.ts │ │ └── MouseWheelScroller.js │ ├── mousewheeltoupdown │ │ ├── MouseWheelToUpDown.d.ts │ │ └── MouseWheelToUpDown.js │ ├── scroller │ │ ├── Scroller.d.ts │ │ ├── Scroller.js │ │ └── methods │ │ │ ├── State.js │ │ │ └── StateActions.js │ ├── slider │ │ ├── Slider.d.ts │ │ └── Slider.js │ ├── tiltcursor │ │ └── TiltCursor.js │ ├── touchcursor │ │ └── TouchCursor.js │ ├── toucheventstop │ │ ├── TouchEventStop.d.ts │ │ └── TouchEventStop.js │ ├── touchgroup │ │ └── TouchGroup.js │ ├── touchstate │ │ ├── TouchState.d.ts │ │ └── TouchState.js │ └── virtualjoystick │ │ ├── VirtualJoyStick.d.ts │ │ └── VirtualJoyStick.js ├── inputtext-plugin.d.ts ├── inputtext-plugin.js ├── inputtext.d.ts ├── inputtext.js ├── interception-plugin.d.ts ├── interception-plugin.js ├── interception.d.ts ├── interception.js ├── intouching-plugin.js ├── intouching.d.ts ├── intouching.js ├── inversepipeline-plugin.d.ts ├── inversepipeline-plugin.js ├── inversepipeline.d.ts ├── inversepipeline.js ├── jsoneventsheets-plugin.d.ts ├── jsoneventsheets-plugin.js ├── jsoneventsheets.d.ts ├── jsoneventsheets.js ├── kawaseblurpipeline-plugin.d.ts ├── kawaseblurpipeline-plugin.js ├── kawaseblurpipeline.d.ts ├── kawaseblurpipeline.js ├── keyshub-plugin.js ├── keyshub.js ├── layermanager-plugin.d.ts ├── layermanager-plugin.js ├── layermanager.d.ts ├── layermanager.js ├── levelcounter-plugin.d.ts ├── levelcounter-plugin.js ├── levelcounter.d.ts ├── levelcounter.js ├── lifetime-plugin.d.ts ├── lifetime-plugin.js ├── lifetime.d.ts ├── lifetime.js ├── line-plugin.d.ts ├── line-plugin.js ├── line.d.ts ├── line.js ├── lineprogress-plugin.d.ts ├── lineprogress-plugin.js ├── lineprogress.d.ts ├── lineprogress.js ├── lineprogresscanvas-plugin.d.ts ├── lineprogresscanvas-plugin.js ├── lineprogresscanvas.d.ts ├── lineprogresscanvas.js ├── lineshape-plugin.d.ts ├── lineshape-plugin.js ├── lineshape.d.ts ├── lineshape.js ├── live2d-plugin.d.ts ├── live2d-plugin.js ├── live2d.d.ts ├── live2d.js ├── loader │ ├── awaitloader │ │ ├── AwaitFile.js │ │ ├── AwaitLoaderCallback.d.ts │ │ └── AwaitLoaderCallback.js │ ├── imageuri │ │ ├── ImageURILoaderCallback.d.ts │ │ └── ImageURILoaderCallback.js │ ├── loadinganimationscene │ │ ├── StartLoadingAnimationScene.d.ts │ │ └── StartLoadingAnimationScene.js │ ├── scripttag │ │ ├── ScriptTagLoaderCallback.d.ts │ │ └── ScriptTagLoaderCallback.js │ └── webfontloader │ │ ├── TestFont.js │ │ ├── WebFont.js │ │ ├── WebFontLoaderCallback.d.ts │ │ └── WebFontLoaderCallback.js ├── loadinganimationscene-plugin.js ├── loadinganimationscene.d.ts ├── loadinganimationscene.js ├── loadingprogress-plugin.js ├── loadingprogress.js ├── localforage-files-plugin.d.ts ├── localforage-files-plugin.js ├── localforage-files.d.ts ├── localforage-files.js ├── localmask-plugin.js ├── localmask.js ├── localstorage-data-plugin.d.ts ├── localstorage-data-plugin.js ├── localstorage-data.d.ts ├── localstorage-data.js ├── logic │ ├── achievements │ │ ├── achievements │ │ │ ├── Achievements.d.ts │ │ │ └── Achievements.js │ │ ├── csvachievements │ │ │ ├── Achievements.d.ts │ │ │ └── Achievements.js │ │ └── ymlachievements │ │ │ ├── Achievements.d.ts │ │ │ └── Achievements.js │ ├── behaviortree │ │ ├── Factory.js │ │ ├── LICENSE │ │ ├── ObjectFactory.js │ │ ├── README.md │ │ ├── behaviortree │ │ │ ├── BehaviorTree.d.ts │ │ │ ├── BehaviorTree.js │ │ │ ├── DataMethods.js │ │ │ ├── Dump.js │ │ │ ├── Factory.js │ │ │ ├── Load.js │ │ │ └── Traversal.js │ │ ├── blackboard │ │ │ ├── Base.d.ts │ │ │ ├── Base.js │ │ │ ├── Blackboard.d.ts │ │ │ ├── Blackboard.js │ │ │ └── Factory.js │ │ ├── constants.d.ts │ │ ├── constants.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── nodes │ │ │ ├── Action.d.ts │ │ │ ├── Action.js │ │ │ ├── BaseNode.d.ts │ │ │ ├── BaseNode.js │ │ │ ├── Composite.d.ts │ │ │ ├── Composite.js │ │ │ ├── Decorator.d.ts │ │ │ ├── Decorator.js │ │ │ ├── Factory.js │ │ │ ├── Service.d.ts │ │ │ ├── Service.js │ │ │ ├── actions │ │ │ │ ├── Abort.d.ts │ │ │ │ ├── Abort.js │ │ │ │ ├── BreakAction.d.ts │ │ │ │ ├── BreakAction.js │ │ │ │ ├── Error.d.ts │ │ │ │ ├── Error.js │ │ │ │ ├── Failer.d.ts │ │ │ │ ├── Failer.js │ │ │ │ ├── Runner.d.ts │ │ │ │ ├── Runner.js │ │ │ │ ├── Succeeder.d.ts │ │ │ │ ├── Succeeder.js │ │ │ │ ├── Wait.d.ts │ │ │ │ └── Wait.js │ │ │ ├── composites │ │ │ │ ├── IfSelector.d.ts │ │ │ │ ├── IfSelector.js │ │ │ │ ├── Parallel.d.ts │ │ │ │ ├── Parallel.js │ │ │ │ ├── RandomSelector.d.ts │ │ │ │ ├── RandomSelector.js │ │ │ │ ├── Selector.d.ts │ │ │ │ ├── Selector.js │ │ │ │ ├── Sequence.d.ts │ │ │ │ ├── Sequence.js │ │ │ │ ├── ShuffleSelector.d.ts │ │ │ │ ├── ShuffleSelector.js │ │ │ │ ├── SwitchSelector.d.ts │ │ │ │ ├── SwitchSelector.js │ │ │ │ ├── WeightSelector.d.ts │ │ │ │ └── WeightSelector.js │ │ │ ├── decorators │ │ │ │ ├── AbortIf.d.ts │ │ │ │ ├── AbortIf.js │ │ │ │ ├── BreakDecorator.d.ts │ │ │ │ ├── BreakDecorator.js │ │ │ │ ├── Bypass.d.ts │ │ │ │ ├── Bypass.js │ │ │ │ ├── ContinueIf.d.ts │ │ │ │ ├── ContinueIf.js │ │ │ │ ├── Cooldown.d.ts │ │ │ │ ├── Cooldown.js │ │ │ │ ├── ForceFailure.d.ts │ │ │ │ ├── ForceFailure.js │ │ │ │ ├── ForceSuccess.d.ts │ │ │ │ ├── ForceSuccess.js │ │ │ │ ├── If.d.ts │ │ │ │ ├── If.js │ │ │ │ ├── Invert.d.ts │ │ │ │ ├── Invert.js │ │ │ │ ├── Limiter.d.ts │ │ │ │ ├── Limiter.js │ │ │ │ ├── Repeat.d.ts │ │ │ │ ├── Repeat.js │ │ │ │ ├── RepeatUntilFailure.d.ts │ │ │ │ ├── RepeatUntilFailure.js │ │ │ │ ├── RepeatUntilSuccess.d.ts │ │ │ │ ├── RepeatUntilSuccess.js │ │ │ │ ├── TimeLimit.d.ts │ │ │ │ └── TimeLimit.js │ │ │ ├── expressions │ │ │ │ ├── BaseExpression.d.ts │ │ │ │ ├── BaseExpression.js │ │ │ │ ├── BooleanExpression.d.ts │ │ │ │ ├── BooleanExpression.js │ │ │ │ ├── Expression.d.ts │ │ │ │ ├── Expression.js │ │ │ │ ├── StringTemplateExpression.d.ts │ │ │ │ ├── StringTemplateExpression.js │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ ├── parsers │ │ │ └── yaml │ │ │ │ ├── CreateNode.js │ │ │ │ ├── Factory.js │ │ │ │ ├── Handlers.js │ │ │ │ ├── LoadYaml.js │ │ │ │ ├── actions │ │ │ │ └── Wait.js │ │ │ │ ├── composites │ │ │ │ ├── IfSelector.js │ │ │ │ ├── Parallel.js │ │ │ │ ├── RandomSelector.js │ │ │ │ ├── Selector.js │ │ │ │ ├── Sequence.js │ │ │ │ ├── ShuffleSelector.js │ │ │ │ ├── SwitchSelector.js │ │ │ │ └── WeightSelector.js │ │ │ │ └── decorators │ │ │ │ ├── AbortIf.js │ │ │ │ ├── ContinueIf.js │ │ │ │ ├── Cooldown.js │ │ │ │ ├── ForceFailure.js │ │ │ │ ├── ForceSuccess.js │ │ │ │ ├── If.js │ │ │ │ ├── Invert.js │ │ │ │ ├── Repeat.js │ │ │ │ ├── RepeatUntilFailure.js │ │ │ │ ├── RepeatUntilSuccess.js │ │ │ │ └── TimeLimit.js │ │ ├── tick │ │ │ ├── Tick.d.ts │ │ │ └── Tick.js │ │ └── utils │ │ │ ├── CreateID.d.ts │ │ │ └── CreateID.js │ ├── bracketparser │ │ ├── bracketparser │ │ │ ├── BracketParser.d.ts │ │ │ └── BracketParser.js │ │ ├── bracketparser2 │ │ │ ├── BracketParser.d.ts │ │ │ ├── BracketParser.js │ │ │ └── ParseValue.js │ │ ├── bracketparserbase │ │ │ ├── BracketParser.d.ts │ │ │ ├── BracketParser.js │ │ │ └── TokenExpressionMethods.js │ │ └── tagplayer │ │ │ ├── TagPlayer.d.ts │ │ │ ├── TagPlayer.js │ │ │ ├── methods │ │ │ ├── ContentMethods.js │ │ │ ├── Methods.js │ │ │ ├── PauseMethods.js │ │ │ ├── PlayMethods.js │ │ │ ├── ResumeMethods.js │ │ │ ├── SetCameraTarget.js │ │ │ ├── SetClickTarget.js │ │ │ ├── SetSkipSoundEffect.js │ │ │ ├── Wait.js │ │ │ ├── gameobjectmanager │ │ │ │ ├── GameObjectManagerMethods.js │ │ │ │ ├── OnParseAddGameObjectTag.js │ │ │ │ ├── OnParseCallGameObjectMethodTag.js │ │ │ │ ├── OnParseEaseGameObjectPropertyTag.js │ │ │ │ └── OnParseRemoveAllGameObjectsTag.js │ │ │ ├── spritemanager │ │ │ │ ├── AddSpriteManager.js │ │ │ │ ├── OnParseChainAnimationTag.js │ │ │ │ ├── OnParsePauseAnimationTag.js │ │ │ │ ├── OnParsePlayAnimationTag.js │ │ │ │ └── SpriteMethods.js │ │ │ ├── textmanager │ │ │ │ ├── AddTextManager.js │ │ │ │ ├── OnParseSetTextTag.js │ │ │ │ ├── OnParseTypingTextTag.js │ │ │ │ └── TextMethods.js │ │ │ └── utils │ │ │ │ └── wait │ │ │ │ ├── WaitAny.js │ │ │ │ ├── WaitCameraEffect.js │ │ │ │ └── WaitGameObject.js │ │ │ └── parser │ │ │ ├── AddParseCallbacks.js │ │ │ ├── Parser.js │ │ │ ├── PreProcessSource.js │ │ │ ├── backgroundmusic │ │ │ ├── OnParseCrossFadeBackgroundMusicTag.js │ │ │ ├── OnParseFadeInBackgroundMusicTag.js │ │ │ ├── OnParseFadeOutBackgroundMusicTag.js │ │ │ ├── OnParsePauseBackgroundMusicTag.js │ │ │ ├── OnParsePlayBackgroundMusicTag.js │ │ │ ├── OnParseSetBackgroundMusicMuteTag.js │ │ │ └── OnParseSetBackgroundMusicVolumeTag.js │ │ │ ├── camera │ │ │ ├── OnParseFadeInCameraTag.js │ │ │ ├── OnParseFadeOutCameraTag.js │ │ │ ├── OnParseFlashCameraTag.js │ │ │ ├── OnParseRotateCameraTag.js │ │ │ ├── OnParseScrollCameraTag.js │ │ │ ├── OnParseShakeCameraTag.js │ │ │ └── OnParseZoomCameraTag.js │ │ │ ├── content │ │ │ └── OnParseContent.js │ │ │ ├── custom │ │ │ └── OnParseCustomTag.js │ │ │ ├── soundeffect │ │ │ ├── OnParseFadeInSoundEffectTag.js │ │ │ ├── OnParseFadeOutSoundEffectTag.js │ │ │ ├── OnParsePlaySoundEffectTag.js │ │ │ ├── OnParseSetSoundEffectMuteTag.js │ │ │ └── OnParseSetSoundEffectVolumeTag.js │ │ │ └── wait │ │ │ └── OnParseWaitTag.js │ ├── conditionstable │ │ ├── conditiontable │ │ │ ├── ConditionsTable.d.ts │ │ │ └── ConditionsTable.js │ │ ├── csvconditiontable │ │ │ ├── ConditionsTable.d.ts │ │ │ ├── ConditionsTable.js │ │ │ └── CreateTestFunction.js │ │ └── ymlconditiontable │ │ │ ├── ConditionsTable.d.ts │ │ │ └── ConditionsTable.js │ ├── eventsheets │ │ ├── command-list.md │ │ ├── commandexecutor │ │ │ ├── CommandExecutor.d.ts │ │ │ ├── CommandExecutor.js │ │ │ └── methods │ │ │ │ ├── AddCommand.js │ │ │ │ ├── CameraMethods.js │ │ │ │ ├── DataMethods.js │ │ │ │ ├── DefaultHandler.js │ │ │ │ ├── GameObjectManagerMethods.js │ │ │ │ ├── GameObjectMethods.js │ │ │ │ ├── LogMethods.js │ │ │ │ ├── Methods.js │ │ │ │ ├── WaitMethods.js │ │ │ │ └── musicmethods │ │ │ │ ├── BackgroundMusic2Methods.js │ │ │ │ ├── BackgroundMusicMethods.js │ │ │ │ ├── SoundEffects2Methods.js │ │ │ │ └── SoundEffectsMethods.js │ │ ├── eventsheetmanager │ │ │ ├── EventSheetManager.js │ │ │ ├── EventSheetManager.ts │ │ │ ├── eventsheet │ │ │ │ └── EventSheet.js │ │ │ ├── eventsheetgroup │ │ │ │ ├── AddTreeMethods.js │ │ │ │ ├── EventBehaviorTreeGroup.js │ │ │ │ ├── Methods.js │ │ │ │ ├── RemoveTreeMethods.js │ │ │ │ ├── RunMethods.js │ │ │ │ ├── SaveLoadTreeMethods.js │ │ │ │ ├── StateMethods.js │ │ │ │ ├── StopMethods.js │ │ │ │ ├── TreeActiveStateMethods.js │ │ │ │ └── TreeMethods.js │ │ │ ├── methods │ │ │ │ ├── AddTreeMethods.js │ │ │ │ ├── BindEventMethods.js │ │ │ │ ├── DataMethods.js │ │ │ │ ├── Methods.js │ │ │ │ ├── PauseEventSheetMethods.js │ │ │ │ ├── RemoveTreeMethods.js │ │ │ │ ├── RoundCounterMethods.js │ │ │ │ ├── RunMethods.js │ │ │ │ ├── SaveLoadTreesMethods.js │ │ │ │ ├── StateMethods.js │ │ │ │ ├── StopMethods.js │ │ │ │ ├── TreeActiveStateMethods.js │ │ │ │ ├── TreeMethods.js │ │ │ │ └── ValueConvertMethods.js │ │ │ ├── nodes │ │ │ │ ├── ActivateAction.js │ │ │ │ ├── BreakAction.js │ │ │ │ ├── BreakDecorator.js │ │ │ │ ├── ContinueAction.js │ │ │ │ ├── ContinueDecorator.js │ │ │ │ ├── CustomNodeMapping.js │ │ │ │ ├── DeactivateAction.js │ │ │ │ ├── LabelDecorator.js │ │ │ │ └── taskaction │ │ │ │ │ ├── PauseEventSheetMethods.js │ │ │ │ │ └── TaskAction.js │ │ │ └── readme.md │ │ ├── jsoneventsheets │ │ │ ├── JSONEventSheets.d.ts │ │ │ ├── JSONEventSheets.js │ │ │ └── buildtree │ │ │ │ ├── BuildTree.js │ │ │ │ ├── CreateActionNode.js │ │ │ │ ├── CreateActionSequence.js │ │ │ │ ├── CreateIfDecorator.js │ │ │ │ ├── GetConditionExpression.js │ │ │ │ └── GetTreeConfig.js │ │ ├── markedeventsheets │ │ │ ├── CSV2MD.d.ts │ │ │ ├── CSV2MD.js │ │ │ ├── MarkedEventSheets.d.ts │ │ │ ├── MarkedEventSheets.js │ │ │ ├── buildtree │ │ │ │ ├── BuildTree.js │ │ │ │ ├── BuiltInCommandTypes.js │ │ │ │ ├── CreateActionNode.js │ │ │ │ ├── CreateActionSequence.js │ │ │ │ ├── CreateParentNode.js │ │ │ │ ├── ExtraNumberExpression.js │ │ │ │ ├── GetConditionExpression.js │ │ │ │ ├── GetHeadingTree.js │ │ │ │ ├── GetTreeConfig.js │ │ │ │ ├── ParseProperty.js │ │ │ │ ├── ParseTopLevelNodes.js │ │ │ │ └── ParseType.js │ │ │ └── readme.md │ │ └── yamleventsheets │ │ │ ├── YAMLEventSheets.d.ts │ │ │ ├── YAMLEventSheets.js │ │ │ └── readme.md │ ├── fsm │ │ ├── FSM.d.ts │ │ ├── FSM.js │ │ ├── FSMBase.d.ts │ │ └── FSMBase.js │ ├── groupnavigator │ │ ├── GroupNavigator.d.ts │ │ ├── GroupNavigator.js │ │ └── methods │ │ │ ├── FocusMethods.js │ │ │ ├── GetNextMethods.js │ │ │ ├── Methods.js │ │ │ └── TargetsMethods.js │ ├── levelcounter │ │ ├── LevelCounter.d.ts │ │ └── LevelCounter.js │ ├── loopindexgenerator │ │ ├── LoopIndex.js │ │ └── LoopIndexGenerator.js │ ├── loopinticks │ │ └── LoopInTicks.js │ ├── quest │ │ ├── quest │ │ │ ├── Quest.d.ts │ │ │ └── Quest.js │ │ └── questions │ │ │ ├── AddQuestion.js │ │ │ ├── DataMethods.js │ │ │ ├── QuestMethods.js │ │ │ ├── QuestionManager.d.ts │ │ │ ├── QuestionManager.js │ │ │ ├── parse │ │ │ ├── ParseCSV.js │ │ │ ├── ParseInputData.js │ │ │ └── ParseYaml.js │ │ │ └── types.d.ts │ ├── runcommands │ │ ├── RunCommands.d.ts │ │ ├── RunCommands.js │ │ ├── arcadetcrp │ │ │ ├── Player.d.ts │ │ │ ├── Player.js │ │ │ ├── Recorder.d.ts │ │ │ ├── Recorder.js │ │ │ ├── StepRunner.d.ts │ │ │ └── StepRunner.js │ │ ├── csvscenario │ │ │ ├── CSVScenario.d.ts │ │ │ ├── CSVScenario.js │ │ │ ├── CSVScenarioLogic.d.ts │ │ │ ├── CSVScenarioLogic.js │ │ │ ├── InstMem.js │ │ │ ├── commands │ │ │ │ ├── BaseCmd.js │ │ │ │ ├── CmdHandlers.js │ │ │ │ ├── CustomCmd.js │ │ │ │ ├── ExitCmd.js │ │ │ │ ├── GotoCmd.js │ │ │ │ ├── IfCmd.js │ │ │ │ ├── LabelCmd.js │ │ │ │ └── WaitCmd.js │ │ │ └── timer │ │ │ │ ├── DefaultTimer.js │ │ │ │ ├── Timer.d.ts │ │ │ │ └── Timer.js │ │ ├── managers │ │ │ ├── Managers.d.ts │ │ │ └── Managers.js │ │ ├── sequence │ │ │ ├── Sequence.d.ts │ │ │ └── Sequence.js │ │ └── tcrp │ │ │ ├── Player.d.ts │ │ │ ├── Player.js │ │ │ ├── Recorder.d.ts │ │ │ └── Recorder.js │ ├── statemanager │ │ ├── StateManager.d.ts │ │ ├── StateManager.js │ │ ├── StateManagerBase.d.ts │ │ └── StateManagerBase.js │ └── waitevents │ │ ├── WaitEvents.d.ts │ │ └── WaitEvents.js ├── loopinticks-plugin.js ├── loopinticks.js ├── lzstring-plugin.d.ts ├── lzstring-plugin.js ├── lzstring.d.ts ├── lzstring.js ├── markedeventsheets-plugin.d.ts ├── markedeventsheets-plugin.js ├── markedeventsheets.d.ts ├── markedeventsheets.js ├── math │ ├── expressionparser │ │ ├── ExpressionParser.d.ts │ │ ├── ExpressionParser.js │ │ ├── GetProperty.js │ │ ├── parser │ │ │ ├── export-parser.bat │ │ │ ├── export.js │ │ │ ├── grammar.jison │ │ │ └── parser.js │ │ └── utils │ │ │ ├── Compile.d.ts │ │ │ └── Complile.js │ ├── fuzzy │ │ ├── BuildFuzzyModule.d.ts │ │ ├── BuildFuzzyModule.js │ │ ├── FuzzyModule.d.ts │ │ ├── FuzzyModule.js │ │ ├── rules │ │ │ ├── BuildFuzzyRule.js │ │ │ ├── BuildFuzzyRules.js │ │ │ ├── FuzzyRule.js │ │ │ └── operators │ │ │ │ ├── FuzzyAND.js │ │ │ │ ├── FuzzyCompositeTerm.js │ │ │ │ ├── FuzzyFAIRLY.js │ │ │ │ ├── FuzzyOR.js │ │ │ │ └── FuzzyVERY.js │ │ ├── utils │ │ │ ├── GetVariableName.js │ │ │ ├── IsInvalidLine.js │ │ │ └── parser │ │ │ │ ├── Parse.js │ │ │ │ ├── export-parser.bat │ │ │ │ ├── export.js │ │ │ │ ├── grammar.jison │ │ │ │ └── parser.js │ │ └── variables │ │ │ ├── BuildFuzzySet.js │ │ │ ├── BuildFuzzyVariable.js │ │ │ ├── BuildFuzzyVariables.js │ │ │ ├── FuzzyVariable.js │ │ │ ├── GetAllFuzzySets.js │ │ │ └── sets │ │ │ ├── FuzzySet.js │ │ │ ├── LeftSCurveFuzzySet.js │ │ │ ├── LeftShoulderFuzzySet.js │ │ │ ├── NormalDistFuzzySet.js │ │ │ ├── RightSCurveFuzzySet.js │ │ │ ├── RightShoulderFuzzySet.js │ │ │ ├── SingletonFuzzySet.js │ │ │ └── TriangularFuzzySet.js │ ├── gashapon │ │ ├── Gashapon.d.ts │ │ └── Gashapon.js │ └── raycaster │ │ ├── GetLineToPoints.js │ │ ├── GetLineToPolygon.js │ │ ├── Obstacles.js │ │ ├── Raycaster.d.ts │ │ └── Raycaster.js ├── maxdelta-plugin.js ├── modal-plugin.d.ts ├── modal-plugin.js ├── modal.d.ts ├── modal.js ├── mousewheelscroller-plugin.d.ts ├── mousewheelscroller-plugin.js ├── mousewheelscroller.d.ts ├── mousewheelscroller.js ├── mousewheeltoupdown-plugin.d.ts ├── mousewheeltoupdown-plugin.js ├── mousewheeltoupdown.d.ts ├── mousewheeltoupdown.js ├── moveto-plugin.d.ts ├── moveto-plugin.js ├── moveto.d.ts ├── moveto.js ├── ninepatch-plugin.d.ts ├── ninepatch-plugin.js ├── ninepatch.d.ts ├── ninepatch.js ├── ninepatch2-plugin.js ├── ninepatch2.d.ts ├── ninepatch2.js ├── objectpool-plugin.js ├── objectpool.js ├── outlineeffectlayer-plugin.js ├── outlineeffectlayer.js ├── outlinepipeline-plugin.d.ts ├── outlinepipeline-plugin.js ├── outlinepipeline.d.ts ├── outlinepipeline.js ├── parse-plugin.js ├── parse.js ├── parse │ ├── ObjectFactory.js │ ├── itemtable │ │ ├── DeleteMethods.js │ │ ├── Factory.js │ │ ├── GetItemCount.js │ │ ├── GetQuery.js │ │ ├── ItemTable.js │ │ ├── LoadMethods.js │ │ ├── LoadRandomItems.js │ │ ├── Save.js │ │ └── SaveItems.js │ ├── leaderboard │ │ ├── Const.js │ │ ├── DeleteMethods.js │ │ ├── Factory.js │ │ ├── GetQueryMethods.js │ │ ├── GetRank.js │ │ ├── GetScore.js │ │ ├── GetTime.js │ │ ├── LeaderBoard.js │ │ ├── LoadMethods.js │ │ └── Post.js │ ├── pageloader │ │ ├── Factory.js │ │ ├── LoadMethods.js │ │ └── PageLoader.js │ ├── quicklogin │ │ └── QuickLogin.js │ └── utils │ │ ├── DataToItem.js │ │ ├── InitialTable.js │ │ ├── SetOwnerAccessMode.js │ │ ├── preload │ │ ├── LoaderCallback.js │ │ └── Preload.js │ │ └── query │ │ ├── Delete.js │ │ ├── FindFirst.js │ │ ├── Load.js │ │ └── Query.js ├── particlesalongbounds-plugin.d.ts ├── particlesalongbounds-plugin.js ├── particlesalongbounds.d.ts ├── particlesalongbounds.js ├── pathfollower-plugin.d.ts ├── pathfollower-plugin.js ├── pathfollower.d.ts ├── pathfollower.js ├── perlin-plugin.d.ts ├── perlin-plugin.js ├── perlin.d.ts ├── perlin.js ├── perlingrivatywell-plugin.js ├── perlingrivatywell.js ├── persistenceeffect-plugin.js ├── persistenceeffect.js ├── perspectiveimage-plugin.d.ts ├── perspectiveimage-plugin.js ├── perspectiveimage.d.ts ├── perspectiveimage.js ├── pinch-plugin.js ├── pinch.js ├── pixelationpipeline-plugin.d.ts ├── pixelationpipeline-plugin.js ├── pixelationpipeline.d.ts ├── pixelationpipeline.js ├── pngappender-plugin.d.ts ├── pngappender-plugin.js ├── pngappender.d.ts ├── pngappender.js ├── polarcoordinate-plugin.d.ts ├── polarcoordinate-plugin.js ├── polarcoordinate.d.ts ├── polarcoordinate.js ├── pool.js ├── popup.d.ts ├── popup.js ├── quadimage-plugin.d.ts ├── quadimage-plugin.js ├── quadimage.d.ts ├── quadimage.js ├── quadshape-plugin.d.ts ├── quadshape-plugin.js ├── quadshape.d.ts ├── quadshape.js ├── quest-plugin.d.ts ├── quest-plugin.js ├── quest.d.ts ├── quest.js ├── randomplace-plugin.d.ts ├── randomplace-plugin.js ├── randomplace.d.ts ├── randomplace.js ├── raycaster-plugin.d.ts ├── raycaster-plugin.js ├── raycaster.d.ts ├── raycaster.js ├── realtimetimers-plugin.d.ts ├── realtimetimers-plugin.js ├── realtimetimers.d.ts ├── realtimetimers.js ├── repeatimage-plugin.d.ts ├── repeatimage-plugin.js ├── repeatimage.d.ts ├── repeatimage.js ├── requestdrag.d.ts ├── requestdrag.js ├── restorabledata-plugin.d.ts ├── restorabledata-plugin.js ├── restorabledata.d.ts ├── restorabledata.js ├── rhombus-plugin.js ├── rhombus.js ├── rotate-plugin.d.ts ├── rotate-plugin.js ├── rotate.d.ts ├── rotate.js ├── rotateto-plugin.d.ts ├── rotateto-plugin.js ├── rotateto.d.ts ├── rotateto.js ├── roundrectangle-plugin.d.ts ├── roundrectangle-plugin.js ├── roundrectangle.d.ts ├── roundrectangle.js ├── roundrectanglecanvas-plugin.d.ts ├── roundrectanglecanvas-plugin.js ├── roundrectanglecanvas.d.ts ├── roundrectanglecanvas.js ├── roundrectangleprogress-plugin.d.ts ├── roundrectangleprogress-plugin.js ├── roundrectangleprogress.d.ts ├── roundrectangleprogress.js ├── runcommands-plugin.d.ts ├── runcommands-plugin.js ├── runcommands.d.ts ├── runcommands.js ├── scale-down-destroy.d.ts ├── scale-down-destroy.js ├── scale-plugin.d.ts ├── scale-plugin.js ├── scale.d.ts ├── scale.js ├── scale │ └── scaleouter │ │ ├── CheckScaleMode.js │ │ ├── GetInnerViewport.js │ │ ├── GetOuterViewport.js │ │ ├── GetScaleOuterCameraParameters.js │ │ ├── ScaleOuter.d.ts │ │ ├── ScaleOuter.js │ │ └── ShrinkSizeByRatio.js ├── scaleouter-plugin.d.ts ├── scaleouter-plugin.js ├── scaleouter.d.ts ├── scaleouter.js ├── scripttagloader-plugin.d.ts ├── scripttagloader-plugin.js ├── scripttagloader.d.ts ├── scripttagloader.js ├── scroller-plugin.d.ts ├── scroller-plugin.js ├── scroller.d.ts ├── scroller.js ├── sequence-plugin.d.ts ├── sequence-plugin.js ├── sequence.d.ts ├── sequence.js ├── shaders │ ├── alphatint │ │ ├── AlphaTintPostFxPipeline.d.ts │ │ ├── AlphaTintPostFxPipeline.js │ │ └── alphatint-frag.js │ ├── barrel │ │ ├── BarrelPostFxPipeline.d.ts │ │ ├── BarrelPostFxPipeline.js │ │ └── barrel-frag.js │ ├── colorreplace │ │ ├── ColorReplacePostFxPipeline.d.ts │ │ ├── ColorReplacePostFxPipeline.js │ │ └── colorreplace-frag.js │ ├── crossstitching │ │ ├── CrossStitchingPostFxPipeline.d.ts │ │ ├── CrossStitchingPostFxPipeline.js │ │ └── crossstitching-frag.js │ ├── crt │ │ ├── CrtPostFxPipeline.d.ts │ │ ├── CrtPostFxPipeline.js │ │ └── crt-frag.js │ ├── dissolve │ │ ├── DissolvePostFxPipeline.d.ts │ │ ├── DissolvePostFxPipeline.js │ │ └── dissolve-frag.js │ ├── dropshadow │ │ ├── DropShadowPostFxPipeline.d.ts │ │ ├── DropShadowPostFxPipeline.js │ │ ├── ShadowDrawer.js │ │ └── dropshadow-frag.js │ ├── fisheye │ │ ├── FishEyePostFxPipeline.d.ts │ │ ├── FishEyePostFxPipeline.js │ │ └── fisheye-frag.js │ ├── glowfilter │ │ ├── GlowFilterPostFxPipeline.d.ts │ │ ├── GlowFilterPostFxPipeline.js │ │ └── glowfilter-frag.js │ ├── glowfilter2 │ │ ├── GlowFilterPostFxPipeline.d.ts │ │ ├── GlowFilterPostFxPipeline.js │ │ └── glowfilter-frag.js │ ├── grayscale │ │ ├── GrayScalePostFxPipeline.d.ts │ │ ├── GrayScalePostFxPipeline.js │ │ └── grayscale-frag.js │ ├── horrifi │ │ ├── HorrifiPostFxPipeline.d.ts │ │ ├── HorrifiPostFxPipeline.js │ │ ├── horrifi-frag.js │ │ └── methods │ │ │ ├── BloonConfigurationMethods.js │ │ │ ├── CRTConfigurationMethod.js │ │ │ ├── ChromaticConfigurationMethods.js │ │ │ ├── Methods.js │ │ │ ├── NoiseConfigurationMethod.js │ │ │ ├── ScanlinesConfigurationMethod.js │ │ │ ├── SetEnable.js │ │ │ ├── VHSConfigurationMethod.js │ │ │ └── VignetteConfigurationMethod.js │ ├── hsladjust │ │ ├── HslAdjustPostFxPipeline.d.ts │ │ ├── HslAdjustPostFxPipeline.js │ │ └── hslAdjust-frag.js │ ├── inverse │ │ ├── InversePostFxPipeline.d.ts │ │ ├── InversePostFxPipeline.js │ │ └── inverse-frag.js │ ├── kawaseblur │ │ ├── GenerateKernels.js │ │ ├── KawaseBlurDrawer.js │ │ ├── KawaseBlurFilterPostFxPipeline.d.ts │ │ ├── KawaseBlurFilterPostFxPipeline.js │ │ └── kawaseblurFilter-frag.js │ ├── localmask │ │ ├── LocalMaskController.js │ │ ├── LocalMaskPreFxPipeline.js │ │ └── localmask-fragshader.js │ ├── outline │ │ ├── OutlinePostFxPipeline.d.ts │ │ ├── OutlinePostFxPipeline.js │ │ └── outline-frag.js │ ├── pixelation │ │ ├── PixelationPostFxPipeline.d.ts │ │ ├── PixelationPostFxPipeline.js │ │ └── pixelation-frag.js │ ├── shockwave │ │ ├── ShockwavePostFxPipeline.d.ts │ │ ├── ShockwavePostFxPipeline.js │ │ └── shockwave-frag.js │ ├── split │ │ ├── SplitPostFxPipeline.d.ts │ │ ├── SplitPostFxPipeline.js │ │ └── split-frag.js │ ├── swirl │ │ ├── SwirlPostFxPipeline.d.ts │ │ ├── SwirlPostFxPipeline.js │ │ └── swirl-frag.js │ ├── toonify │ │ ├── ToonifyPostFxPipeline.d.ts │ │ ├── ToonifyPostFxPipeline.js │ │ └── toonify-frag.js │ ├── utils │ │ ├── AvgRGB.js │ │ ├── HSLToRGB.js │ │ ├── HSVToRGB.js │ │ ├── HUEToRGB.js │ │ ├── IsEdge.js │ │ ├── RGBToHSL.js │ │ ├── RGBToHSV.js │ │ ├── drawer │ │ │ ├── Drawer.js │ │ │ └── alpha │ │ │ │ ├── AlphaDrawer.js │ │ │ │ └── alpha-postfxfrag.js │ │ ├── noise │ │ │ ├── Perlin.js │ │ │ └── Turbulence.js │ │ └── spritefxcontrol │ │ │ └── Base.js │ └── warp │ │ ├── WarpPostFxPipeline.d.ts │ │ ├── WarpPostFxPipeline.js │ │ └── warp-frag.js ├── shakeposition-plugin.d.ts ├── shakeposition-plugin.js ├── shakeposition.d.ts ├── shakeposition.js ├── shatterimage-plugin.d.ts ├── shatterimage-plugin.js ├── shatterimage.d.ts ├── shatterimage.js ├── ship-plugin.d.ts ├── ship-plugin.js ├── ship.d.ts ├── ship.js ├── shockwavepipeline-plugin.d.ts ├── shockwavepipeline-plugin.js ├── shockwavepipeline.d.ts ├── shockwavepipeline.js ├── slider-plugin.d.ts ├── slider-plugin.js ├── slider.d.ts ├── slider.js ├── soundfade-plugin.d.ts ├── soundfade-plugin.js ├── soundfade.d.ts ├── soundfade.js ├── spiralcurve-plugin.d.ts ├── spiralcurve-plugin.js ├── spiralcurve.d.ts ├── spiralcurve.js ├── splitpipeline-plugin.d.ts ├── splitpipeline-plugin.js ├── splitpipeline.d.ts ├── splitpipeline.js ├── statemanager-plugin.d.ts ├── statemanager-plugin.js ├── statemanager.d.ts ├── statemanager.js ├── step-plugin.d.ts ├── step-plugin.js ├── step.d.ts ├── step.js ├── storage │ ├── localforage │ │ ├── files │ │ │ ├── Clear.js │ │ │ ├── DataProcessMethods.js │ │ │ ├── Delete.js │ │ │ ├── Files.d.ts │ │ │ ├── Files.js │ │ │ ├── GetKey.js │ │ │ ├── Load.js │ │ │ ├── LoadHeaders.js │ │ │ └── Save.js │ │ └── utils │ │ │ ├── GetItems.js │ │ │ ├── RemoveItems.js │ │ │ └── SetItems.js │ └── localstorage │ │ ├── data │ │ ├── AddCallbacks.js │ │ ├── DataManager.d.ts │ │ ├── DataManager.js │ │ ├── Extend.d.ts │ │ ├── Extend.js │ │ ├── GetDefaultValue.js │ │ ├── Load.js │ │ └── StorageMethods.js │ │ └── utils │ │ └── StorageMethods.js ├── string │ ├── lzstring │ │ ├── LZString.d.ts │ │ └── LZString.js │ ├── stringtemplate │ │ ├── StringTemplate.d.ts │ │ ├── StringTemplate.js │ │ └── utils │ │ │ ├── Complile.js │ │ │ └── Render.js │ └── xor │ │ ├── Decrypt.d.ts │ │ ├── Decrypt.js │ │ ├── Encrypt.d.ts │ │ └── Encrypt.js ├── stringtemplate-plugin.js ├── stringtemplate.js ├── swirlpipeline-plugin.d.ts ├── swirlpipeline-plugin.js ├── swirlpipeline.d.ts ├── swirlpipeline.js ├── tagplayer-plugin.d.ts ├── tagplayer-plugin.js ├── tagplayer.d.ts ├── tagplayer.js ├── tagtext-plugin.d.ts ├── tagtext-plugin.js ├── tagtext.d.ts ├── tagtext.js ├── tcrp-plugin.d.ts ├── tcrp-plugin.js ├── tcrp.d.ts ├── tcrp.js ├── textedit-plugin.d.ts ├── textedit-plugin.js ├── textedit.d.ts ├── textedit.js ├── textpage-plugin.d.ts ├── textpage-plugin.js ├── textpage.d.ts ├── textpage.js ├── textplayer-plugin.d.ts ├── textplayer-plugin.js ├── textplayer.d.ts ├── textplayer.js ├── texttranslation-plugin.d.ts ├── texttranslation-plugin.js ├── texttranslation.d.ts ├── texttranslation.js ├── texttruncator-plugin.d.ts ├── texttruncator-plugin.js ├── texttruncator.d.ts ├── texttruncator.js ├── texttyping-plugin.d.ts ├── texttyping-plugin.js ├── texttyping.d.ts ├── texttyping.js ├── texture │ ├── charactercache │ │ ├── CharacterCache.d.ts │ │ ├── CharacterCache.js │ │ ├── Const.js │ │ └── methods │ │ │ ├── BitmapTextMethods.js │ │ │ ├── CharacterQueryMethods.js │ │ │ ├── Clear.js │ │ │ ├── CreateBitmapTextClass.js │ │ │ ├── CreateCharacterCollection.js │ │ │ ├── CreateFrameManager.js │ │ │ ├── GetAllData.js │ │ │ ├── GetCharacterCache.js │ │ │ ├── Load.js │ │ │ ├── Methods.js │ │ │ └── Unlock.js │ └── framemanager │ │ ├── FrameManager.d.ts │ │ ├── FrameManager.js │ │ └── methods │ │ ├── AddEmptyFrame.js │ │ ├── AddToBitmapFont.js │ │ ├── Draw.js │ │ ├── Methods.js │ │ ├── Paste.js │ │ └── RemoveMethods.js ├── time │ ├── awaytime │ │ ├── AwayTime.d.ts │ │ └── AwayTime.js │ ├── clock │ │ ├── ArcadeStepClock.d.ts │ │ ├── ArcadeStepClock.js │ │ ├── BaseClock.d.ts │ │ ├── BaseClock.js │ │ ├── Clock.d.ts │ │ ├── Clock.js │ │ └── GameClock.js │ ├── lifetime │ │ ├── LifeTime.d.ts │ │ └── LifeTime.js │ ├── progresses │ │ ├── Timeline.js │ │ ├── Timer.js │ │ └── TimerPool.js │ └── realtimetimers │ │ ├── RealTimeTimers.d.ts │ │ └── RealTimeTimers.js ├── tintrgb-plugin.d.ts ├── tintrgb-plugin.js ├── tintrgb.d.ts ├── tintrgb.js ├── toggleswitch-plugin.d.ts ├── toggleswitch-plugin.js ├── toggleswitch.d.ts ├── toggleswitch.js ├── toggleswitchshape.d.ts ├── toggleswitchshape.js ├── toonifypipeline-plugin.d.ts ├── toonifypipeline-plugin.js ├── toonifypipeline.d.ts ├── toonifypipeline.js ├── touchcursor-plugin.js ├── touchcursor.js ├── toucheventstop-plugin.d.ts ├── toucheventstop-plugin.js ├── toucheventstop.d.ts ├── toucheventstop.js ├── touchhelper-plugin.js ├── touchstate-plugin.js ├── touchstate.d.ts ├── touchstate.js ├── transitionimage-plugin.d.ts ├── transitionimage-plugin.js ├── transitionimage.d.ts ├── transitionimage.js ├── triangle-plugin.d.ts ├── triangle-plugin.js ├── triangle.d.ts ├── triangle.js ├── uniqueitemlist-plugin.d.ts ├── uniqueitemlist-plugin.js ├── uniqueitemlist.d.ts ├── uniqueitemlist.js ├── utils │ ├── actions │ │ ├── AlignConst.js │ │ ├── AlignIn.js │ │ ├── AlignType.d.ts │ │ ├── GlobZone.js │ │ ├── RotateObjectAround.js │ │ └── SortByDisplayOrder.js │ ├── align │ │ ├── align │ │ │ ├── const.js │ │ │ ├── in │ │ │ │ ├── BottomCenter.js │ │ │ │ ├── BottomLeft.js │ │ │ │ ├── BottomRight.js │ │ │ │ ├── Center.js │ │ │ │ ├── LeftCenter.js │ │ │ │ ├── QuickSet.js │ │ │ │ ├── RightCenter.js │ │ │ │ ├── TopCenter.js │ │ │ │ ├── TopLeft.js │ │ │ │ ├── TopRight.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── to │ │ │ │ ├── BottomCenter.js │ │ │ │ ├── BottomLeft.js │ │ │ │ ├── BottomRight.js │ │ │ │ ├── LeftBottom.js │ │ │ │ ├── LeftCenter.js │ │ │ │ ├── LeftTop.js │ │ │ │ ├── RightBottom.js │ │ │ │ ├── RightCenter.js │ │ │ │ ├── RightTop.js │ │ │ │ ├── TopCenter.js │ │ │ │ ├── TopLeft.js │ │ │ │ ├── TopRight.js │ │ │ │ └── index.js │ │ ├── bounds │ │ │ ├── CenterOn.js │ │ │ ├── GetBottom.js │ │ │ ├── GetCenterX.js │ │ │ ├── GetCenterY.js │ │ │ ├── GetLeft.js │ │ │ ├── GetOffsetX.js │ │ │ ├── GetOffsetY.js │ │ │ ├── GetRight.js │ │ │ ├── GetTop.js │ │ │ ├── SetBottom.js │ │ │ ├── SetCenterX.js │ │ │ ├── SetCenterY.js │ │ │ ├── SetLeft.js │ │ │ ├── SetRight.js │ │ │ ├── SetTop.js │ │ │ └── index.js │ │ └── index.js │ ├── arcade │ │ ├── ArcadeGameObject.d.ts │ │ ├── ArcadeMethods.js │ │ ├── BuildArcadeObject.d.ts │ │ ├── BuildArcadeObject.js │ │ └── Helpers.js │ ├── array │ │ ├── Add.js │ │ ├── AreContinuous.js │ │ ├── AreDifferent.js │ │ ├── AreTheSame.js │ │ ├── CSVToArray.js │ │ ├── Copy.js │ │ ├── Fill.js │ │ ├── GetRandom.js │ │ ├── GetRepeatedPattern.js │ │ ├── Range.js │ │ ├── Remove.js │ │ ├── ReshapeArray1DTo2D.js │ │ ├── Shuffle.js │ │ └── SpliceOne.js │ ├── arraybuffers │ │ ├── BooleanBuffer.js │ │ ├── ByteBuffer.js │ │ ├── FourBytesBuffer.js │ │ ├── Uint8ArrayReader.js │ │ └── Uint8ArrayWriter.js │ ├── audio │ │ ├── HasAudio.js │ │ ├── howlersoundmanager │ │ │ ├── HowlerSound.js │ │ │ └── HowlerSoundManager.js │ │ ├── ogg-opus-decoder │ │ │ ├── ogg-opus-decoder.js │ │ │ └── ogg-opus-decoder.min.js │ │ └── soundmanager │ │ │ ├── SoundManager.d.ts │ │ │ ├── SoundManager.js │ │ │ └── methods │ │ │ ├── BackgroundMusic2Methods.js │ │ │ ├── BackgroundMusicMethods.js │ │ │ ├── HasAudio.js │ │ │ ├── Methods.js │ │ │ ├── SoundEffects2Methods.js │ │ │ └── SoundEffectsMethods.js │ ├── bitmaptext │ │ ├── IsBitmapTextGameObject.js │ │ └── WrapText.js │ ├── blob-util │ │ ├── blob-util.js │ │ └── blob-util.min.js │ ├── bounds │ │ ├── BoundsToPath.js │ │ ├── BoundsToPolygon.js │ │ ├── DrawBounds.d.ts │ │ ├── DrawBounds.js │ │ ├── GetBounds.js │ │ ├── GetBoundsConfig.d.ts │ │ ├── GetBoundsConfig.js │ │ ├── GetBoundsOfGameObjects.d.ts │ │ ├── GetBoundsOfGameObjects.js │ │ └── IsPointInBounds.js │ ├── buff │ │ └── Buff.js │ ├── camera │ │ ├── GetCameraByName.d.ts │ │ ├── GetCameraByName.js │ │ ├── GetFirstRenderCamera.d.ts │ │ ├── GetFirstRenderCamera.js │ │ ├── KeepCameraCenterAfterRESIZE.d.ts │ │ ├── KeepCameraCenterAfterRESIZE.js │ │ ├── ZoomAt.d.ts │ │ └── ZoomAt.js │ ├── canvas │ │ ├── AddPolygonPath.js │ │ ├── AddRoundRectanglePath.js │ │ ├── DrawCircle.js │ │ ├── DrawGradientArc.js │ │ ├── DrawHSVPalette.js │ │ ├── DrawPolygon.js │ │ ├── DrawRectangle.js │ │ ├── DrawRoundRectangle.js │ │ ├── DrawText.js │ │ ├── GetStyle.js │ │ ├── GetTextSize.js │ │ └── StyleToRGB.js │ ├── color │ │ ├── CSSColorStringToInteger.js │ │ ├── ColorNameToInteger.js │ │ ├── ColorStringToInteger.js │ │ ├── GetHexColorString.js │ │ ├── GetRGB.js │ │ ├── GrayScale.js │ │ ├── MixColor.js │ │ └── SetColor.js │ ├── commandhub │ │ └── CommandHub.js │ ├── componentbase │ │ ├── ComponentBase.d.ts │ │ ├── ComponentBase.js │ │ ├── SceneUpdateTickTask.d.ts │ │ ├── SceneUpdateTickTask.js │ │ ├── TickTask.d.ts │ │ ├── TickTask.js │ │ ├── timerticktask │ │ │ ├── Timer.js │ │ │ ├── TimerTask.d.ts │ │ │ └── TimerTask.js │ │ └── tweentask │ │ │ ├── EaseValueTaskBase.d.ts │ │ │ ├── EaseValueTaskBase.js │ │ │ ├── TweenTask.d.ts │ │ │ └── TweenTask.js │ ├── console │ │ └── bbcodelog │ │ │ ├── BBCodeLog.d.ts │ │ │ ├── BBCodeLog.js │ │ │ ├── Log.js │ │ │ └── parser │ │ │ ├── OnParseBackgroundColorTag.js │ │ │ ├── OnParseBoldTag.js │ │ │ ├── OnParseColorTag.js │ │ │ ├── OnParseContent.js │ │ │ ├── OnParseFontFamilyTag.js │ │ │ ├── OnParseItalicTag.js │ │ │ ├── OnParseRoundBlockTag.js │ │ │ ├── OnParseShadowTag.js │ │ │ ├── OnParseSizeTag.js │ │ │ ├── OnParseUnderlineTag.js │ │ │ ├── ParseHandlers.js │ │ │ └── Parser.js │ ├── dat.gui │ │ └── dat.gui.min.js │ ├── data │ │ ├── DataManagerMethods.js │ │ ├── DataMethods.d.ts │ │ └── DataMethods.js │ ├── datetime │ │ └── GetTime.js │ ├── displaylist │ │ ├── ForEachGameObjectInDisplayList.d.ts │ │ └── ForEachGameObjectInDisplayList.js │ ├── ease │ │ ├── EaseValueMethods.js │ │ ├── EaseValueTask.d.ts │ │ └── EaseValueTask.js │ ├── elkjs │ │ ├── elk-api.d.ts │ │ ├── elk-api.js │ │ ├── elk-worker.d.ts │ │ ├── elk-worker.js │ │ ├── elk-worker.min.js │ │ ├── elk.bundled.d.ts │ │ ├── elk.bundled.js │ │ ├── main.d.ts │ │ └── main.js │ ├── eventemitter │ │ ├── EventEmitter.d.ts │ │ ├── EventEmitter.js │ │ ├── EventEmitterMethods.js │ │ ├── HasListener.js │ │ └── StandAloneEventEmitterMethods.js │ ├── function │ │ └── Override.js │ ├── gameobject │ │ ├── addevent │ │ │ ├── AddEvent.d.ts │ │ │ ├── AddEvent.js │ │ │ ├── AddSceneEvent.d.ts │ │ │ ├── AddSceneEvent.js │ │ │ ├── AddUpdateEvent.d.ts │ │ │ ├── AddUpdateEvent.js │ │ │ ├── BindEventWidthScene.d.ts │ │ │ ├── BindEventWidthScene.js │ │ │ ├── BindEventWithGameObject.d.ts │ │ │ └── BindEventWithGameObject.js │ │ ├── clickablewhenhidden │ │ │ └── ClickableWhenHidden.js │ │ ├── displaylist │ │ │ └── DisplayListMethods.js │ │ ├── gomanager │ │ │ ├── GOManager.d.ts │ │ │ ├── GOManager.js │ │ │ ├── bobbase │ │ │ │ ├── BobBase.d.ts │ │ │ │ ├── BobBase.js │ │ │ │ ├── CallMethods.js │ │ │ │ ├── DataMethods.js │ │ │ │ └── PropertyMethods.js │ │ │ └── methods │ │ │ │ ├── AddMethods.js │ │ │ │ ├── CallMethods.js │ │ │ │ ├── CameraMethods.js │ │ │ │ ├── DataMethods.js │ │ │ │ ├── DrawGameObjectsBounds.js │ │ │ │ ├── FadeMethods.js │ │ │ │ ├── GetMethods.js │ │ │ │ ├── IsSingleBob.js │ │ │ │ ├── Methods.js │ │ │ │ ├── PropertyMethods.js │ │ │ │ └── RemoveMethods.js │ │ ├── layermanager │ │ │ ├── LayerManager.d.ts │ │ │ ├── LayerManager.js │ │ │ └── methods │ │ │ │ ├── CameraMethods.js │ │ │ │ ├── DepthMethods.js │ │ │ │ ├── LayerMethods.js │ │ │ │ ├── Methods.js │ │ │ │ └── ScrollFactorMethods.js │ │ └── serialize │ │ │ ├── FromJSON.js │ │ │ └── ToJSON.js │ ├── geom │ │ ├── circle │ │ │ ├── Area.js │ │ │ ├── Circle.d.ts │ │ │ ├── Circle.js │ │ │ ├── Circumference.js │ │ │ ├── CircumferencePoint.js │ │ │ ├── Clone.js │ │ │ ├── Contains.js │ │ │ ├── ContainsPoint.js │ │ │ ├── ContainsRect.js │ │ │ ├── CopyFrom.js │ │ │ ├── Equals.js │ │ │ ├── GetBounds.js │ │ │ ├── GetPoint.js │ │ │ ├── GetPoints.js │ │ │ ├── Offset.js │ │ │ ├── OffsetPoint.js │ │ │ ├── Random.js │ │ │ └── index.js │ │ ├── const.js │ │ ├── ellipse │ │ │ ├── Area.js │ │ │ ├── Circumference.js │ │ │ ├── CircumferencePoint.js │ │ │ ├── Clone.js │ │ │ ├── Contains.js │ │ │ ├── ContainsPoint.js │ │ │ ├── ContainsRect.js │ │ │ ├── CopyFrom.js │ │ │ ├── Ellipse.d.ts │ │ │ ├── Ellipse.js │ │ │ ├── Equals.js │ │ │ ├── GetBounds.js │ │ │ ├── GetPoint.js │ │ │ ├── GetPoints.js │ │ │ ├── Offset.js │ │ │ ├── OffsetPoint.js │ │ │ ├── Random.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── intersects │ │ │ ├── CircleToCircle.js │ │ │ ├── CircleToRectangle.js │ │ │ ├── GetCircleToCircle.js │ │ │ ├── GetCircleToRectangle.js │ │ │ ├── GetLineToCircle.js │ │ │ ├── GetLineToRectangle.js │ │ │ ├── GetRectangleIntersection.js │ │ │ ├── GetRectangleToRectangle.js │ │ │ ├── GetRectangleToTriangle.js │ │ │ ├── GetTriangleToCircle.js │ │ │ ├── GetTriangleToLine.js │ │ │ ├── GetTriangleToTriangle.js │ │ │ ├── LineToCircle.js │ │ │ ├── LineToLine.js │ │ │ ├── LineToRectangle.js │ │ │ ├── LinesToCircle.js │ │ │ ├── PointToLine.js │ │ │ ├── PointToLineSegment.js │ │ │ ├── RectangleToRectangle.js │ │ │ ├── RectangleToTriangle.js │ │ │ ├── RectangleToValues.js │ │ │ ├── TriangleToCircle.js │ │ │ ├── TriangleToLine.js │ │ │ ├── TriangleToTriangle.js │ │ │ └── index.js │ │ ├── line │ │ │ ├── Angle.js │ │ │ ├── BresenhamPoints.js │ │ │ ├── CenterOn.js │ │ │ ├── Clone.js │ │ │ ├── CopyFrom.js │ │ │ ├── Equals.js │ │ │ ├── Extend.js │ │ │ ├── GetMidPoint.js │ │ │ ├── GetNearestPoint.js │ │ │ ├── GetNormal.js │ │ │ ├── GetPoint.js │ │ │ ├── GetPoints.js │ │ │ ├── GetShortestDistance.js │ │ │ ├── Height.js │ │ │ ├── Length.js │ │ │ ├── Line.d.ts │ │ │ ├── Line.js │ │ │ ├── NormalAngle.js │ │ │ ├── NormalX.js │ │ │ ├── NormalY.js │ │ │ ├── Offset.js │ │ │ ├── PerpSlope.js │ │ │ ├── Random.js │ │ │ ├── ReflectAngle.js │ │ │ ├── Rotate.js │ │ │ ├── RotateAroundPoint.js │ │ │ ├── RotateAroundXY.js │ │ │ ├── SetToAngle.js │ │ │ ├── Slope.js │ │ │ ├── Width.js │ │ │ └── index.js │ │ ├── point │ │ │ ├── Ceil.js │ │ │ ├── Clone.js │ │ │ ├── CopyFrom.js │ │ │ ├── Equals.js │ │ │ ├── Floor.js │ │ │ ├── GetCentroid.js │ │ │ ├── GetMagnitude.js │ │ │ ├── GetMagnitudeSq.js │ │ │ ├── GetRectangleFromPoints.js │ │ │ ├── Interpolate.js │ │ │ ├── Invert.js │ │ │ ├── Negative.js │ │ │ ├── Point.d.ts │ │ │ ├── Point.js │ │ │ ├── Project.js │ │ │ ├── ProjectUnit.js │ │ │ ├── SetMagnitude.js │ │ │ └── index.js │ │ ├── polygon │ │ │ ├── Clone.js │ │ │ ├── Contains.js │ │ │ ├── ContainsPoint.js │ │ │ ├── Earcut.js │ │ │ ├── GetAABB.js │ │ │ ├── GetNumberArray.js │ │ │ ├── GetPoints.js │ │ │ ├── Perimeter.js │ │ │ ├── Polygon.d.ts │ │ │ ├── Polygon.js │ │ │ ├── Reverse.js │ │ │ ├── Smooth.js │ │ │ └── index.js │ │ ├── rectangle │ │ │ ├── Area.js │ │ │ ├── Ceil.js │ │ │ ├── CeilAll.js │ │ │ ├── CenterOn.js │ │ │ ├── Clone.js │ │ │ ├── Contains.js │ │ │ ├── ContainsPoint.js │ │ │ ├── ContainsRect.js │ │ │ ├── CopyFrom.js │ │ │ ├── Decompose.js │ │ │ ├── Equals.js │ │ │ ├── FitInside.js │ │ │ ├── FitOutside.js │ │ │ ├── Floor.js │ │ │ ├── FloorAll.js │ │ │ ├── FromPoints.js │ │ │ ├── GetAspectRatio.js │ │ │ ├── GetCenter.js │ │ │ ├── GetPoint.js │ │ │ ├── GetPoints.js │ │ │ ├── GetSize.js │ │ │ ├── Inflate.js │ │ │ ├── Intersection.js │ │ │ ├── MarchingAnts.js │ │ │ ├── MergePoints.js │ │ │ ├── MergeRect.js │ │ │ ├── MergeXY.js │ │ │ ├── Offset.js │ │ │ ├── OffsetPoint.js │ │ │ ├── Overlaps.js │ │ │ ├── Perimeter.js │ │ │ ├── PerimeterPoint.js │ │ │ ├── Random.js │ │ │ ├── RandomOutside.js │ │ │ ├── Rectangle.d.ts │ │ │ ├── Rectangle.js │ │ │ ├── SameDimensions.js │ │ │ ├── Scale.js │ │ │ ├── Union.js │ │ │ └── index.js │ │ ├── triangle │ │ │ ├── Area.js │ │ │ ├── BuildEquilateral.js │ │ │ ├── BuildFromPolygon.js │ │ │ ├── BuildRight.js │ │ │ ├── CenterOn.js │ │ │ ├── Centroid.js │ │ │ ├── CircumCenter.js │ │ │ ├── CircumCircle.js │ │ │ ├── Clone.js │ │ │ ├── Contains.js │ │ │ ├── ContainsArray.js │ │ │ ├── ContainsPoint.js │ │ │ ├── CopyFrom.js │ │ │ ├── Decompose.js │ │ │ ├── Equals.js │ │ │ ├── GetPoint.js │ │ │ ├── GetPoints.js │ │ │ ├── InCenter.js │ │ │ ├── Offset.js │ │ │ ├── Perimeter.js │ │ │ ├── Random.js │ │ │ ├── Rotate.js │ │ │ ├── RotateAroundPoint.js │ │ │ ├── RotateAroundXY.js │ │ │ ├── Triangle.d.ts │ │ │ ├── Triangle.js │ │ │ └── index.js │ │ └── types.d.ts │ ├── grid │ │ ├── hexagon │ │ │ ├── CubeTransfer.js │ │ │ ├── DeltaTileXYToDirection.js │ │ │ ├── DirectionBetween.js │ │ │ ├── DirectionToDeltaTileXY.js │ │ │ ├── GetDistance.js │ │ │ ├── GetNeighborTileDirection.js │ │ │ ├── GetNeighborTileXY.js │ │ │ ├── GetOppositeDirection.js │ │ │ ├── GetParity.js │ │ │ ├── GetTileX.js │ │ │ ├── GetTileXY.js │ │ │ ├── GetTileXYAtDirection.js │ │ │ ├── GetTileY.js │ │ │ ├── GetWorldX.js │ │ │ ├── GetWorldXY.js │ │ │ ├── GetWorldY.js │ │ │ ├── Hexagon.js │ │ │ ├── Mirror.js │ │ │ ├── Offset.js │ │ │ ├── RingToTileXYArray.js │ │ │ ├── Rotate.js │ │ │ └── const.js │ │ └── quad │ │ │ ├── DeltaTileXYToDirection.js │ │ │ ├── DirectionBetween.js │ │ │ ├── DistanceToDeltaTileXY.js │ │ │ ├── GetDistance.js │ │ │ ├── GetNeighborTileDirection.js │ │ │ ├── GetNeighborTileXY.js │ │ │ ├── GetOppositeDirection.js │ │ │ ├── GetTileX.js │ │ │ ├── GetTileXY.js │ │ │ ├── GetTileXYAtDirection.js │ │ │ ├── GetTileY.js │ │ │ ├── GetWorldX.js │ │ │ ├── GetWorldXY.js │ │ │ ├── GetWorldY.js │ │ │ ├── Mirror.js │ │ │ ├── Offset.js │ │ │ ├── Quad.js │ │ │ ├── RingToTileXYArray.js │ │ │ └── Rotate.js │ ├── input │ │ ├── CursorKeys.d.ts │ │ ├── CursorKeys.js │ │ ├── DeviceOrientation.js │ │ ├── GetInBoundsPointer.d.ts │ │ ├── GetInBoundsPointer.js │ │ ├── GetPointerWorldXY.js │ │ ├── HitTest.js │ │ ├── InputCandidate.js │ │ ├── IsPointerInBounds.d.ts │ │ ├── IsPointerInBounds.js │ │ ├── IsPointerInHitArea.d.ts │ │ ├── IsPointerInHitArea.js │ │ ├── KeyMap.js │ │ ├── PointerTest.js │ │ ├── RequestDrag.d.ts │ │ ├── RequestDrag.js │ │ ├── SetCursorStyle.js │ │ ├── TiltAngle.js │ │ ├── VectorToCursorKeys.d.ts │ │ └── VectorToCursorKeys.js │ ├── js-interpreter │ │ └── js-interpreter.js │ ├── jsdiff │ │ ├── LICENSE │ │ ├── README.md │ │ ├── convert │ │ │ ├── dmp.js │ │ │ └── xml.js │ │ ├── diff │ │ │ ├── array.js │ │ │ ├── base.js │ │ │ ├── character.js │ │ │ ├── css.js │ │ │ ├── json.js │ │ │ ├── line.js │ │ │ ├── sentence.js │ │ │ └── word.js │ │ ├── index.js │ │ ├── patch │ │ │ ├── apply.js │ │ │ ├── create.js │ │ │ ├── merge.js │ │ │ └── parse.js │ │ ├── release-notes.md │ │ └── util │ │ │ ├── array.js │ │ │ ├── distance-iterator.js │ │ │ └── params.js │ ├── keyboard │ │ └── EventKeyCodeToP3Key.js │ ├── loader │ │ ├── BinaryToTextureCache.d.ts │ │ ├── BinaryToTextureCache.js │ │ ├── FileObjectToCache.js │ │ ├── GetProgress.d.ts │ │ ├── GetProgress.js │ │ ├── LastLoadTask.js │ │ ├── LoadBinaryAndImage.d.ts │ │ ├── LoadBinaryAndImage.js │ │ ├── LoadCompletePromise.js │ │ ├── LoadScript.js │ │ └── LoadScriptPromise.js │ ├── lokijs │ │ ├── SerializeMethods.js │ │ ├── loki-indexed-adapter.js │ │ └── lokijs.min.js │ ├── lzstring │ │ └── lz-string.min.js │ ├── managers │ │ ├── DestroyManagers.js │ │ ├── Extend.js │ │ ├── GameObjectManagerMethods.js │ │ ├── GameObjectMethods.js │ │ ├── GetTimeScale.js │ │ ├── InitManagers.js │ │ ├── Managers.d.ts │ │ ├── Managers.js │ │ ├── SetTimeScale.js │ │ └── waiteventmanager │ │ │ ├── Methods.js │ │ │ ├── WaitAny.js │ │ │ ├── WaitCameraMethods.js │ │ │ ├── WaitEventManager.d.ts │ │ │ ├── WaitEventManager.js │ │ │ ├── WaitGameObjectMethods.js │ │ │ ├── WaitInputMethods.js │ │ │ ├── WaitMusicMethods.js │ │ │ └── WaitTimeMethods.js │ ├── marked │ │ ├── LICENSE.md │ │ └── marked.min.js │ ├── mask │ │ ├── MaskToGameObject.js │ │ └── defaultmaskgraphics │ │ │ ├── DefaultMaskGraphics.js │ │ │ └── methods │ │ │ ├── Contains.js │ │ │ ├── DrawShape.js │ │ │ ├── GetGeom.js │ │ │ ├── Methods.js │ │ │ ├── Resize.js │ │ │ ├── SetOrigin.js │ │ │ └── SetPosition.js │ ├── math │ │ ├── Bernstein.js │ │ ├── Between.js │ │ ├── ByteArrayToUint32.js │ │ ├── CatmullRom.js │ │ ├── Clamp.js │ │ ├── DegToRad.js │ │ ├── Factorial.js │ │ ├── FromPercent.js │ │ ├── Linear.js │ │ ├── MapRange.js │ │ ├── RadToDeg.js │ │ ├── RotateAround.js │ │ ├── RoundUpPowerOf2.js │ │ ├── SmoothStep.js │ │ ├── SmootherStep.js │ │ ├── Sum.js │ │ ├── Uint32ToByteArray.js │ │ ├── Vector2.js │ │ ├── Wrap.js │ │ ├── Yoyo.js │ │ ├── angle │ │ │ ├── Between.js │ │ │ ├── LinearAngle.js │ │ │ ├── Normalize.js │ │ │ ├── ShortestBetween.js │ │ │ ├── Wrap.js │ │ │ └── angletodirections │ │ │ │ ├── AngleToDirections.js │ │ │ │ ├── Const.js │ │ │ │ └── RotationToDirection.js │ │ ├── color │ │ │ ├── Color32Methods.js │ │ │ └── InterpolateColor32.js │ │ ├── const.js │ │ ├── coordinate │ │ │ └── PolarToCartesian.js │ │ ├── distance │ │ │ ├── DistanceBetween.js │ │ │ └── DistanceBetweenPoints.js │ │ ├── fuzzy │ │ │ ├── Ceil.js │ │ │ ├── Equal.js │ │ │ ├── Floor.js │ │ │ ├── GreaterThan.js │ │ │ └── LessThan.js │ │ ├── interpolation │ │ │ ├── BezierInterpolation.js │ │ │ ├── CatmullRomInterpolation.js │ │ │ ├── CubicBezierInterpolation.js │ │ │ ├── LinearInterpolation.js │ │ │ ├── QuadraticBezierInterpolation.js │ │ │ ├── SmoothStepInterpolation.js │ │ │ └── SmootherStepInterpolation.js │ │ ├── noise │ │ │ ├── Perlin.d.ts │ │ │ ├── Perlin.js │ │ │ └── Simplex1.js │ │ └── triangulate │ │ │ ├── ShatterRectangleToTriangles.js │ │ │ ├── Triangulate.js │ │ │ └── delaunay.js │ ├── midi-parser │ │ └── midi-parser.js │ ├── minmaxbounds │ │ └── MinMaxBounds.js │ ├── movement │ │ ├── MoveTo.js │ │ ├── Movement.js │ │ └── SlowDown.js │ ├── mustache │ │ └── mustache.min.js │ ├── ninepatch │ │ ├── Methods.js │ │ ├── NinePatch.d.ts │ │ ├── NinePatch.js │ │ ├── texture │ │ │ ├── GetStretchMode.js │ │ │ ├── SetBaseTexture.js │ │ │ ├── SetGetFrameNameCallback.js │ │ │ ├── SetMaxFixedPartScale.js │ │ │ ├── SetPreserveRatio.js │ │ │ ├── SetStretchMode.js │ │ │ └── UpdateTexture.js │ │ └── utils │ │ │ └── IsEdge.js │ ├── object │ │ ├── AreValuesEqual.js │ │ ├── Class.js │ │ ├── Clear.js │ │ ├── Clone.js │ │ ├── CopyProperty.js │ │ ├── DeepClone.js │ │ ├── DeepMerge.js │ │ ├── ExtractByPrefix.js │ │ ├── ForEachLeafNode.js │ │ ├── GetAdvancedValue.js │ │ ├── GetFastValue.js │ │ ├── GetPartialData.js │ │ ├── GetValue.js │ │ ├── GetValueFromAliasKeys.js │ │ ├── HasAll.js │ │ ├── HasAny.js │ │ ├── HasProperty.js │ │ ├── HasValue.js │ │ ├── IndexOf.js │ │ ├── IsArray.js │ │ ├── IsEmpty.js │ │ ├── IsFunction.js │ │ ├── IsKeyValueEqual.js │ │ ├── IsPlainObject.js │ │ ├── IsPromise.js │ │ ├── Merge.js │ │ ├── MergeRight.js │ │ ├── NOOP.js │ │ ├── RemoveItem.js │ │ ├── RemoveKey.js │ │ └── SetValue.js │ ├── orientation │ │ └── GetOrientationMode.js │ ├── origin │ │ └── ChangeOrigin.js │ ├── padding │ │ └── PaddingMethods.js │ ├── position │ │ ├── GameObjectLocalXYToWorldXY.d.ts │ │ ├── GameObjectLocalXYToWorldXY.js │ │ ├── ScreenXYToWorldXY.js │ │ ├── WorldXYToGameObjectLocalXY.d.ts │ │ └── WorldXYToGameObjectLocalXY.js │ ├── progressbase │ │ └── ProgressBase.js │ ├── progressvalue │ │ └── ProgressValueMethods.js │ ├── promise │ │ ├── Delay.d.ts │ │ ├── Delay.js │ │ ├── DelaySceneTick.js │ │ ├── WaitEvent.d.ts │ │ └── WaitEvent.js │ ├── proxy │ │ ├── createproxycontext │ │ │ ├── CreateProxyContext.d.ts │ │ │ └── CreateProxyContext.js │ │ └── datamonitor │ │ │ ├── AddDataMonitor.d.ts │ │ │ ├── AddDataMonitor.js │ │ │ ├── AddMonitor.js │ │ │ ├── EmitEvents.js │ │ │ └── GetPropertyPath.js │ ├── renderer │ │ └── postfxpipeline │ │ │ ├── AddPostFxPipelineInstance.js │ │ │ ├── BasePostFxPipelinePlugin.js │ │ │ ├── GetPostFxPipelineInstance.js │ │ │ ├── RegisterPostPipeline.js │ │ │ └── RemovePostFxPipelineInstance.js │ ├── rendertexture │ │ ├── CreateDynamicTexture.js │ │ ├── FitToViewport.js │ │ ├── Snapshot.d.ts │ │ └── Snapshot.js │ ├── size │ │ ├── CanSetDisplaySize.js │ │ ├── FitTo.d.ts │ │ ├── FitTo.js │ │ ├── GetDisplaySize.js │ │ ├── HasResizeMethod.js │ │ ├── ResizeGameObject.js │ │ └── SetDisplaySize.js │ ├── speedmonitor │ │ └── SpeedMonitor.js │ ├── sprite │ │ └── spritemanager │ │ │ ├── SpriteBob.js │ │ │ ├── SpriteManager.d.ts │ │ │ ├── SpriteManager.js │ │ │ └── methods │ │ │ ├── AnimationMethods.js │ │ │ ├── GetCreateGameObjectCallback.js │ │ │ └── Methods.js │ ├── string │ │ ├── EscapeRegex.js │ │ ├── GetRandomWord.d.ts │ │ ├── GetRandomWord.js │ │ ├── GetTimeStamp.js │ │ ├── IsASCIIString.js │ │ ├── NumberToColorString.js │ │ ├── Split.js │ │ ├── StringToValues.js │ │ ├── TypeConvert.js │ │ ├── TypeConvert2.js │ │ └── UUID.js │ ├── struct │ │ ├── SetMethods.js │ │ ├── Stack.js │ │ ├── Tree.d.ts │ │ └── Tree.js │ ├── system │ │ ├── CheckP3Version.js │ │ ├── FilterDisplayGameObjects.js │ │ ├── GetCache.js │ │ ├── GetEventEmitter.js │ │ ├── GetGLTexture.js │ │ ├── GetGame.js │ │ ├── GetGameObjectByName.js │ │ ├── GetLayer.js │ │ ├── GetLoader.js │ │ ├── GetRootGameObject.js │ │ ├── GetSceneObject.js │ │ ├── GetSoundManager.js │ │ ├── GetTickDelta.js │ │ ├── GetViewport.d.ts │ │ ├── GetViewport.js │ │ ├── IsCameraObject.js │ │ ├── IsContainerGameObject.js │ │ ├── IsEventEmitter.js │ │ ├── IsFrameObject.js │ │ ├── IsGame.js │ │ ├── IsGameObject.js │ │ ├── IsLayerGameObject.js │ │ ├── IsSceneObject.js │ │ ├── IsSoundObject.js │ │ ├── IsTextureObject.js │ │ ├── LogMaxDelta.js │ │ ├── MaxDelta.js │ │ ├── OS.js │ │ └── SortGameObjectsByDepth.js │ ├── text │ │ ├── AppendText.js │ │ ├── FullFill.js │ │ ├── GetPlainText.js │ │ ├── GetString.js │ │ ├── GetSubString.js │ │ ├── GetTextObjectType.js │ │ ├── GetWrapText.js │ │ ├── IsTextGameObject.js │ │ ├── SetNoWrapText.js │ │ ├── SetWrapMode.js │ │ ├── TextHeightToLineCount.js │ │ ├── TextToLines.js │ │ ├── TextWrapByCharCallback.js │ │ ├── fontsizefit │ │ │ ├── FontSizeFit.d.ts │ │ │ └── FontSizeFit.js │ │ └── textmanager │ │ │ ├── TextBob.js │ │ │ ├── TextManager.js │ │ │ └── methods │ │ │ ├── Methods.js │ │ │ └── SetTextMethods.js │ ├── texture │ │ ├── CopyCanvasToTexture.js │ │ ├── CopyFrameToCanvas.js │ │ ├── CreateCircleTexture.js │ │ ├── CreateDashedTexture.js │ │ ├── CreatePaddingTexture.js │ │ ├── CreatePolygonTexture.js │ │ ├── CreateRectangleTexture.js │ │ ├── CreateRoundRectangleTexture.js │ │ ├── CreateTexture.js │ │ ├── CreateTriangleTexture.js │ │ ├── DrawFrameToCanvas.js │ │ ├── DynamicTextureClearRectangle.js │ │ ├── GetWhiteFrame.js │ │ ├── HasTexture.js │ │ ├── LocalXYToColor.js │ │ ├── ToBase64.js │ │ ├── gridcut │ │ │ ├── GenerateFrames.js │ │ │ └── GetFrameNameCallback.js │ │ └── imagemanager │ │ │ ├── AddImage.js │ │ │ ├── DrawImage.js │ │ │ └── ImageManager.js │ ├── time │ │ ├── GetPeriodMS.js │ │ ├── NextTick.js │ │ ├── PostStepDelayCall.js │ │ ├── PostUpdateDelayCall.js │ │ ├── PreUpdateDelayCall.js │ │ ├── UpdateDelayCall.js │ │ └── cooldown │ │ │ └── Cooldown.js │ ├── tween │ │ └── AutoRemoveTween.js │ ├── types │ │ └── CanvasGameObjectBase.d.ts │ ├── waitevent │ │ ├── WaitEvent.d.ts │ │ ├── WaitEvent.js │ │ └── const.js │ ├── webfontloader │ │ └── webfontloader.js │ └── yaml │ │ └── ParseYaml.js ├── vectortocursorkeys.js ├── vectortocursorkeys.ts ├── video-plugin.js ├── video.js ├── viewportcoordinate-plugin.d.ts ├── viewportcoordinate-plugin.js ├── viewportcoordinate.d.ts ├── viewportcoordinate.js ├── virtualjoystick-plugin.d.ts ├── virtualjoystick-plugin.js ├── virtualjoystick.d.ts ├── virtualjoystick.js ├── waitevents-plugin.d.ts ├── waitevents-plugin.js ├── waitevents.d.ts ├── waitevents.js ├── warppipeline-plugin.d.ts ├── warppipeline-plugin.js ├── warppipeline.d.ts ├── warppipeline.js ├── webfontloader-plugin.d.ts ├── webfontloader-plugin.js ├── webfontloader.d.ts ├── webfontloader.js ├── xor-plugin.d.ts ├── xor-plugin.js ├── xor.d.ts ├── xor.js ├── yamleventsheets-plugin.d.ts ├── yamleventsheets-plugin.js ├── yamleventsheets.d.ts ├── yamleventsheets.js ├── ymlachievements-plugin.d.ts ├── ymlachievements-plugin.js ├── ymlachievements.d.ts ├── ymlachievements.js ├── ymlconditionstable-plugin.d.ts ├── ymlconditionstable-plugin.js ├── ymlconditionstable.d.ts ├── ymlconditionstable.js ├── youtubeplayer-plugin.d.ts ├── youtubeplayer-plugin.js ├── youtubeplayer.d.ts └── youtubeplayer.js ├── projects ├── mdscenario │ ├── auto-skip.bat │ ├── auto-skip.js │ ├── main.bat │ ├── main.js │ ├── stop.bat │ ├── stop.js │ └── styles │ │ ├── ChoiceStyle.js │ │ ├── Colors.js │ │ ├── NameInputStyle.js │ │ ├── TextBoxStyle.js │ │ └── TitleStyle.js ├── ui-dragdrop │ ├── README.md │ ├── app │ │ ├── index.html │ │ └── js │ │ │ ├── app.bundle.js │ │ │ ├── app.bundle.js.LICENSE.txt │ │ │ ├── vendor.bundle.js │ │ │ └── vendor.bundle.js.LICENSE.txt │ ├── build-html.bat │ ├── lib │ │ ├── AddDragDropColumnPanelBehavior.js │ │ ├── AddDragDropItemBehavior.js │ │ ├── Const.js │ │ ├── CreateColumnPanel.js │ │ ├── CreateColumnPanelsBox.js │ │ ├── CreateItem.js │ │ ├── CreateItemsBox.js │ │ ├── CreateScrollablePanel.js │ │ └── GetNeighborObjects.js │ ├── main.bat │ ├── main.js │ ├── test-columnpanelsbox.bat │ └── test-columnpanelsbox.js └── yamlscenario │ ├── auto-skip.bat │ ├── auto-skip.js │ ├── main.bat │ ├── main.js │ ├── monitor.bat │ ├── monitor.js │ └── styles │ ├── ChoiceStyle.js │ ├── Colors.js │ ├── NameInputStyle.js │ ├── TextBoxStyle.js │ └── TitleStyle.js ├── publish.bat ├── rollup.config.mjs ├── scripts └── indexgen │ ├── GenerateIndex.js │ ├── RenderIndexFile.js │ └── RetrieveImports.js ├── standalone-docs ├── build.bat ├── docs │ ├── firebase-broadcast.md │ ├── firebase-files.md │ ├── firebase-idalias.md │ ├── firebase-itemtable.md │ ├── firebase-leaderboard.md │ ├── firebase-onlineuserlist.md │ ├── firebase-overview.md │ ├── firebase-singleroom.md │ ├── index.md │ └── js │ │ ├── mermaid │ │ └── mermaid.min.js │ │ └── umlconvert.js ├── mkdocs.yml ├── serve.bat └── site │ ├── 404.html │ ├── assets │ ├── fonts │ │ ├── font-awesome.css │ │ ├── material-icons.css │ │ └── specimen │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome.woff │ │ │ ├── FontAwesome.woff2 │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ ├── MaterialIcons-Regular.woff │ │ │ └── MaterialIcons-Regular.woff2 │ ├── images │ │ ├── favicon.png │ │ └── icons │ │ │ ├── bitbucket.1b09e088.svg │ │ │ ├── github.f0b8504a.svg │ │ │ └── gitlab.6dd19c00.svg │ ├── javascripts │ │ ├── application.c648116f.js │ │ ├── lunr │ │ │ ├── lunr.da.js │ │ │ ├── lunr.de.js │ │ │ ├── lunr.du.js │ │ │ ├── lunr.es.js │ │ │ ├── lunr.fi.js │ │ │ ├── lunr.fr.js │ │ │ ├── lunr.hu.js │ │ │ ├── lunr.it.js │ │ │ ├── lunr.ja.js │ │ │ ├── lunr.jp.js │ │ │ ├── lunr.multi.js │ │ │ ├── lunr.nl.js │ │ │ ├── lunr.no.js │ │ │ ├── lunr.pt.js │ │ │ ├── lunr.ro.js │ │ │ ├── lunr.ru.js │ │ │ ├── lunr.stemmer.support.js │ │ │ ├── lunr.sv.js │ │ │ ├── lunr.th.js │ │ │ ├── lunr.tr.js │ │ │ ├── tinyseg.js │ │ │ └── wordcut.js │ │ └── modernizr.74668098.js │ └── stylesheets │ │ ├── application-palette.a8b3c06d.css │ │ └── application.30686662.css │ ├── firebase-broadcast │ └── index.html │ ├── firebase-files │ └── index.html │ ├── firebase-idalias │ └── index.html │ ├── firebase-itemtable │ └── index.html │ ├── firebase-leaderboard │ └── index.html │ ├── firebase-onlineuserlist │ └── index.html │ ├── firebase-overview │ └── index.html │ ├── firebase-singleroom │ └── index.html │ ├── index.html │ ├── js │ ├── mermaid │ │ └── mermaid.min.js │ └── umlconvert.js │ ├── search │ └── search_index.json │ ├── sitemap.xml │ └── sitemap.xml.gz ├── templates ├── bejeweled │ ├── Bejeweled.d.ts │ ├── Bejeweled.js │ ├── actions │ │ ├── ClickChess.js │ │ ├── EliminateChess.js │ │ ├── FallingAllChess.js │ │ ├── PlaceChess.js │ │ ├── SelectChess.js │ │ └── SwapChess.js │ ├── board │ │ ├── BoardWrapper.js │ │ ├── chess │ │ │ ├── CreateChess.js │ │ │ └── RandomSymobl.js │ │ ├── match │ │ │ ├── AnyMatch.js │ │ │ ├── GetAllMatch.js │ │ │ ├── GetMatchN.js │ │ │ └── RefreshSymbolCache.js │ │ └── methods │ │ │ ├── ActivateAreaMethods.js │ │ │ ├── BreakMatch3.js │ │ │ ├── ChessSymbolMethods.js │ │ │ ├── Clear.js │ │ │ ├── DumpSymbols.js │ │ │ ├── FillActivateArea.js │ │ │ ├── FillAllRows.js │ │ │ ├── FillPrepareRows.js │ │ │ ├── GetBoardBounds.js │ │ │ ├── GetChessMethods.js │ │ │ ├── Init.js │ │ │ ├── InputTest.js │ │ │ ├── MaskMethods.js │ │ │ ├── MatchMethods.js │ │ │ ├── Methods.js │ │ │ └── Reset.js │ ├── input │ │ └── Input.js │ ├── methods │ │ ├── BoardMethods.js │ │ ├── CommandMethods.js │ │ ├── InputMethods.js │ │ ├── SetMethods.js │ │ └── WaitEventMethods.js │ └── states │ │ ├── BaseState.js │ │ ├── MainState.js │ │ └── MatchState.js ├── bejeweled2 │ ├── Bejeweled.d.ts │ ├── Bejeweled.js │ ├── actions │ │ ├── Eliminate.js │ │ ├── Move.js │ │ ├── Pick.js │ │ ├── Place.js │ │ ├── Select.js │ │ └── Swap.js │ ├── board │ │ ├── BoardWrapper.js │ │ ├── chess │ │ │ ├── CreateChess.js │ │ │ └── RandomSymobl.js │ │ ├── match │ │ │ ├── AnyMatch.js │ │ │ ├── GetAllMatch.js │ │ │ ├── GetMatchN.js │ │ │ └── RefreshSymbolCache.js │ │ └── methods │ │ │ ├── ActivateAreaMethods.js │ │ │ ├── BreakMatch3.js │ │ │ ├── Clear.js │ │ │ ├── DumpSymbols.js │ │ │ ├── FillActivateArea.js │ │ │ ├── FillPrepareRows.js │ │ │ ├── GetChessMethods.js │ │ │ ├── Init.js │ │ │ ├── MaskMethods.js │ │ │ ├── Methods.js │ │ │ ├── PreTest.js │ │ │ └── Reset.js │ ├── const.js │ ├── input │ │ └── Input.js │ ├── methods │ │ ├── BoardMethods.js │ │ ├── InputMethods.js │ │ └── WaitEventMethods.js │ └── states │ │ ├── BaseState.js │ │ ├── MainState.js │ │ └── MatchState.js ├── dialog-quest │ ├── DataMethods.js │ ├── DialogQuest.d.ts │ ├── DialogQuest.js │ └── QuestMethods.js ├── gameobjectshell │ ├── ObjectFactory.js │ ├── cameracontroller │ │ ├── CameraController.d.ts │ │ ├── CameraController.js │ │ ├── Factory.d.ts │ │ └── Factory.js │ ├── controlpoints │ │ ├── ControlPoints.d.ts │ │ ├── ControlPoints.js │ │ ├── DefaultConfig.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── methods │ │ │ ├── Const.js │ │ │ ├── Layout.js │ │ │ ├── Methods.js │ │ │ ├── MonitorTargetMethods.js │ │ │ ├── SetBindingTarget.js │ │ │ ├── boundsrectangle │ │ │ ├── AddBoundsRectangle.js │ │ │ └── UpdateBoundRectangle.js │ │ │ └── controlpoints │ │ │ ├── AddControlPoints.js │ │ │ ├── AddDragMoveBehavior.js │ │ │ ├── AddDragResizeBehavior.js │ │ │ ├── AddDragRotationBehavior.js │ │ │ └── UpdateControlPoints.js │ ├── fullwindowrectangle │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── FullWindowRectangle.d.ts │ │ └── FullWindowRectangle.js │ ├── gameobjectpanel │ │ ├── DefaultConfig.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── GameObjectPanel.d.ts │ │ ├── GameObjectPanel.js │ │ └── methods │ │ │ ├── AddProperties.js │ │ │ └── MergeConfig.js │ ├── gameobjectshell-components.d.ts │ ├── gameobjectshell-components.js │ ├── gameobjectshell-plugin.d.ts │ ├── gameobjectshell-plugin.js │ ├── layermanager │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── LayerManager.d.ts │ │ └── LayerManager.js │ └── shell │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Shell.d.ts │ │ ├── Shell.js │ │ └── methods │ │ ├── BindingTargetMethods.js │ │ ├── CameraMethods.js │ │ ├── CreateBackground.js │ │ ├── CreateCameraController.js │ │ ├── CreateControlPoints.js │ │ ├── CreateLayerManager.js │ │ ├── CreateMainPanel.js │ │ ├── LayerManagerMethods.js │ │ ├── Layers.js │ │ ├── Methods.js │ │ └── SelectGameObjectMethods.js ├── scenario │ ├── ScenarioBase.js │ ├── ScenarioPluginBase.js │ ├── commandexecutor │ │ ├── CreateCommandExecutor.js │ │ ├── animsprite │ │ │ ├── GenerateDefaultCreateGameObjectCallback.js │ │ │ └── RegisterAnimSpriteType.js │ │ ├── background │ │ │ ├── GenerateDefaultCreateGameObjectCallback.js │ │ │ └── RegisterBackgroundType.js │ │ ├── choicedialog │ │ │ ├── Choice.js │ │ │ ├── GenerateDefaultCreateGameObjectCallback.js │ │ │ └── RegisterChoiceDialogType.js │ │ ├── nameinputdialog │ │ │ ├── GenerateDefaultCreateGameObjectCallback.js │ │ │ ├── NameInput.js │ │ │ └── RegisterChoiceDialogType.js │ │ ├── sprite │ │ │ ├── Cross.js │ │ │ ├── Focus.js │ │ │ ├── GenerateDefaultCreateGameObjectCallback.js │ │ │ ├── RegisterSpriteType.js │ │ │ ├── Say.js │ │ │ └── Unfocus.js │ │ ├── textbox │ │ │ ├── GenerateDefaultCreateGameObjectCallback.js │ │ │ ├── RegisterTextboxType.js │ │ │ ├── Typing.js │ │ │ └── Typing.md │ │ ├── title │ │ │ ├── GenerateDefaultCreateGameObjectCallback.js │ │ │ ├── PopUp.js │ │ │ ├── RegisterTitleType.js │ │ │ └── SetText.js │ │ └── utils │ │ │ ├── Cross.js │ │ │ └── Shake.js │ ├── const │ │ ├── GameObjects.js │ │ └── Layers.js │ ├── defaultvariables │ │ ├── DefaultVariables.js │ │ └── RegisterDefaultVariables.js │ ├── expressions │ │ ├── RegisterExpressions.js │ │ ├── RegisterRandomExpression.js │ │ └── RegisterRandomIntExpression.js │ ├── jsonscenario │ │ ├── JSONScenario.js │ │ └── jsonscenario-plugin.js │ ├── mdscenario │ │ ├── MDScenario.js │ │ ├── mdscenario-plugin.js │ │ └── readme │ │ │ ├── background-commands.md │ │ │ ├── choice-dialog-commands.md │ │ │ ├── common-commands.md │ │ │ ├── default-variables.md │ │ │ ├── nameinput-dialog-commands.md │ │ │ ├── sprite-commands.md │ │ │ ├── textbox-commands.md │ │ │ └── title-commands.md │ ├── monitor │ │ ├── CreateMonitorPanel.js │ │ └── TweakerStyle.js │ └── yamlscenario │ │ ├── YAMLScenario.js │ │ ├── readme │ │ ├── background-commands.md │ │ ├── choice-dialog-commands.md │ │ ├── common-commands.md │ │ ├── default-variables.md │ │ ├── nameinput-dialog-commands.md │ │ ├── sprite-commands.md │ │ ├── textbox-commands.md │ │ └── title-commands.md │ │ └── yamlscenario-plugin.js ├── spinner │ ├── ObjectFactory.js │ ├── aio │ │ ├── AIO.d.ts │ │ ├── AIO.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── UpdateShapeMethods.js │ ├── arrow │ │ ├── Arrow.js │ │ ├── Arrow.ts │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── UpdateShapeMethods.js │ ├── audio │ │ ├── Audio.d.ts │ │ ├── Audio.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── UpdateShapeMethods.js │ ├── ball │ │ ├── Ball.d.ts │ │ ├── Ball.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── UpdateShapeMethods.js │ ├── bars │ │ ├── Bars.d.ts │ │ ├── Bars.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── UpdateShapeMethods.js │ ├── base │ │ ├── Base.d.ts │ │ ├── Base.js │ │ └── EaseValueMethods.js │ ├── box │ │ ├── Box.d.ts │ │ ├── Box.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── UpdateShapeMethods.js │ ├── clock │ │ ├── Clock.d.ts │ │ ├── Clock.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── UpdateShapeMethods.js │ ├── cube │ │ ├── Cube.d.ts │ │ ├── Cube.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── UpdateShapeMethods.js │ ├── custom │ │ ├── Custom.d.ts │ │ ├── Custom.js │ │ ├── Factory.d.ts │ │ └── Factory.js │ ├── dots │ │ ├── Dots.d.ts │ │ ├── Dots.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── UpdateShapeMethods.js │ ├── facebook │ │ ├── Facebook.d.ts │ │ ├── Facebook.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── UpdateShapeMethods.js │ ├── grid │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Grid.d.ts │ │ ├── Grid.js │ │ └── UpdateShapeMethods.js │ ├── hearts │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Hearts.d.ts │ │ ├── Hearts.js │ │ └── UpdateShapeMethods.js │ ├── ios │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Ios.js │ │ ├── Ios.ts │ │ └── UpdateShapeMethods.js │ ├── orbit │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Orbit.d.ts │ │ ├── Orbit.js │ │ └── UpdateShapeMethods.js │ ├── oval │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Oval.d.ts │ │ ├── Oval.js │ │ └── UpdateShapeMethods.js │ ├── pie │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Pie.d.ts │ │ ├── Pie.js │ │ └── UpdateShapeMethods.js │ ├── puff │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Puff.d.ts │ │ ├── Puff.js │ │ └── UpdateShapeMethods.js │ ├── radio │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Radio.d.ts │ │ ├── Radio.js │ │ └── UpdateShapeMethods.js │ ├── rings │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Rings.d.ts │ │ ├── Rings.js │ │ └── UpdateShapeMethods.js │ ├── spinner-components.d.ts │ ├── spinner-components.js │ ├── spinner-plugin.d.ts │ ├── spinner-plugin.js │ ├── spinner │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ ├── Spinner.d.ts │ │ ├── Spinner.js │ │ └── UpdateShapeMethods.js │ └── utils │ │ └── Yoyo.js ├── transitionimagepack │ ├── Creator.d.ts │ ├── Creator.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── TransitionImagePack.d.ts │ ├── TransitionImagePack.js │ ├── transitionimagepack-plugin.d.ts │ ├── transitionimagepack-plugin.js │ └── transitionmodes │ │ ├── AddBlindsModes.js │ │ ├── AddCirclesMode.js │ │ ├── AddCurtainMode.js │ │ ├── AddDiamondsMode.js │ │ ├── AddDissolveMode.js │ │ ├── AddFadeModes.js │ │ ├── AddIrisModes.js │ │ ├── AddPieModes.js │ │ ├── AddPixellateMode.js │ │ ├── AddPushModes.js │ │ ├── AddRevealModes.js │ │ ├── AddSlideAwayModes.js │ │ ├── AddSlideModes.js │ │ ├── AddSquaresModes.js │ │ ├── AddWipeModes.js │ │ ├── AddZoomModes.js │ │ ├── Const.js │ │ ├── Modes.js │ │ └── Yoyo.js └── ui │ ├── ObjectFactory.js │ ├── aiospinner │ ├── AIOSpinner.d.ts │ ├── AIOSpinner.js │ ├── Factory.d.ts │ └── Factory.js │ ├── alphamaskimage │ ├── AlphaMaskImage.d.ts │ ├── AlphaMaskImage.js │ ├── Factory.d.ts │ └── Factory.js │ ├── anchor │ ├── Anchor.d.ts │ ├── Anchor.js │ ├── Factory.d.ts │ └── Factory.js │ ├── badgelabel │ ├── BadgeLabel.d.ts │ ├── BadgeLabel.js │ ├── Factory.d.ts │ └── Factory.js │ ├── basesizer │ ├── AddChildMethods.js │ ├── AddChildrenMap.js │ ├── BaseSizer.d.ts │ ├── BaseSizer.js │ ├── BindEventMethods.js │ ├── BroadcastEvent.js │ ├── ClickMethods.js │ ├── ClickOutsideMethods.js │ ├── DelayCallMethods.js │ ├── DrawBounds.js │ ├── EaseDataMethods.js │ ├── EaseMoveMethods.js │ ├── FadeMethods.js │ ├── GetAllChildrenSizers.js │ ├── GetChildHeight.js │ ├── GetChildIndex.js │ ├── GetChildWidth.js │ ├── GetChildrenHeight.js │ ├── GetChildrenSizers.js │ ├── GetChildrenWidth.js │ ├── GetElement.js │ ├── GetExpandedChildHeight.js │ ├── GetExpandedChildWidth.js │ ├── GetParentSizerMethods.js │ ├── GetShownChildrenMethods.js │ ├── GetSizerConfig.js │ ├── HasHeightWrap.js │ ├── HasWidthWrap.js │ ├── HideMethods.js │ ├── HoverMethods.js │ ├── IsInTouching.js │ ├── Layout.js │ ├── LayoutBackgrounds.js │ ├── LayoutChildren.js │ ├── Methods.js │ ├── ModalMethods.js │ ├── PaddingMethods.js │ ├── PointToChild.js │ ├── PostLayout.js │ ├── PreLayout.js │ ├── PushIntoBounds.js │ ├── RemoveChildMethods.js │ ├── RemoveChildrenMap.js │ ├── ResolveChildrenHeight.js │ ├── ResolveChildrenWidth.js │ ├── ResolveHeight.js │ ├── ResolveWidth.js │ ├── RunHeightWrap.js │ ├── RunLayout.js │ ├── RunWidthWrap.js │ ├── ScaleMethods.js │ ├── SetAnchor.js │ ├── SetChildrenInteractive.js │ ├── SetDraggable.js │ ├── ShakeMethods.js │ ├── TouchingMethods.js │ ├── layout.md │ └── utils │ │ ├── AddChild.js │ │ ├── CheckSize.js │ │ ├── ClearChildren.js │ │ ├── LayoutChild.js │ │ ├── PreLayoutChild.js │ │ ├── RemoveChild.js │ │ └── SortChildrenMethods.js │ ├── bbcodetext │ ├── BBCodeText.d.ts │ ├── BBCodeText.js │ ├── Factory.d.ts │ └── Factory.js │ ├── buttons │ ├── AddChildMethods.js │ ├── Buttons.d.ts │ ├── Buttons.js │ ├── Factory.d.ts │ ├── Factory.js │ └── RemoveChildMethods.js │ ├── canvas │ ├── Canvas.d.ts │ ├── Canvas.js │ ├── Factory.d.ts │ └── Factory.js │ ├── canvasinput │ ├── CanvasInput.d.ts │ ├── CanvasInput.js │ ├── Factory.d.ts │ └── Factory.js │ ├── chart │ ├── Chart.d.ts │ ├── Chart.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── GetChartData.js │ ├── GetChartDataset.js │ ├── SetChart.js │ ├── SetChartData.js │ └── UpdateChart.js │ ├── checkbox │ ├── Checkbox.d.ts │ ├── Checkbox.js │ ├── Factory.d.ts │ └── Factory.js │ ├── circlemaskimage │ ├── CircleMaskImage.d.ts │ ├── CircleMaskImage.js │ ├── Factory.d.ts │ └── Factory.js │ ├── circularprogress │ ├── CircularProgress.d.ts │ ├── CircularProgress.js │ ├── Factory.d.ts │ └── Factory.js │ ├── circularprogresscanvas │ ├── CircularProgressCanvas.d.ts │ ├── CircularProgressCanvas.js │ ├── Factory.d.ts │ └── Factory.js │ ├── click │ ├── Click.d.ts │ ├── Click.js │ ├── Factory.d.ts │ └── Factory.js │ ├── clickoutside │ ├── ClickOutside.d.ts │ ├── ClickOutside.js │ ├── Factory.d.ts │ └── Factory.js │ ├── colorinput │ ├── colorcomponents │ │ ├── ColorComponents.d.ts │ │ ├── ColorComponents.js │ │ ├── Factory.d.ts │ │ └── Factory.js │ ├── colorinput │ │ ├── ColorInput.d.ts │ │ ├── ColorInput.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── methods │ │ │ ├── ColorPicker.js │ │ │ ├── ConfigurationMethods.js │ │ │ ├── CreateColorPicker.js │ │ │ ├── Methods.js │ │ │ └── OpenColorPicker.js │ ├── colorinputbase │ │ ├── ColorInputBase.d.ts │ │ ├── ColorInputBase.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── methods │ │ │ ├── CreateSwatch.js │ │ │ └── SetSwatchColor.js │ └── colorpicker │ │ ├── ColorPicker.d.ts │ │ ├── ColorPicker.js │ │ ├── Factory.d.ts │ │ ├── Factory.js │ │ └── methods │ │ ├── HPalette.js │ │ ├── HPaletteCanvas.js │ │ ├── SVPalette.js │ │ ├── SVPaletteCanvas.js │ │ └── Transform.js │ ├── confirmactionbutton │ ├── ConfirmActionButton.d.ts │ ├── ConfirmActionButton.js │ ├── Factory.d.ts │ └── Factory.js │ ├── confirmdialog │ ├── ConfirmAction.d.ts │ ├── ConfirmAction.js │ ├── ConfirmDialog.d.ts │ ├── ConfirmDialog.js │ ├── Factory.d.ts │ ├── Factory.js │ └── methods │ │ ├── CreateContent.js │ │ ├── Methods.js │ │ ├── Modal.js │ │ ├── ResetDisplayContent.js │ │ └── SetButtonIndexMethods.js │ ├── container │ ├── Container.d.ts │ ├── Container.js │ ├── Factory.d.ts │ └── Factory.js │ ├── cover │ ├── Cover.d.ts │ ├── Cover.js │ ├── Factory.d.ts │ └── Factory.js │ ├── customprogress │ ├── CustomProgress.d.ts │ ├── CustomProgress.js │ ├── Factory.d.ts │ └── Factory.js │ ├── customshapes │ ├── CustomShapes.d.ts │ ├── CustomShapes.js │ ├── Factory.d.ts │ └── Factory.js │ ├── dialog │ ├── Dialog.d.ts │ ├── Dialog.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── methods │ │ ├── ButtonMethods.js │ │ ├── Methods.js │ │ └── ModalMethods.js │ └── utils │ │ └── RegisterSimpleLabelButtonEvents.js │ ├── drag │ ├── Drag.d.ts │ ├── Drag.js │ ├── Factory.d.ts │ └── Factory.js │ ├── dropdown │ └── DropDown.js │ ├── dropdownlist │ ├── DropDownList.d.ts │ ├── DropDownList.js │ ├── Factory.d.ts │ ├── Factory.js │ └── methods │ │ ├── EmitButtonClick.js │ │ ├── EmitButtonOver.js │ │ ├── FocusButtonMethods.js │ │ ├── Methods.js │ │ └── listpanel │ │ ├── CloseListPanel.js │ │ ├── ConfigurationMethods.js │ │ ├── CreateListPanel.js │ │ ├── OpenListPanel.js │ │ └── ToggleListPanel.js │ ├── dynamictext │ ├── DynamicText.d.ts │ ├── DynamicText.js │ ├── Factory.d.ts │ └── Factory.js │ ├── easemove │ ├── EaseMove.js │ └── EaseMove.ts │ ├── expbar │ ├── ExpBar.d.ts │ ├── ExpBar.js │ ├── Factory.d.ts │ ├── Factory.js │ └── methods │ │ ├── ExpMethods.js │ │ └── OnLevelUp.js │ ├── fade │ ├── Fade.js │ └── Fade.ts │ ├── filechooser │ ├── Factory.d.ts │ ├── Factory.js │ ├── FileChooser.d.ts │ └── FileChooser.js │ ├── filedropzone │ ├── Factory.d.ts │ ├── Factory.js │ ├── FileDropZone.d.ts │ └── FileDropZone.js │ ├── fileselectorbutton │ ├── Factory.d.ts │ ├── Factory.js │ ├── FileChooserMethods.js │ ├── FileSelectorButton.d.ts │ └── FileSelectorButton.js │ ├── fixwidthbuttons │ ├── AddChildMethods.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── FixWidthButtons.d.ts │ ├── FixWidthButtons.js │ └── RemoveChildMethods.js │ ├── fixwidthsizer │ ├── AddChildMethods.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── FixWidthSizer.d.ts │ ├── FixWidthSizer.js │ ├── GetChildrenHeight.js │ ├── GetChildrenSizers.js │ ├── GetChildrenWidth.js │ ├── GetExpandedChildHeight.js │ ├── GetExpandedChildWidth.js │ ├── GetMaxChildHeight.js │ ├── GetMaxChildWidth.js │ ├── GetNearestChildIndex.js │ ├── HasHeightWrap.js │ ├── HasWidthWrap.js │ ├── LayoutChildren.js │ ├── Methods.js │ ├── PreLayout.js │ ├── RemoveChildMethods.js │ ├── RunChildrenWrap.js │ ├── RunHeightWrap.js │ └── RunWidthWrap.js │ ├── flip │ ├── Factory.d.ts │ ├── Factory.js │ ├── Flip.d.ts │ └── Flip.js │ ├── folder │ ├── Factory.d.ts │ ├── Factory.js │ ├── Folder.d.ts │ ├── Folder.js │ └── methods │ │ ├── ChildTransition.js │ │ ├── ConfigurationMethods.js │ │ └── ExpandMethods.js │ ├── fullscreenbutton │ ├── Factory.d.ts │ ├── Factory.js │ ├── FullscreenButton.d.ts │ └── FullscreenButton.js │ ├── fullwindowrectangle │ ├── Factory.d.ts │ ├── Factory.js │ ├── FullWindowRectangle.d.ts │ └── FullWindowRectangle.js │ ├── fullwindowzone │ ├── Factory.d.ts │ ├── Factory.js │ ├── FullWindowZone.d.ts │ └── FullWindowZone.js │ ├── gridbuttons │ ├── AddChildMethods.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── GridButtons.d.ts │ ├── GridButtons.js │ └── RemoveChildMethods.js │ ├── gridsizer │ ├── AddChildMethods.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── GetChildrenHeight.js │ ├── GetChildrenSizers.js │ ├── GetChildrenWidth.js │ ├── GetExpandedChildHeight.js │ ├── GetExpandedChildWidth.js │ ├── GetTotalColumnProportions.js │ ├── GetTotalRowProportions.js │ ├── GridSizer.d.ts │ ├── GridSizer.js │ ├── InsertEmptyColumn.js │ ├── InsertEmptyRow.js │ ├── LayoutChildren.js │ ├── Methods.js │ ├── PreLayout.js │ ├── RemoveChildMethods.js │ ├── ResetGrid.js │ ├── ResolveChildrenHeight.js │ ├── ResolveChildrenWidth.js │ ├── ResolveHeight.js │ ├── ResolveWidth.js │ ├── RunHeightWrap.js │ ├── RunWidthWrap.js │ └── SetSpaceMethods.js │ ├── gridtable │ ├── Factory.d.ts │ ├── Factory.js │ ├── GridTable.d.ts │ ├── GridTable.js │ ├── InjectProperties.js │ ├── ScrollMethods.js │ ├── SetItems.js │ ├── TableOnCellVisible.js │ └── input │ │ ├── ClickCell.js │ │ ├── EmitCellEvent.js │ │ ├── OverCell.js │ │ ├── PointerUpDownCell.js │ │ ├── PressCell.js │ │ ├── SwipeCell.js │ │ ├── TableSetInteractive.js │ │ └── TapCell.js │ ├── hiddenedit │ ├── Factory.d.ts │ ├── Factory.js │ ├── HiddenEdit.d.ts │ └── HiddenEdit.js │ ├── holygrail │ ├── Factory.d.ts │ ├── Factory.js │ ├── HolyGrail.d.ts │ ├── HolyGrail.js │ └── methods │ │ ├── Build.js │ │ ├── CreatExpandContainer.js │ │ ├── GetAddChildConfig.js │ │ ├── LayoutMode0.js │ │ ├── LayoutMode1.js │ │ ├── LayoutMode2.js │ │ └── LayoutMode3.js │ ├── imagebox │ ├── Factory.d.ts │ ├── Factory.js │ ├── ImageBox.d.ts │ └── ImageBox.js │ ├── imageinputlabel │ ├── Factory.d.ts │ ├── Factory.js │ ├── ImageInputLabel.d.ts │ ├── ImageInputLabel.js │ └── methods │ │ ├── CreateClickBehavior.js │ │ ├── CreateFileChooser.js │ │ ├── CreateImageBox.js │ │ ├── FileChooserConfig.js │ │ ├── GetClickTarget.js │ │ ├── GetFileName.js │ │ ├── Methods.js │ │ ├── OnSelectFile.js │ │ ├── OpenMethods.js │ │ └── SaveTexture.js │ ├── inputtext │ ├── Factory.d.ts │ ├── Factory.js │ ├── InputText.d.ts │ └── InputText.js │ ├── intouching │ ├── Factory.d.ts │ ├── Factory.js │ ├── InTouching.d.ts │ └── InTouching.js │ ├── knob │ ├── Factory.d.ts │ ├── Factory.js │ ├── Knob.d.ts │ ├── Knob.js │ ├── TextObjectMethods.js │ └── input │ │ ├── IsLocalPointInKnob.js │ │ ├── OnPanPad.js │ │ └── OnTouchPad.js │ ├── label │ ├── Base.d.ts │ ├── Base.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── Label.d.ts │ ├── Label.js │ └── methods │ │ ├── Methods.js │ │ └── ResetDisplayContent.js │ ├── layermanager │ ├── Factory.d.ts │ ├── Factory.js │ ├── LayerManager.d.ts │ └── LayerManager.js │ ├── lineprogress │ ├── Factory.d.ts │ ├── Factory.js │ ├── LineProgress.d.ts │ └── LineProgress.js │ ├── lineprogresscanvas │ ├── Factory.d.ts │ ├── Factory.js │ ├── LineProgressCanvas.d.ts │ └── LineProgressCanvas.js │ ├── menu │ ├── Factory.d.ts │ ├── Factory.js │ ├── Menu.d.ts │ ├── Menu.js │ └── methods │ │ ├── Collapse.js │ │ ├── CollapseSubMenu.js │ │ ├── CreateBackground.js │ │ ├── CreateButtons.js │ │ ├── DelayCallMethods.js │ │ ├── Expand.js │ │ ├── ExpandSubMenu.js │ │ ├── GetEaseConfig.js │ │ ├── MenuSetInteractive.js │ │ ├── Methods.js │ │ ├── ParseEaseConfig.js │ │ └── SetTransitCallbackMethods.js │ ├── modal │ ├── Modal.d.ts │ └── Modal.js │ ├── nameinputdialog │ ├── Factory.d.ts │ ├── Factory.js │ ├── NameInputDialog.d.ts │ ├── NameInputDialog.js │ └── methods │ │ ├── CreateContent.js │ │ ├── Methods.js │ │ ├── Modal.js │ │ └── ResetDisplayContent.js │ ├── namevaluelabel │ ├── Factory.d.ts │ ├── Factory.js │ ├── NameValueLabel.d.ts │ ├── NameValueLabel.js │ └── methods │ │ ├── Build.js │ │ └── SetValueMethods.js │ ├── ninepatch │ ├── Factory.d.ts │ ├── Factory.js │ ├── NinePatch.d.ts │ └── NinePatch.js │ ├── ninepatch2 │ ├── Factory.d.ts │ ├── Factory.js │ ├── NinePatch.d.ts │ └── NinePatch.js │ ├── numberbar │ ├── Factory.d.ts │ ├── Factory.js │ ├── NumberBar.d.ts │ └── NumberBar.js │ ├── overlapsizer │ ├── AddChildMethods.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── GetChildrenHeight.js │ ├── GetChildrenSizers.js │ ├── GetChildrenWidth.js │ ├── GetExpandedChildHeight.js │ ├── GetExpandedChildWidth.js │ ├── LayoutChildren.js │ ├── Methods.js │ ├── OverlapSizer.d.ts │ ├── OverlapSizer.js │ └── RemoveChildMethods.js │ ├── pages │ ├── Factory.d.ts │ ├── Factory.js │ ├── Pages.d.ts │ ├── Pages.js │ └── methods │ │ ├── AddChildMethods.js │ │ ├── GetPage.js │ │ ├── HasPage.js │ │ ├── Methods.js │ │ └── SwapPage.js │ ├── pan │ ├── Factory.d.ts │ ├── Factory.js │ ├── Pan.d.ts │ └── Pan.js │ ├── perspective │ ├── Factory.d.ts │ ├── Factory.js │ ├── Perspective.d.ts │ └── Perspective.js │ ├── perspectivecard │ ├── CreatePerspectiveCardMesh.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── PerspectiveCard.d.ts │ ├── PerspectiveCard.js │ └── PerspectiveMethods.js │ ├── pinch │ ├── Factory.d.ts │ ├── Factory.js │ ├── Pinch.d.ts │ └── Pinch.js │ ├── press │ ├── Factory.d.ts │ ├── Factory.js │ ├── Press.d.ts │ └── Press.js │ ├── quadshape │ ├── Factory.d.ts │ ├── Factory.js │ ├── QuadShape.d.ts │ └── QuadShape.js │ ├── rotate │ ├── Factory.d.ts │ ├── Factory.js │ ├── Rotate.d.ts │ └── Rotate.js │ ├── roundrectangle │ ├── Factory.d.ts │ ├── Factory.js │ ├── RoundRectangle.d.ts │ └── RoundRectangle.js │ ├── roundrectanglecanvas │ ├── Factory.d.ts │ ├── Factory.js │ ├── RoundRectangleCanvas.d.ts │ └── RoundRectangleCanvas.js │ ├── roundrectangleprogress │ ├── Factory.d.ts │ ├── Factory.js │ ├── RoundRectangleProgress.d.ts │ └── RoundRectangleProgress.js │ ├── scale │ ├── Scale.js │ └── Scale.ts │ ├── scrollablepanel │ ├── Factory.d.ts │ ├── Factory.js │ ├── ScrollablePanel.d.ts │ ├── ScrollablePanel.js │ ├── methods │ │ └── ScrollToChild.js │ └── scrollableblock │ │ ├── GetChildrenHeight.js │ │ ├── GetChildrenSizers.js │ │ ├── GetChildrenWidth.js │ │ ├── LayoutChildren.js │ │ ├── Methods.js │ │ ├── RemoveChildCallback.js │ │ ├── ResetChildPosition.js │ │ └── ScrollableBlock.js │ ├── scrollbar │ ├── Factory.d.ts │ ├── Factory.js │ ├── ScrollBar.d.ts │ └── ScrollBar.js │ ├── shake │ ├── Factory.d.ts │ ├── Factory.js │ ├── Shake.d.ts │ └── Shake.js │ ├── sides │ ├── Factory.js │ ├── ShowChildMethods.js │ ├── Sides.js │ ├── childbehaviors │ │ ├── Fade.js │ │ ├── Move.js │ │ ├── Visible.js │ │ └── index.js │ └── defaultcallbacks │ │ ├── FadeCallbacks.js │ │ ├── GetDefaultCallbacks.js │ │ ├── MoveCallbacks.js │ │ ├── MovePanelCallbacks.js │ │ └── VisibleCallbacks.js │ ├── simpledropdownlist │ ├── Factory.d.ts │ ├── Factory.js │ ├── SimpleDropDownList.d.ts │ └── SimpleDropDownList.js │ ├── simplelabel │ ├── Factory.d.ts │ ├── Factory.js │ ├── SimpleLabel.d.ts │ └── SimpleLabel.js │ ├── simpletextbox │ ├── Factory.d.ts │ ├── Factory.js │ ├── SimpleTextBox.d.ts │ └── SimpleTextBox.js │ ├── simpletitlelabel │ ├── Factory.d.ts │ ├── Factory.js │ ├── SimpleTitleLabel.d.ts │ └── SimpleTitleLabel.js │ ├── sizer │ ├── AddChildMethods.js │ ├── AlignMethods.js │ ├── ExpandFitRatioChildren.js │ ├── ExpandMethods.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── GetChildrenHeight.js │ ├── GetChildrenProportion.js │ ├── GetChildrenSizers.js │ ├── GetChildrenWidth.js │ ├── GetExpandedChildHeight.js │ ├── GetExpandedChildWidth.js │ ├── GetNearestChildIndex.js │ ├── HasHeightWrap.js │ ├── HasWidthWrap.js │ ├── LayoutChildren.js │ ├── Methods.js │ ├── PreLayout.js │ ├── ProportionMethods.js │ ├── RemoveChildMethods.js │ ├── ResolveHeight.js │ ├── ResolveWidth.js │ ├── RunHeightWrap.js │ ├── RunWidthWrap.js │ ├── SetChildrenAlignMode.js │ ├── Sizer.d.ts │ └── Sizer.js │ ├── skew │ ├── Factory.d.ts │ ├── Factory.js │ ├── Skew.d.ts │ └── Skew.js │ ├── slider │ ├── Factory.d.ts │ ├── Factory.js │ ├── Slider.d.ts │ ├── Slider.js │ └── methods │ │ ├── GetEndPoint.js │ │ ├── GetStartPoint.js │ │ ├── GetThumbAlignPoint.js │ │ ├── PercentToPosition.js │ │ ├── PositionToPercent.js │ │ ├── UpdateIndicator.js │ │ ├── UpdateThumb.js │ │ └── input │ │ ├── GetValueByPosition.js │ │ ├── OnDragThumb.js │ │ ├── OnTouchTrack.js │ │ └── RegisterInputEvents.js │ ├── space │ ├── Factory.d.ts │ ├── Factory.js │ ├── Space.d.ts │ └── Space.js │ ├── splitpanels │ ├── Factory.d.ts │ ├── Factory.js │ ├── SplitPanels.d.ts │ ├── SplitPanels.js │ └── methods │ │ └── OnDragSplitter.js │ ├── statesbarrectangle │ ├── Factory.d.ts │ ├── Factory.js │ ├── StatesBarRectangle.d.ts │ └── StatesBarRectangle.js │ ├── statesbitmaptext │ ├── Factory.d.ts │ ├── Factory.js │ ├── StatesBitmapText.d.ts │ ├── StatesBitmapText.js │ └── Style.js │ ├── statesimage │ ├── Factory.d.ts │ ├── Factory.js │ ├── StatesImage.d.ts │ ├── StatesImage.js │ └── Style.js │ ├── statesninepatch │ ├── Factory.d.ts │ ├── Factory.js │ ├── StatesNinePatch.d.ts │ ├── StatesNinePatch.js │ └── Style.js │ ├── statesnineslice │ ├── Factory.d.ts │ ├── Factory.js │ ├── StatesNineSlice.d.ts │ ├── StatesNineSlice.js │ └── Style.js │ ├── statesroundrectangle │ ├── Factory.d.ts │ ├── Factory.js │ ├── StatesRoundRectangle.d.ts │ └── StatesRoundRectangle.js │ ├── statestext │ ├── Factory.d.ts │ ├── Factory.js │ ├── StatesText.d.ts │ └── StatesText.js │ ├── swipe │ ├── Factory.d.ts │ ├── Factory.js │ ├── Swipe.d.ts │ └── Swipe.js │ ├── tabpages │ ├── Factory.d.ts │ ├── Factory.js │ ├── TabPages.d.ts │ ├── TabPages.js │ └── methods │ │ ├── AddPage.js │ │ ├── GetPage.js │ │ ├── GetPageIndexByKey.js │ │ ├── GetPageKeyByIndex.js │ │ ├── GetTab.js │ │ ├── Methods.js │ │ ├── RemovePageMethods.js │ │ ├── SetTabPosition.js │ │ ├── SwapPageMethods.js │ │ └── TabPaddingMethods.js │ ├── tabs │ ├── ButtonMethods.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── Tabs.d.ts │ └── Tabs.js │ ├── tagtext │ ├── Factory.d.ts │ ├── Factory.js │ ├── TagText.d.ts │ └── TagText.js │ ├── tap │ ├── Factory.d.ts │ ├── Factory.js │ ├── Tap.d.ts │ └── Tap.js │ ├── textarea │ ├── Factory.d.ts │ ├── Factory.js │ ├── InjectProperties.js │ ├── ScrollMethods.js │ ├── SetTextMethods.js │ ├── TextArea.d.ts │ ├── TextArea.js │ └── textblock │ │ ├── GetLines.js │ │ ├── LayoutChildren.js │ │ ├── LinesCountToTextHeight.js │ │ ├── Methods.js │ │ ├── PreLayout.js │ │ ├── ResetTextObjectPosition.js │ │ ├── ResizeText.js │ │ ├── SetText.js │ │ ├── TextBlock.js │ │ ├── TextHeightToLinesCount.js │ │ └── UpdateTextObject.js │ ├── textareainput │ ├── Factory.d.ts │ ├── Factory.js │ ├── InjectProperties.js │ ├── ScrollMethods.js │ ├── SetTextMethods.js │ ├── TextAreaInput.d.ts │ └── TextAreaInput.js │ ├── textbox │ ├── Base.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── TextBox.d.ts │ └── TextBox.js │ ├── textedit │ ├── Edit.d.ts │ ├── Edit.js │ ├── Factory.d.ts │ ├── Factory.js │ ├── TextEdit.d.ts │ └── TextEdit.js │ ├── textpage │ ├── Factory.d.ts │ ├── Factory.js │ ├── TextPage.d.ts │ └── TextPage.js │ ├── textplayer │ ├── Factory.d.ts │ ├── Factory.js │ ├── TextPlayer.d.ts │ └── TextPlayer.js │ ├── texttyping │ ├── Factory.d.ts │ ├── Factory.js │ ├── TextTyping.d.ts │ └── TextTyping.js │ ├── titlelabel │ ├── Factory.d.ts │ ├── Factory.js │ ├── TitleLabel.d.ts │ ├── TitleLabel.js │ └── methods │ │ ├── LayoutMode0.js │ │ └── LayoutMode1.js │ ├── toast │ ├── Factory.d.ts │ ├── Factory.js │ ├── Toast.d.ts │ ├── Toast.js │ └── methods │ │ ├── ConfigurationMethods.js │ │ ├── DefaultTransitionCallbacks.js │ │ ├── MessageMethods.js │ │ └── TransitionMode.js │ ├── toastqueue │ ├── Factory.d.ts │ ├── Factory.js │ ├── ToastQueue.d.ts │ ├── ToastQueue.js │ └── methods │ │ ├── ConfigurationMethods.js │ │ ├── DefaultTransitionMethods.js │ │ ├── MessageMethods.js │ │ └── Methods.js │ ├── toggleswitch │ ├── Factory.d.ts │ ├── Factory.js │ ├── ToggleSwitch.d.ts │ └── ToggleSwitch.js │ ├── toucheventstop │ ├── Factory.d.ts │ ├── Factory.js │ ├── TouchEventStop.d.ts │ └── TouchEventStop.js │ ├── transitionimage │ ├── Factory.d.ts │ ├── Factory.js │ ├── TransitionImage.d.ts │ └── TransitionImage.js │ ├── transitionimagepack │ ├── Factory.d.ts │ ├── Factory.js │ ├── TransitionImagePack.d.ts │ └── TransitionImagePack.js │ ├── trees │ ├── Factory.d.ts │ ├── Factory.js │ ├── Trees.d.ts │ ├── Trees.js │ ├── builders │ │ ├── CreateGameObjectFromConfig.js │ │ ├── DefaultCreateBackgroundCallback.js │ │ ├── DefaultCreateNodeBodyCallback.js │ │ └── DefaultCreateToggleButtonCallback.js │ ├── methods │ │ ├── AddTreeMethods.js │ │ ├── GetTreeMethods.js │ │ ├── Merge.js │ │ ├── Methods.js │ │ ├── PointToChild.js │ │ ├── RemoveTreeMethods.js │ │ ├── SetChildrenInteractive.js │ │ └── SyncDisplayList.js │ └── tree │ │ ├── Tree.d.ts │ │ ├── Tree.js │ │ ├── methods │ │ ├── AddNodeMethods.js │ │ ├── GetNodeMethods.js │ │ ├── Methods.js │ │ ├── ParentMethods.js │ │ ├── PointToChild.js │ │ └── RemoveNodeMethods.js │ │ └── node │ │ ├── CreateChildrenSizer.js │ │ ├── CreateTitleSizer.js │ │ ├── Node.d.ts │ │ ├── Node.js │ │ └── NodeBase.js │ ├── triangle │ ├── Factory.d.ts │ ├── Factory.js │ ├── Triangle.d.ts │ └── Triangle.js │ ├── tweaker │ ├── Factory.d.ts │ ├── Factory.js │ ├── GenerateTweakerShellClass.js │ ├── Tweaker.d.ts │ ├── Tweaker.js │ ├── builders │ │ ├── CreateBackground.js │ │ ├── CreateButtons.js │ │ ├── CreateColumns.js │ │ ├── CreateFolder.js │ │ ├── CreateInputField.js │ │ ├── CreateInputRow.js │ │ ├── CreateScrollable.js │ │ ├── CreateSeparator.js │ │ ├── CreateTab.js │ │ ├── CreateTitleLabel.js │ │ ├── CreateToggleSwitchInput.js │ │ └── CreateWrap.js │ ├── gameobjects │ │ ├── columns │ │ │ ├── BindingTargetMethods.js │ │ │ ├── Columns.js │ │ │ └── InputRowTitleWidthMethods.js │ │ ├── folder │ │ │ ├── BindingTargetMethods.js │ │ │ ├── Folder.js │ │ │ └── InputRowTitleWidthMethods.js │ │ ├── inputfield │ │ │ └── GenerateInputFieldClass.js │ │ ├── inputrow │ │ │ ├── BindingTargetMethods.js │ │ │ ├── InputRow.js │ │ │ ├── MinTitleWidthMethods.js │ │ │ └── MonitorTargetMethods.js │ │ ├── label │ │ │ ├── FolderTitle.js │ │ │ └── Title.js │ │ ├── scrollable │ │ │ ├── BindingTargetMethods.js │ │ │ ├── InputRowTitleWidthMethods.js │ │ │ └── Scrollable.js │ │ ├── tabpages │ │ │ ├── BindingTargetMethods.js │ │ │ ├── InputRowTitleWidthMethods.js │ │ │ └── TabPages.js │ │ ├── utils │ │ │ ├── CreateButtons.js │ │ │ ├── CreateCheckbox.js │ │ │ ├── CreateSlider.js │ │ │ ├── CreateToggleSwitch.js │ │ │ └── CreateWrapButtons.js │ │ └── wrap │ │ │ ├── BindingTargetMethods.js │ │ │ ├── InputRowTitleWidthMethods.js │ │ │ └── Wrap.js │ ├── inputhandlers │ │ ├── ButtonsInputHandler.js │ │ ├── CheckboxInputHandler.js │ │ ├── ColorInputHandler.js │ │ ├── IncDecInputHandler.js │ │ ├── ListInputHandler.js │ │ ├── NumberInputHandler.js │ │ ├── RangeInputHandler.js │ │ ├── TextAreaInputHandler.js │ │ ├── TextInputHandler.js │ │ ├── ToggleSwitchInputHandler.js │ │ └── utils │ │ │ ├── CreateButtons.js │ │ │ ├── CreateCheckbox.js │ │ │ ├── CreateColorInput.js │ │ │ ├── CreateDropDownList.js │ │ │ ├── CreateInputText.js │ │ │ ├── CreateInputTextArea.js │ │ │ ├── CreateLabel.js │ │ │ ├── CreateSlider.js │ │ │ ├── CreateToggleSwitch.js │ │ │ ├── CreateWrapButtons.js │ │ │ ├── OptionsMethods.js │ │ │ └── SetButtonsActiveState.js │ └── methods │ │ ├── AddButton.js │ │ ├── AddButtons.js │ │ ├── AddColumns.js │ │ ├── AddFolder.js │ │ ├── AddInput.js │ │ ├── AddRows.js │ │ ├── AddScrollable.js │ │ ├── AddSeparator.js │ │ ├── AddTab.js │ │ ├── AddWrap.js │ │ ├── GetMaxInputRowTitleWidth.js │ │ ├── Methods.js │ │ ├── RegisterDefaultInputHandlers.js │ │ ├── RegisterInputHandler.js │ │ ├── RemoveInputHandler.js │ │ ├── SetBindingTarget.js │ │ └── SetInputRowTitleWidth.js │ ├── ui-components.d.ts │ ├── ui-components.js │ ├── ui-plugin.d.ts │ ├── ui-plugin.js │ └── utils │ ├── AlignConst.js │ ├── ContainsPoint.js │ ├── CopyState.js │ ├── GetBoundsConfig.js │ ├── GetChildPrevState.js │ ├── GetGameObjectByName.js │ ├── GetOrientationMode.js │ ├── GetParentSizer.d.ts │ ├── GetParentSizer.js │ ├── GetScrollMode.js │ ├── GetSizerConfig.js │ ├── Hide.d.ts │ ├── Hide.js │ ├── RemoveFromParent.d.ts │ ├── RemoveFromParent.js │ ├── ScrollModeConst.js │ ├── WaitEvent.d.ts │ ├── WaitEvent.js │ ├── build │ ├── BuildLabelConfig.d.ts │ ├── BuildLabelConfig.js │ ├── BuildListConfig.d.ts │ ├── BuildListConfig.js │ ├── BuildTitleLabelConfig.d.ts │ ├── BuildTitleLabelConfig.js │ ├── CreateBBCodeText.d.ts │ ├── CreateBBCodeText.js │ ├── CreateBackground.d.ts │ ├── CreateBackground.js │ ├── CreateBuiltInText.js │ ├── CreateColorInput.d.ts │ ├── CreateColorInput.js │ ├── CreateDropDownList.d.ts │ ├── CreateDropDownList.js │ ├── CreateImage.d.ts │ ├── CreateImage.js │ ├── CreateInputText.d.ts │ ├── CreateInputText.js │ ├── CreateInputTextArea.d.ts │ ├── CreateInputTextArea.js │ ├── CreateLabel.d.ts │ ├── CreateLabel.js │ ├── CreateRoundRectangle.js │ ├── CreateText.d.ts │ ├── CreateText.js │ ├── CreateTextArea.d.ts │ ├── CreateTextArea.js │ ├── DecorateGameObject.js │ └── GeneralCreateGameObjectCallbackType.d.ts │ ├── buttongroup │ ├── AddMethods.js │ ├── ButtonGroup.js │ ├── ButtonMethods.js │ ├── ButtonStateMethods.js │ ├── Buttons.d.ts │ ├── ButtonsTypeMethods.js │ ├── FireEvent.js │ ├── InjectSelectedProperty.js │ ├── OnButtonStateChange.js │ └── RemoveMethods.js │ ├── fontsizeexpandtext │ ├── FontSizeExpandText.d.ts │ └── FontSizeExpandText.js │ ├── scrollable │ ├── Scrollable.d.ts │ ├── Scrollable.js │ └── methods │ │ ├── AddChild.js │ │ ├── AddSlider.js │ │ ├── ChildPositionMethods.js │ │ ├── CreateScrollableSizer.js │ │ ├── CreateScrollbar.js │ │ ├── Methods.js │ │ ├── ResizeController.js │ │ └── UpdateController.js │ ├── setchildreninteractive │ ├── ClickChild.js │ ├── ContainsPoint.js │ ├── DownChild.js │ ├── EmitChildEvent.js │ ├── OverChild.js │ ├── PressChild.js │ ├── SetChildrenInteractive.d.ts │ ├── SetChildrenInteractive.js │ ├── SwipeChild.js │ ├── TapChild.js │ └── UpChild.js │ ├── stylemanager │ ├── HelperMethods.js │ └── StyleManager.js │ └── wrapexpandtext │ ├── BitmapTextRunWidthWrap.js │ ├── DynamicTextRunWidthWrap.js │ ├── TextRunWidthWrap.js │ ├── WrapExpandText.d.ts │ └── WrapExpandText.js ├── tsconfig.json ├── update.bat ├── webpack.config.js └── webpack.production.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/README.md -------------------------------------------------------------------------------- /assets/animations/cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/animations/cube.json -------------------------------------------------------------------------------- /assets/animations/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/animations/cube.png -------------------------------------------------------------------------------- /assets/audio/Fate.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/audio/Fate.mp3 -------------------------------------------------------------------------------- /assets/audio/Fate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/audio/Fate.ogg -------------------------------------------------------------------------------- /assets/audio/jungle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/audio/jungle.mp3 -------------------------------------------------------------------------------- /assets/audio/jungle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/audio/jungle.ogg -------------------------------------------------------------------------------- /assets/fonts/gothic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/fonts/gothic.png -------------------------------------------------------------------------------- /assets/fonts/gothic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/fonts/gothic.xml -------------------------------------------------------------------------------- /assets/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/add.png -------------------------------------------------------------------------------- /assets/images/amethyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/amethyst.png -------------------------------------------------------------------------------- /assets/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/arrow.png -------------------------------------------------------------------------------- /assets/images/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/bolt.png -------------------------------------------------------------------------------- /assets/images/card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/card.jpg -------------------------------------------------------------------------------- /assets/images/card2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/card2.png -------------------------------------------------------------------------------- /assets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/close.png -------------------------------------------------------------------------------- /assets/images/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/contract.png -------------------------------------------------------------------------------- /assets/images/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/diamond.png -------------------------------------------------------------------------------- /assets/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/expand.png -------------------------------------------------------------------------------- /assets/images/fission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/fission.png -------------------------------------------------------------------------------- /assets/images/flash-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/flash-on.png -------------------------------------------------------------------------------- /assets/images/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/icons.json -------------------------------------------------------------------------------- /assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/icons.png -------------------------------------------------------------------------------- /assets/images/indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/indicator.png -------------------------------------------------------------------------------- /assets/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/info.png -------------------------------------------------------------------------------- /assets/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/key.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/money.png -------------------------------------------------------------------------------- /assets/images/mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/mushroom.png -------------------------------------------------------------------------------- /assets/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/pause.png -------------------------------------------------------------------------------- /assets/images/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/person.png -------------------------------------------------------------------------------- /assets/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/play.png -------------------------------------------------------------------------------- /assets/images/road/road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/road/road.png -------------------------------------------------------------------------------- /assets/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/settings.png -------------------------------------------------------------------------------- /assets/images/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/snowflake.png -------------------------------------------------------------------------------- /assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/user.png -------------------------------------------------------------------------------- /assets/images/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/volume.png -------------------------------------------------------------------------------- /assets/images/white-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/white-dot.png -------------------------------------------------------------------------------- /assets/images/箭頭.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/images/箭頭.png -------------------------------------------------------------------------------- /assets/live2d/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/live2d/LICENSE.md -------------------------------------------------------------------------------- /assets/locales/en/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/locales/en/ui.json -------------------------------------------------------------------------------- /assets/locales/en/ui.yaml: -------------------------------------------------------------------------------- 1 | save: Save -------------------------------------------------------------------------------- /assets/locales/zh-TW/ui.json: -------------------------------------------------------------------------------- 1 | { 2 | "save": "儲存" 3 | } -------------------------------------------------------------------------------- /assets/locales/zh-TW/ui.yaml: -------------------------------------------------------------------------------- 1 | save: 儲存 -------------------------------------------------------------------------------- /assets/obj/cube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/obj/cube.mtl -------------------------------------------------------------------------------- /assets/obj/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/obj/cube.obj -------------------------------------------------------------------------------- /assets/pack/pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/pack/pack.json -------------------------------------------------------------------------------- /assets/texts/csvArray.csv: -------------------------------------------------------------------------------- 1 | 1,2,3 2 | 4,5,6 3 | 7,8,9 -------------------------------------------------------------------------------- /assets/video/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/video/test.mp4 -------------------------------------------------------------------------------- /assets/zip/classroom.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/assets/zip/classroom.zip -------------------------------------------------------------------------------- /dist/rexaiospinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexaiospinner.js -------------------------------------------------------------------------------- /dist/rexaiospinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexaiospinner.min.js -------------------------------------------------------------------------------- /dist/rexalphamaskimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexalphamaskimage.js -------------------------------------------------------------------------------- /dist/rexanchorplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexanchorplugin.js -------------------------------------------------------------------------------- /dist/rexanchorplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexanchorplugin.min.js -------------------------------------------------------------------------------- /dist/rexarcadetcrpplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexarcadetcrpplugin.js -------------------------------------------------------------------------------- /dist/rexarrowspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexarrowspinner.js -------------------------------------------------------------------------------- /dist/rexarrowspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexarrowspinner.min.js -------------------------------------------------------------------------------- /dist/rexaudiospinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexaudiospinner.js -------------------------------------------------------------------------------- /dist/rexaudiospinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexaudiospinner.min.js -------------------------------------------------------------------------------- /dist/rexawaytimeplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexawaytimeplugin.js -------------------------------------------------------------------------------- /dist/rexbadgelabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbadgelabel.js -------------------------------------------------------------------------------- /dist/rexbadgelabel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbadgelabel.min.js -------------------------------------------------------------------------------- /dist/rexballspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexballspinner.js -------------------------------------------------------------------------------- /dist/rexballspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexballspinner.min.js -------------------------------------------------------------------------------- /dist/rexbarsspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbarsspinner.js -------------------------------------------------------------------------------- /dist/rexbarsspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbarsspinner.min.js -------------------------------------------------------------------------------- /dist/rexbbcodelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbbcodelog.js -------------------------------------------------------------------------------- /dist/rexbbcodelog.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbbcodelog.min.js -------------------------------------------------------------------------------- /dist/rexbbcodetext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbbcodetext.js -------------------------------------------------------------------------------- /dist/rexbbcodetext.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbbcodetext.min.js -------------------------------------------------------------------------------- /dist/rexbbcodetextplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbbcodetextplugin.js -------------------------------------------------------------------------------- /dist/rexbejeweled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbejeweled.js -------------------------------------------------------------------------------- /dist/rexbejeweled.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbejeweled.min.js -------------------------------------------------------------------------------- /dist/rexbejeweled2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbejeweled2.js -------------------------------------------------------------------------------- /dist/rexbejeweled2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbejeweled2.min.js -------------------------------------------------------------------------------- /dist/rexbitmapzoneplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbitmapzoneplugin.js -------------------------------------------------------------------------------- /dist/rexboardplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexboardplugin.js -------------------------------------------------------------------------------- /dist/rexboardplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexboardplugin.min.js -------------------------------------------------------------------------------- /dist/rexboundsplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexboundsplugin.js -------------------------------------------------------------------------------- /dist/rexboundsplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexboundsplugin.min.js -------------------------------------------------------------------------------- /dist/rexboxspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexboxspinner.js -------------------------------------------------------------------------------- /dist/rexboxspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexboxspinner.min.js -------------------------------------------------------------------------------- /dist/rexbuffdataplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbuffdataplugin.js -------------------------------------------------------------------------------- /dist/rexbulletplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbulletplugin.js -------------------------------------------------------------------------------- /dist/rexbulletplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbulletplugin.min.js -------------------------------------------------------------------------------- /dist/rexbuttonplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbuttonplugin.js -------------------------------------------------------------------------------- /dist/rexbuttonplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbuttonplugin.min.js -------------------------------------------------------------------------------- /dist/rexbuttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbuttons.js -------------------------------------------------------------------------------- /dist/rexbuttons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexbuttons.min.js -------------------------------------------------------------------------------- /dist/rexcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcanvas.js -------------------------------------------------------------------------------- /dist/rexcanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcanvas.min.js -------------------------------------------------------------------------------- /dist/rexcanvasdataplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcanvasdataplugin.js -------------------------------------------------------------------------------- /dist/rexcanvasplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcanvasplugin.js -------------------------------------------------------------------------------- /dist/rexcanvasplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcanvasplugin.min.js -------------------------------------------------------------------------------- /dist/rexchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexchart.js -------------------------------------------------------------------------------- /dist/rexchart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexchart.min.js -------------------------------------------------------------------------------- /dist/rexcheckbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcheckbox.js -------------------------------------------------------------------------------- /dist/rexcheckbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcheckbox.min.js -------------------------------------------------------------------------------- /dist/rexcheckboxplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcheckboxplugin.js -------------------------------------------------------------------------------- /dist/rexcirclemaskimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcirclemaskimage.js -------------------------------------------------------------------------------- /dist/rexcircularprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcircularprogress.js -------------------------------------------------------------------------------- /dist/rexclockplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexclockplugin.js -------------------------------------------------------------------------------- /dist/rexclockplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexclockplugin.min.js -------------------------------------------------------------------------------- /dist/rexclockspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexclockspinner.js -------------------------------------------------------------------------------- /dist/rexclockspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexclockspinner.min.js -------------------------------------------------------------------------------- /dist/rexcolorcomponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcolorcomponents.js -------------------------------------------------------------------------------- /dist/rexcolorinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcolorinput.js -------------------------------------------------------------------------------- /dist/rexcolorinput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcolorinput.min.js -------------------------------------------------------------------------------- /dist/rexcolorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcolorpicker.js -------------------------------------------------------------------------------- /dist/rexcolorpicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcolorpicker.min.js -------------------------------------------------------------------------------- /dist/rexconfirmdialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexconfirmdialog.js -------------------------------------------------------------------------------- /dist/rexcoverplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcoverplugin.js -------------------------------------------------------------------------------- /dist/rexcoverplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcoverplugin.min.js -------------------------------------------------------------------------------- /dist/rexcsvscenariologic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcsvscenariologic.js -------------------------------------------------------------------------------- /dist/rexcsvtoarrayplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcsvtoarrayplugin.js -------------------------------------------------------------------------------- /dist/rexcubespinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcubespinner.js -------------------------------------------------------------------------------- /dist/rexcubespinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcubespinner.min.js -------------------------------------------------------------------------------- /dist/rexcustomprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcustomprogress.js -------------------------------------------------------------------------------- /dist/rexcustomshapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcustomshapes.js -------------------------------------------------------------------------------- /dist/rexcustomshapes.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcustomshapes.min.js -------------------------------------------------------------------------------- /dist/rexcustomspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexcustomspinner.js -------------------------------------------------------------------------------- /dist/rexdatamonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdatamonitor.js -------------------------------------------------------------------------------- /dist/rexdatamonitor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdatamonitor.min.js -------------------------------------------------------------------------------- /dist/rexdialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdialog.js -------------------------------------------------------------------------------- /dist/rexdialog.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdialog.min.js -------------------------------------------------------------------------------- /dist/rexdialogquest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdialogquest.js -------------------------------------------------------------------------------- /dist/rexdialogquest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdialogquest.min.js -------------------------------------------------------------------------------- /dist/rexdotsspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdotsspinner.js -------------------------------------------------------------------------------- /dist/rexdotsspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdotsspinner.min.js -------------------------------------------------------------------------------- /dist/rexdragplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdragplugin.js -------------------------------------------------------------------------------- /dist/rexdragplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdragplugin.min.js -------------------------------------------------------------------------------- /dist/rexdragrotateplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdragrotateplugin.js -------------------------------------------------------------------------------- /dist/rexdragspeedplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdragspeedplugin.js -------------------------------------------------------------------------------- /dist/rexdropdownlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdropdownlist.js -------------------------------------------------------------------------------- /dist/rexdropdownlist.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdropdownlist.min.js -------------------------------------------------------------------------------- /dist/rexdropdownplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdropdownplugin.js -------------------------------------------------------------------------------- /dist/rexdynamictext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdynamictext.js -------------------------------------------------------------------------------- /dist/rexdynamictext.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexdynamictext.min.js -------------------------------------------------------------------------------- /dist/rexeasedataplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexeasedataplugin.js -------------------------------------------------------------------------------- /dist/rexeasemoveplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexeasemoveplugin.js -------------------------------------------------------------------------------- /dist/rexexpbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexexpbar.js -------------------------------------------------------------------------------- /dist/rexexpbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexexpbar.min.js -------------------------------------------------------------------------------- /dist/rexfacebookspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfacebookspinner.js -------------------------------------------------------------------------------- /dist/rexfadeplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfadeplugin.js -------------------------------------------------------------------------------- /dist/rexfadeplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfadeplugin.min.js -------------------------------------------------------------------------------- /dist/rexfilechooser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfilechooser.js -------------------------------------------------------------------------------- /dist/rexfilechooser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfilechooser.min.js -------------------------------------------------------------------------------- /dist/rexfiledropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfiledropzone.js -------------------------------------------------------------------------------- /dist/rexfiledropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfiledropzone.min.js -------------------------------------------------------------------------------- /dist/rexfirebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfirebase.js -------------------------------------------------------------------------------- /dist/rexfirebase.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfirebase.min.js -------------------------------------------------------------------------------- /dist/rexfirebaseplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfirebaseplugin.js -------------------------------------------------------------------------------- /dist/rexfixwidthbuttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfixwidthbuttons.js -------------------------------------------------------------------------------- /dist/rexfixwidthsizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfixwidthsizer.js -------------------------------------------------------------------------------- /dist/rexflashplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexflashplugin.js -------------------------------------------------------------------------------- /dist/rexflashplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexflashplugin.min.js -------------------------------------------------------------------------------- /dist/rexflip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexflip.js -------------------------------------------------------------------------------- /dist/rexflip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexflip.min.js -------------------------------------------------------------------------------- /dist/rexflipplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexflipplugin.js -------------------------------------------------------------------------------- /dist/rexflipplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexflipplugin.min.js -------------------------------------------------------------------------------- /dist/rexfolder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfolder.js -------------------------------------------------------------------------------- /dist/rexfolder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfolder.min.js -------------------------------------------------------------------------------- /dist/rexfsmplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfsmplugin.js -------------------------------------------------------------------------------- /dist/rexfsmplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfsmplugin.min.js -------------------------------------------------------------------------------- /dist/rexfuzzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfuzzy.js -------------------------------------------------------------------------------- /dist/rexfuzzy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfuzzy.min.js -------------------------------------------------------------------------------- /dist/rexfuzzyplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfuzzyplugin.js -------------------------------------------------------------------------------- /dist/rexfuzzyplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexfuzzyplugin.min.js -------------------------------------------------------------------------------- /dist/rexgashaponplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgashaponplugin.js -------------------------------------------------------------------------------- /dist/rexgesturesplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgesturesplugin.js -------------------------------------------------------------------------------- /dist/rexgraphplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgraphplugin.js -------------------------------------------------------------------------------- /dist/rexgraphplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgraphplugin.min.js -------------------------------------------------------------------------------- /dist/rexgridalignplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgridalignplugin.js -------------------------------------------------------------------------------- /dist/rexgridbuttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgridbuttons.js -------------------------------------------------------------------------------- /dist/rexgridbuttons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgridbuttons.min.js -------------------------------------------------------------------------------- /dist/rexgridsizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgridsizer.js -------------------------------------------------------------------------------- /dist/rexgridsizer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgridsizer.min.js -------------------------------------------------------------------------------- /dist/rexgridspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgridspinner.js -------------------------------------------------------------------------------- /dist/rexgridspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgridspinner.min.js -------------------------------------------------------------------------------- /dist/rexgridtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgridtable.js -------------------------------------------------------------------------------- /dist/rexgridtable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgridtable.min.js -------------------------------------------------------------------------------- /dist/rexgridtableplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexgridtableplugin.js -------------------------------------------------------------------------------- /dist/rexheartsspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexheartsspinner.js -------------------------------------------------------------------------------- /dist/rexhexagonplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexhexagonplugin.js -------------------------------------------------------------------------------- /dist/rexholygrail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexholygrail.js -------------------------------------------------------------------------------- /dist/rexholygrail.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexholygrail.min.js -------------------------------------------------------------------------------- /dist/reximageboxplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/reximageboxplugin.js -------------------------------------------------------------------------------- /dist/rexinputtextplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexinputtextplugin.js -------------------------------------------------------------------------------- /dist/rexintouchingplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexintouchingplugin.js -------------------------------------------------------------------------------- /dist/rexiosspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexiosspinner.js -------------------------------------------------------------------------------- /dist/rexiosspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexiosspinner.min.js -------------------------------------------------------------------------------- /dist/rexjsonscenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexjsonscenario.js -------------------------------------------------------------------------------- /dist/rexjsonscenario.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexjsonscenario.min.js -------------------------------------------------------------------------------- /dist/rexkeyshubplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexkeyshubplugin.js -------------------------------------------------------------------------------- /dist/rexknob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexknob.js -------------------------------------------------------------------------------- /dist/rexknob.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexknob.min.js -------------------------------------------------------------------------------- /dist/rexlabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlabel.js -------------------------------------------------------------------------------- /dist/rexlabel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlabel.min.js -------------------------------------------------------------------------------- /dist/rexlevelcounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlevelcounter.js -------------------------------------------------------------------------------- /dist/rexlevelcounter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlevelcounter.min.js -------------------------------------------------------------------------------- /dist/rexlifetimeplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlifetimeplugin.js -------------------------------------------------------------------------------- /dist/rexlineplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlineplugin.js -------------------------------------------------------------------------------- /dist/rexlineplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlineplugin.min.js -------------------------------------------------------------------------------- /dist/rexlineprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlineprogress.js -------------------------------------------------------------------------------- /dist/rexlineprogress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlineprogress.min.js -------------------------------------------------------------------------------- /dist/rexlineshapeplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlineshapeplugin.js -------------------------------------------------------------------------------- /dist/rexlive2dplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlive2dplugin.js -------------------------------------------------------------------------------- /dist/rexlive2dplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlive2dplugin.min.js -------------------------------------------------------------------------------- /dist/rexlocalmaskplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlocalmaskplugin.js -------------------------------------------------------------------------------- /dist/rexlzstringplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexlzstringplugin.js -------------------------------------------------------------------------------- /dist/rexmdscenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexmdscenario.js -------------------------------------------------------------------------------- /dist/rexmdscenario.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexmdscenario.min.js -------------------------------------------------------------------------------- /dist/rexmdscenarioplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexmdscenarioplugin.js -------------------------------------------------------------------------------- /dist/rexmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexmenu.js -------------------------------------------------------------------------------- /dist/rexmenu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexmenu.min.js -------------------------------------------------------------------------------- /dist/rexmodalplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexmodalplugin.js -------------------------------------------------------------------------------- /dist/rexmodalplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexmodalplugin.min.js -------------------------------------------------------------------------------- /dist/rexmovetoplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexmovetoplugin.js -------------------------------------------------------------------------------- /dist/rexmovetoplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexmovetoplugin.min.js -------------------------------------------------------------------------------- /dist/rexnameinputdialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexnameinputdialog.js -------------------------------------------------------------------------------- /dist/rexnamevaluelabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexnamevaluelabel.js -------------------------------------------------------------------------------- /dist/rexninepatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexninepatch.js -------------------------------------------------------------------------------- /dist/rexninepatch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexninepatch.min.js -------------------------------------------------------------------------------- /dist/rexninepatch2plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexninepatch2plugin.js -------------------------------------------------------------------------------- /dist/rexninepatchplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexninepatchplugin.js -------------------------------------------------------------------------------- /dist/rexnumberbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexnumberbar.js -------------------------------------------------------------------------------- /dist/rexnumberbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexnumberbar.min.js -------------------------------------------------------------------------------- /dist/rexorbitspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexorbitspinner.js -------------------------------------------------------------------------------- /dist/rexorbitspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexorbitspinner.min.js -------------------------------------------------------------------------------- /dist/rexovalspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexovalspinner.js -------------------------------------------------------------------------------- /dist/rexovalspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexovalspinner.min.js -------------------------------------------------------------------------------- /dist/rexoverlapsizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexoverlapsizer.js -------------------------------------------------------------------------------- /dist/rexoverlapsizer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexoverlapsizer.min.js -------------------------------------------------------------------------------- /dist/rexpages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpages.js -------------------------------------------------------------------------------- /dist/rexpages.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpages.min.js -------------------------------------------------------------------------------- /dist/rexpan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpan.js -------------------------------------------------------------------------------- /dist/rexpan.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpan.min.js -------------------------------------------------------------------------------- /dist/rexparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexparse.js -------------------------------------------------------------------------------- /dist/rexparse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexparse.min.js -------------------------------------------------------------------------------- /dist/rexparseplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexparseplugin.js -------------------------------------------------------------------------------- /dist/rexparseplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexparseplugin.min.js -------------------------------------------------------------------------------- /dist/rexperlinplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexperlinplugin.js -------------------------------------------------------------------------------- /dist/rexperlinplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexperlinplugin.min.js -------------------------------------------------------------------------------- /dist/rexperspectivecard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexperspectivecard.js -------------------------------------------------------------------------------- /dist/rexpinch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpinch.js -------------------------------------------------------------------------------- /dist/rexpinch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpinch.min.js -------------------------------------------------------------------------------- /dist/rexpinchplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpinchplugin.js -------------------------------------------------------------------------------- /dist/rexpinchplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpinchplugin.min.js -------------------------------------------------------------------------------- /dist/rexpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpress.js -------------------------------------------------------------------------------- /dist/rexpress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpress.min.js -------------------------------------------------------------------------------- /dist/rexpuffspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpuffspinner.js -------------------------------------------------------------------------------- /dist/rexpuffspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexpuffspinner.min.js -------------------------------------------------------------------------------- /dist/rexquadimageplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexquadimageplugin.js -------------------------------------------------------------------------------- /dist/rexquadshapeplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexquadshapeplugin.js -------------------------------------------------------------------------------- /dist/rexquestplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexquestplugin.js -------------------------------------------------------------------------------- /dist/rexquestplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexquestplugin.min.js -------------------------------------------------------------------------------- /dist/rexradiospinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexradiospinner.js -------------------------------------------------------------------------------- /dist/rexradiospinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexradiospinner.min.js -------------------------------------------------------------------------------- /dist/rexraycasterplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexraycasterplugin.js -------------------------------------------------------------------------------- /dist/rexrhombusplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexrhombusplugin.js -------------------------------------------------------------------------------- /dist/rexringsspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexringsspinner.js -------------------------------------------------------------------------------- /dist/rexringsspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexringsspinner.min.js -------------------------------------------------------------------------------- /dist/rexrotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexrotate.js -------------------------------------------------------------------------------- /dist/rexrotate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexrotate.min.js -------------------------------------------------------------------------------- /dist/rexrotateplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexrotateplugin.js -------------------------------------------------------------------------------- /dist/rexrotateplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexrotateplugin.min.js -------------------------------------------------------------------------------- /dist/rexrotatetoplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexrotatetoplugin.js -------------------------------------------------------------------------------- /dist/rexroundrectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexroundrectangle.js -------------------------------------------------------------------------------- /dist/rexscaleouterplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexscaleouterplugin.js -------------------------------------------------------------------------------- /dist/rexscaleplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexscaleplugin.js -------------------------------------------------------------------------------- /dist/rexscaleplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexscaleplugin.min.js -------------------------------------------------------------------------------- /dist/rexscrollablepanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexscrollablepanel.js -------------------------------------------------------------------------------- /dist/rexscrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexscrollbar.js -------------------------------------------------------------------------------- /dist/rexscrollbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexscrollbar.min.js -------------------------------------------------------------------------------- /dist/rexscrollerplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexscrollerplugin.js -------------------------------------------------------------------------------- /dist/rexsequenceplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsequenceplugin.js -------------------------------------------------------------------------------- /dist/rexshipplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexshipplugin.js -------------------------------------------------------------------------------- /dist/rexshipplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexshipplugin.min.js -------------------------------------------------------------------------------- /dist/rexsides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsides.js -------------------------------------------------------------------------------- /dist/rexsides.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsides.min.js -------------------------------------------------------------------------------- /dist/rexsimplelabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsimplelabel.js -------------------------------------------------------------------------------- /dist/rexsimplelabel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsimplelabel.min.js -------------------------------------------------------------------------------- /dist/rexsizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsizer.js -------------------------------------------------------------------------------- /dist/rexsizer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsizer.min.js -------------------------------------------------------------------------------- /dist/rexslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexslider.js -------------------------------------------------------------------------------- /dist/rexslider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexslider.min.js -------------------------------------------------------------------------------- /dist/rexsliderplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsliderplugin.js -------------------------------------------------------------------------------- /dist/rexsliderplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsliderplugin.min.js -------------------------------------------------------------------------------- /dist/rexsoundfadeplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsoundfadeplugin.js -------------------------------------------------------------------------------- /dist/rexspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexspinner.js -------------------------------------------------------------------------------- /dist/rexspinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexspinner.min.js -------------------------------------------------------------------------------- /dist/rexspinnerplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexspinnerplugin.js -------------------------------------------------------------------------------- /dist/rexsplitpanels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsplitpanels.js -------------------------------------------------------------------------------- /dist/rexsplitpanels.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexsplitpanels.min.js -------------------------------------------------------------------------------- /dist/rexstepplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexstepplugin.js -------------------------------------------------------------------------------- /dist/rexstepplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexstepplugin.min.js -------------------------------------------------------------------------------- /dist/rexswipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexswipe.js -------------------------------------------------------------------------------- /dist/rexswipe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexswipe.min.js -------------------------------------------------------------------------------- /dist/rextabpages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextabpages.js -------------------------------------------------------------------------------- /dist/rextabpages.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextabpages.min.js -------------------------------------------------------------------------------- /dist/rextabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextabs.js -------------------------------------------------------------------------------- /dist/rextabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextabs.min.js -------------------------------------------------------------------------------- /dist/rextagplayerplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextagplayerplugin.js -------------------------------------------------------------------------------- /dist/rextagtext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextagtext.js -------------------------------------------------------------------------------- /dist/rextagtext.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextagtext.min.js -------------------------------------------------------------------------------- /dist/rextagtextplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextagtextplugin.js -------------------------------------------------------------------------------- /dist/rextap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextap.js -------------------------------------------------------------------------------- /dist/rextap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextap.min.js -------------------------------------------------------------------------------- /dist/rextcrpplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextcrpplugin.js -------------------------------------------------------------------------------- /dist/rextcrpplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextcrpplugin.min.js -------------------------------------------------------------------------------- /dist/rextextarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextextarea.js -------------------------------------------------------------------------------- /dist/rextextarea.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextextarea.min.js -------------------------------------------------------------------------------- /dist/rextextareainput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextextareainput.js -------------------------------------------------------------------------------- /dist/rextextbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextextbox.js -------------------------------------------------------------------------------- /dist/rextextbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextextbox.min.js -------------------------------------------------------------------------------- /dist/rextexteditplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextexteditplugin.js -------------------------------------------------------------------------------- /dist/rextextpageplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextextpageplugin.js -------------------------------------------------------------------------------- /dist/rextextplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextextplayer.js -------------------------------------------------------------------------------- /dist/rextextplayer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextextplayer.min.js -------------------------------------------------------------------------------- /dist/rextextplayerplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextextplayerplugin.js -------------------------------------------------------------------------------- /dist/rextexttypingplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextexttypingplugin.js -------------------------------------------------------------------------------- /dist/rextintrgbplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextintrgbplugin.js -------------------------------------------------------------------------------- /dist/rextitlelabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextitlelabel.js -------------------------------------------------------------------------------- /dist/rextitlelabel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextitlelabel.min.js -------------------------------------------------------------------------------- /dist/rextoast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextoast.js -------------------------------------------------------------------------------- /dist/rextoast.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextoast.min.js -------------------------------------------------------------------------------- /dist/rextoggleswitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextoggleswitch.js -------------------------------------------------------------------------------- /dist/rextoggleswitch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextoggleswitch.min.js -------------------------------------------------------------------------------- /dist/rextouchstateplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextouchstateplugin.js -------------------------------------------------------------------------------- /dist/rextrees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextrees.js -------------------------------------------------------------------------------- /dist/rextrees.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextrees.min.js -------------------------------------------------------------------------------- /dist/rextriangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextriangle.js -------------------------------------------------------------------------------- /dist/rextriangle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextriangle.min.js -------------------------------------------------------------------------------- /dist/rextweaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextweaker.js -------------------------------------------------------------------------------- /dist/rextweaker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rextweaker.min.js -------------------------------------------------------------------------------- /dist/rexuiplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexuiplugin.js -------------------------------------------------------------------------------- /dist/rexuiplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexuiplugin.min.js -------------------------------------------------------------------------------- /dist/rexxorplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexxorplugin.js -------------------------------------------------------------------------------- /dist/rexxorplugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexxorplugin.min.js -------------------------------------------------------------------------------- /dist/rexyamlscenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/dist/rexyamlscenario.js -------------------------------------------------------------------------------- /docs/docs/anchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/anchor.md -------------------------------------------------------------------------------- /docs/docs/angle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/angle.md -------------------------------------------------------------------------------- /docs/docs/animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/animation.md -------------------------------------------------------------------------------- /docs/docs/arcade-body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/arcade-body.md -------------------------------------------------------------------------------- /docs/docs/array-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/array-sort.md -------------------------------------------------------------------------------- /docs/docs/audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/audio.md -------------------------------------------------------------------------------- /docs/docs/awaitloader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/awaitloader.md -------------------------------------------------------------------------------- /docs/docs/awaytime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/awaytime.md -------------------------------------------------------------------------------- /docs/docs/base64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/base64.md -------------------------------------------------------------------------------- /docs/docs/bbcodetext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/bbcodetext.md -------------------------------------------------------------------------------- /docs/docs/bitmaptext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/bitmaptext.md -------------------------------------------------------------------------------- /docs/docs/bitmapzone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/bitmapzone.md -------------------------------------------------------------------------------- /docs/docs/blendmode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/blendmode.md -------------------------------------------------------------------------------- /docs/docs/blitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/blitter.md -------------------------------------------------------------------------------- /docs/docs/board-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/board-image.md -------------------------------------------------------------------------------- /docs/docs/board-match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/board-match.md -------------------------------------------------------------------------------- /docs/docs/board-shape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/board-shape.md -------------------------------------------------------------------------------- /docs/docs/board.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/board.md -------------------------------------------------------------------------------- /docs/docs/bounds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/bounds.md -------------------------------------------------------------------------------- /docs/docs/buffdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/buffdata.md -------------------------------------------------------------------------------- /docs/docs/bullet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/bullet.md -------------------------------------------------------------------------------- /docs/docs/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/button.md -------------------------------------------------------------------------------- /docs/docs/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/camera.md -------------------------------------------------------------------------------- /docs/docs/canvas-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/canvas-data.md -------------------------------------------------------------------------------- /docs/docs/canvas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/canvas.md -------------------------------------------------------------------------------- /docs/docs/canvasinput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/canvasinput.md -------------------------------------------------------------------------------- /docs/docs/clamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/clamp.md -------------------------------------------------------------------------------- /docs/docs/clock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/clock.md -------------------------------------------------------------------------------- /docs/docs/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/color.md -------------------------------------------------------------------------------- /docs/docs/config-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/config-data.md -------------------------------------------------------------------------------- /docs/docs/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/container.md -------------------------------------------------------------------------------- /docs/docs/csvscenario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/csvscenario.md -------------------------------------------------------------------------------- /docs/docs/csvtoarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/csvtoarray.md -------------------------------------------------------------------------------- /docs/docs/cursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/cursor.md -------------------------------------------------------------------------------- /docs/docs/datamanager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/datamanager.md -------------------------------------------------------------------------------- /docs/docs/date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/date.md -------------------------------------------------------------------------------- /docs/docs/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/device.md -------------------------------------------------------------------------------- /docs/docs/distance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/distance.md -------------------------------------------------------------------------------- /docs/docs/domelement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/domelement.md -------------------------------------------------------------------------------- /docs/docs/drag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/drag.md -------------------------------------------------------------------------------- /docs/docs/dragrotate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/dragrotate.md -------------------------------------------------------------------------------- /docs/docs/dropdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/dropdown.md -------------------------------------------------------------------------------- /docs/docs/dynamictext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/dynamictext.md -------------------------------------------------------------------------------- /docs/docs/easedata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/easedata.md -------------------------------------------------------------------------------- /docs/docs/easemove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/easemove.md -------------------------------------------------------------------------------- /docs/docs/fadevolume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/fadevolume.md -------------------------------------------------------------------------------- /docs/docs/filechooser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/filechooser.md -------------------------------------------------------------------------------- /docs/docs/flash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/flash.md -------------------------------------------------------------------------------- /docs/docs/flip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/flip.md -------------------------------------------------------------------------------- /docs/docs/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/format.md -------------------------------------------------------------------------------- /docs/docs/fsm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/fsm.md -------------------------------------------------------------------------------- /docs/docs/fullscreen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/fullscreen.md -------------------------------------------------------------------------------- /docs/docs/fuzzy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/fuzzy.md -------------------------------------------------------------------------------- /docs/docs/game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/game.md -------------------------------------------------------------------------------- /docs/docs/gameobject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/gameobject.md -------------------------------------------------------------------------------- /docs/docs/gamepad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/gamepad.md -------------------------------------------------------------------------------- /docs/docs/gashapon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/gashapon.md -------------------------------------------------------------------------------- /docs/docs/geom-circle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/geom-circle.md -------------------------------------------------------------------------------- /docs/docs/geom-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/geom-line.md -------------------------------------------------------------------------------- /docs/docs/geom-point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/geom-point.md -------------------------------------------------------------------------------- /docs/docs/gesture-pan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/gesture-pan.md -------------------------------------------------------------------------------- /docs/docs/gesture-tap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/gesture-tap.md -------------------------------------------------------------------------------- /docs/docs/graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/graph.md -------------------------------------------------------------------------------- /docs/docs/graphics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/graphics.md -------------------------------------------------------------------------------- /docs/docs/gridalign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/gridalign.md -------------------------------------------------------------------------------- /docs/docs/gridtable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/gridtable.md -------------------------------------------------------------------------------- /docs/docs/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/group.md -------------------------------------------------------------------------------- /docs/docs/handlebars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/handlebars.md -------------------------------------------------------------------------------- /docs/docs/i18next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/i18next.md -------------------------------------------------------------------------------- /docs/docs/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/image.md -------------------------------------------------------------------------------- /docs/docs/imagebox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/imagebox.md -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/input.md -------------------------------------------------------------------------------- /docs/docs/inputtext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/inputtext.md -------------------------------------------------------------------------------- /docs/docs/intouching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/intouching.md -------------------------------------------------------------------------------- /docs/docs/keyshub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/keyshub.md -------------------------------------------------------------------------------- /docs/docs/layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/layer.md -------------------------------------------------------------------------------- /docs/docs/lifetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/lifetime.md -------------------------------------------------------------------------------- /docs/docs/light.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/light.md -------------------------------------------------------------------------------- /docs/docs/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/line.md -------------------------------------------------------------------------------- /docs/docs/live2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/live2d.md -------------------------------------------------------------------------------- /docs/docs/loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/loader.md -------------------------------------------------------------------------------- /docs/docs/localforage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/localforage.md -------------------------------------------------------------------------------- /docs/docs/lokijs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/lokijs.md -------------------------------------------------------------------------------- /docs/docs/luxon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/luxon.md -------------------------------------------------------------------------------- /docs/docs/lzstring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/lzstring.md -------------------------------------------------------------------------------- /docs/docs/mainloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/mainloop.md -------------------------------------------------------------------------------- /docs/docs/mask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/mask.md -------------------------------------------------------------------------------- /docs/docs/mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/mesh.md -------------------------------------------------------------------------------- /docs/docs/modal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/modal.md -------------------------------------------------------------------------------- /docs/docs/mousewheel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/mousewheel.md -------------------------------------------------------------------------------- /docs/docs/moveto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/moveto.md -------------------------------------------------------------------------------- /docs/docs/mustache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/mustache.md -------------------------------------------------------------------------------- /docs/docs/ninepatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ninepatch.md -------------------------------------------------------------------------------- /docs/docs/ninepatch2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ninepatch2.md -------------------------------------------------------------------------------- /docs/docs/nineslice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/nineslice.md -------------------------------------------------------------------------------- /docs/docs/orientation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/orientation.md -------------------------------------------------------------------------------- /docs/docs/pad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/pad.md -------------------------------------------------------------------------------- /docs/docs/particles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/particles.md -------------------------------------------------------------------------------- /docs/docs/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/path.md -------------------------------------------------------------------------------- /docs/docs/percentage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/percentage.md -------------------------------------------------------------------------------- /docs/docs/perlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/perlin.md -------------------------------------------------------------------------------- /docs/docs/plane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/plane.md -------------------------------------------------------------------------------- /docs/docs/plugin-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/plugin-list.md -------------------------------------------------------------------------------- /docs/docs/point-light.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/point-light.md -------------------------------------------------------------------------------- /docs/docs/popup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/popup.md -------------------------------------------------------------------------------- /docs/docs/quad-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/quad-image.md -------------------------------------------------------------------------------- /docs/docs/quest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/quest.md -------------------------------------------------------------------------------- /docs/docs/random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/random.md -------------------------------------------------------------------------------- /docs/docs/randomplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/randomplace.md -------------------------------------------------------------------------------- /docs/docs/raycaster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/raycaster.md -------------------------------------------------------------------------------- /docs/docs/repeatimage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/repeatimage.md -------------------------------------------------------------------------------- /docs/docs/rexvideo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/rexvideo.md -------------------------------------------------------------------------------- /docs/docs/rope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/rope.md -------------------------------------------------------------------------------- /docs/docs/rotate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/rotate.md -------------------------------------------------------------------------------- /docs/docs/rotateto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/rotateto.md -------------------------------------------------------------------------------- /docs/docs/round-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/round-to.md -------------------------------------------------------------------------------- /docs/docs/runcommands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/runcommands.md -------------------------------------------------------------------------------- /docs/docs/scaleouter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/scaleouter.md -------------------------------------------------------------------------------- /docs/docs/scene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/scene.md -------------------------------------------------------------------------------- /docs/docs/scroller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/scroller.md -------------------------------------------------------------------------------- /docs/docs/sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/sequence.md -------------------------------------------------------------------------------- /docs/docs/shader-crt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/shader-crt.md -------------------------------------------------------------------------------- /docs/docs/shader-warp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/shader-warp.md -------------------------------------------------------------------------------- /docs/docs/shader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/shader.md -------------------------------------------------------------------------------- /docs/docs/shape-arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/shape-arc.md -------------------------------------------------------------------------------- /docs/docs/shape-cover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/shape-cover.md -------------------------------------------------------------------------------- /docs/docs/shape-curve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/shape-curve.md -------------------------------------------------------------------------------- /docs/docs/shape-grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/shape-grid.md -------------------------------------------------------------------------------- /docs/docs/shape-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/shape-line.md -------------------------------------------------------------------------------- /docs/docs/shape-line2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/shape-line2.md -------------------------------------------------------------------------------- /docs/docs/shape-quad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/shape-quad.md -------------------------------------------------------------------------------- /docs/docs/shape-star.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/shape-star.md -------------------------------------------------------------------------------- /docs/docs/ship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ship.md -------------------------------------------------------------------------------- /docs/docs/skew-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/skew-image.md -------------------------------------------------------------------------------- /docs/docs/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/slider.md -------------------------------------------------------------------------------- /docs/docs/snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/snap.md -------------------------------------------------------------------------------- /docs/docs/snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/snapshot.md -------------------------------------------------------------------------------- /docs/docs/sprite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/sprite.md -------------------------------------------------------------------------------- /docs/docs/step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/step.md -------------------------------------------------------------------------------- /docs/docs/structs-set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/structs-set.md -------------------------------------------------------------------------------- /docs/docs/tagplayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/tagplayer.md -------------------------------------------------------------------------------- /docs/docs/tagtext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/tagtext.md -------------------------------------------------------------------------------- /docs/docs/tcrp-player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/tcrp-player.md -------------------------------------------------------------------------------- /docs/docs/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/text.md -------------------------------------------------------------------------------- /docs/docs/textedit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/textedit.md -------------------------------------------------------------------------------- /docs/docs/textpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/textpage.md -------------------------------------------------------------------------------- /docs/docs/textplayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/textplayer.md -------------------------------------------------------------------------------- /docs/docs/texttyping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/texttyping.md -------------------------------------------------------------------------------- /docs/docs/textures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/textures.md -------------------------------------------------------------------------------- /docs/docs/tilemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/tilemap.md -------------------------------------------------------------------------------- /docs/docs/tilesprite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/tilesprite.md -------------------------------------------------------------------------------- /docs/docs/timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/timeline.md -------------------------------------------------------------------------------- /docs/docs/timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/timer.md -------------------------------------------------------------------------------- /docs/docs/tintrgb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/tintrgb.md -------------------------------------------------------------------------------- /docs/docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/tools.md -------------------------------------------------------------------------------- /docs/docs/touchevents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/touchevents.md -------------------------------------------------------------------------------- /docs/docs/touchstate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/touchstate.md -------------------------------------------------------------------------------- /docs/docs/tween.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/tween.md -------------------------------------------------------------------------------- /docs/docs/ui-buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-buttons.md -------------------------------------------------------------------------------- /docs/docs/ui-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-chart.md -------------------------------------------------------------------------------- /docs/docs/ui-dialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-dialog.md -------------------------------------------------------------------------------- /docs/docs/ui-expbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-expbar.md -------------------------------------------------------------------------------- /docs/docs/ui-folder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-folder.md -------------------------------------------------------------------------------- /docs/docs/ui-knob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-knob.md -------------------------------------------------------------------------------- /docs/docs/ui-label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-label.md -------------------------------------------------------------------------------- /docs/docs/ui-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-menu.md -------------------------------------------------------------------------------- /docs/docs/ui-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-overview.md -------------------------------------------------------------------------------- /docs/docs/ui-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-pages.md -------------------------------------------------------------------------------- /docs/docs/ui-sizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-sizer.md -------------------------------------------------------------------------------- /docs/docs/ui-slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-slider.md -------------------------------------------------------------------------------- /docs/docs/ui-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-style.md -------------------------------------------------------------------------------- /docs/docs/ui-tabpages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-tabpages.md -------------------------------------------------------------------------------- /docs/docs/ui-tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-tabs.md -------------------------------------------------------------------------------- /docs/docs/ui-textarea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-textarea.md -------------------------------------------------------------------------------- /docs/docs/ui-textbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-textbox.md -------------------------------------------------------------------------------- /docs/docs/ui-toast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-toast.md -------------------------------------------------------------------------------- /docs/docs/ui-trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-trees.md -------------------------------------------------------------------------------- /docs/docs/ui-tweaker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/ui-tweaker.md -------------------------------------------------------------------------------- /docs/docs/uuid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/uuid.md -------------------------------------------------------------------------------- /docs/docs/vector2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/vector2.md -------------------------------------------------------------------------------- /docs/docs/video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/video.md -------------------------------------------------------------------------------- /docs/docs/waitevents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/waitevents.md -------------------------------------------------------------------------------- /docs/docs/wrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/wrap.md -------------------------------------------------------------------------------- /docs/docs/xor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/xor.md -------------------------------------------------------------------------------- /docs/docs/zone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/docs/zone.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/serve.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/serve.bat -------------------------------------------------------------------------------- /docs/site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/site/404.html -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /docs/site/fsm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/site/fsm/index.html -------------------------------------------------------------------------------- /docs/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/site/index.html -------------------------------------------------------------------------------- /docs/site/pad/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/site/pad/index.html -------------------------------------------------------------------------------- /docs/site/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/site/sitemap.xml -------------------------------------------------------------------------------- /docs/site/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/site/sitemap.xml.gz -------------------------------------------------------------------------------- /docs/site/xor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/docs/site/xor/index.html -------------------------------------------------------------------------------- /docs/upgrade.bat: -------------------------------------------------------------------------------- 1 | pip install --upgrade mkdocs-material -------------------------------------------------------------------------------- /examples/board/road.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/board/road.bat -------------------------------------------------------------------------------- /examples/board/road.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/board/road.js -------------------------------------------------------------------------------- /examples/boids/boids.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/boids/boids.bat -------------------------------------------------------------------------------- /examples/boids/boids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/boids/boids.js -------------------------------------------------------------------------------- /examples/bounds/wrap.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/bounds/wrap.bat -------------------------------------------------------------------------------- /examples/bounds/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/bounds/wrap.js -------------------------------------------------------------------------------- /examples/clock/clock.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/clock/clock.bat -------------------------------------------------------------------------------- /examples/clock/clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/clock/clock.js -------------------------------------------------------------------------------- /examples/cover/cover.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/cover/cover.bat -------------------------------------------------------------------------------- /examples/cover/cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/cover/cover.js -------------------------------------------------------------------------------- /examples/diff/chars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/diff/chars.bat -------------------------------------------------------------------------------- /examples/diff/chars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/diff/chars.js -------------------------------------------------------------------------------- /examples/drag/dragend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/drag/dragend.js -------------------------------------------------------------------------------- /examples/flash/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/flash/flash.bat -------------------------------------------------------------------------------- /examples/flash/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/flash/flash.js -------------------------------------------------------------------------------- /examples/fsm/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/fsm/update.bat -------------------------------------------------------------------------------- /examples/fsm/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/fsm/update.js -------------------------------------------------------------------------------- /examples/fuzzy/gui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/fuzzy/gui.bat -------------------------------------------------------------------------------- /examples/fuzzy/gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/fuzzy/gui.js -------------------------------------------------------------------------------- /examples/fx/barrel.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/fx/barrel.bat -------------------------------------------------------------------------------- /examples/fx/barrel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/fx/barrel.js -------------------------------------------------------------------------------- /examples/fx/custom-fx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/fx/custom-fx.js -------------------------------------------------------------------------------- /examples/fx/mask-fx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/fx/mask-fx.bat -------------------------------------------------------------------------------- /examples/fx/mask-fx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/fx/mask-fx.js -------------------------------------------------------------------------------- /examples/fx/remove-fx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/fx/remove-fx.js -------------------------------------------------------------------------------- /examples/gamepad/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/gamepad/test.js -------------------------------------------------------------------------------- /examples/gashapon/rnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/gashapon/rnd.js -------------------------------------------------------------------------------- /examples/howler/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/howler/test.bat -------------------------------------------------------------------------------- /examples/howler/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/howler/test.js -------------------------------------------------------------------------------- /examples/i18next/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/i18next/test.js -------------------------------------------------------------------------------- /examples/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/index.tmpl -------------------------------------------------------------------------------- /examples/line/line.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/line/line.bat -------------------------------------------------------------------------------- /examples/line/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/line/line.js -------------------------------------------------------------------------------- /examples/loader/pack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/loader/pack.bat -------------------------------------------------------------------------------- /examples/loader/pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/loader/pack.js -------------------------------------------------------------------------------- /examples/lokijs/map.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/lokijs/map.bat -------------------------------------------------------------------------------- /examples/lokijs/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/lokijs/map.js -------------------------------------------------------------------------------- /examples/lokijs/sort.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/lokijs/sort.bat -------------------------------------------------------------------------------- /examples/lokijs/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/lokijs/sort.js -------------------------------------------------------------------------------- /examples/mask/scale.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/mask/scale.bat -------------------------------------------------------------------------------- /examples/mask/scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/mask/scale.js -------------------------------------------------------------------------------- /examples/mask/shape.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/mask/shape.bat -------------------------------------------------------------------------------- /examples/mask/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/mask/shape.js -------------------------------------------------------------------------------- /examples/modal/manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/modal/manual.js -------------------------------------------------------------------------------- /examples/quest/branch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/quest/branch.js -------------------------------------------------------------------------------- /examples/scale/yoyo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/scale/yoyo.bat -------------------------------------------------------------------------------- /examples/scale/yoyo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/scale/yoyo.js -------------------------------------------------------------------------------- /examples/ship/ship.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/ship/ship.bat -------------------------------------------------------------------------------- /examples/ship/ship.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/ship/ship.js -------------------------------------------------------------------------------- /examples/spinner/aio.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/spinner/aio.bat -------------------------------------------------------------------------------- /examples/spinner/aio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/spinner/aio.js -------------------------------------------------------------------------------- /examples/spinner/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/spinner/test.js -------------------------------------------------------------------------------- /examples/step/step.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/step/step.bat -------------------------------------------------------------------------------- /examples/step/step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/step/step.js -------------------------------------------------------------------------------- /examples/tagtext/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/tagtext/wrap.js -------------------------------------------------------------------------------- /examples/tcrp/player.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/tcrp/player.bat -------------------------------------------------------------------------------- /examples/tcrp/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/tcrp/player.js -------------------------------------------------------------------------------- /examples/test/test-ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/test/test-ts.ts -------------------------------------------------------------------------------- /examples/test/test-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/test/test-ui.js -------------------------------------------------------------------------------- /examples/test/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/test/test.bat -------------------------------------------------------------------------------- /examples/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/test/test.js -------------------------------------------------------------------------------- /examples/textedit/rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/textedit/rtl.js -------------------------------------------------------------------------------- /examples/tintrgb/fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/tintrgb/fade.js -------------------------------------------------------------------------------- /examples/tween/sine.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/tween/sine.bat -------------------------------------------------------------------------------- /examples/tween/sine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/tween/sine.js -------------------------------------------------------------------------------- /examples/ui-flip/flip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/ui-flip/flip.js -------------------------------------------------------------------------------- /examples/ui-knob/knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/ui-knob/knob.js -------------------------------------------------------------------------------- /examples/ui-sizer/rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/ui-sizer/rtl.js -------------------------------------------------------------------------------- /examples/ui-skew/skew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/ui-skew/skew.js -------------------------------------------------------------------------------- /examples/ui-tabs/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/ui-tabs/tabs.js -------------------------------------------------------------------------------- /examples/xor/xor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/xor/xor.bat -------------------------------------------------------------------------------- /examples/xor/xor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/xor/xor.js -------------------------------------------------------------------------------- /examples/yaml/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/yaml/test.bat -------------------------------------------------------------------------------- /examples/yaml/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/examples/yaml/test.js -------------------------------------------------------------------------------- /export-plugins.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/export-plugins.bat -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/install.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/package.json -------------------------------------------------------------------------------- /plugin-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugin-list.js -------------------------------------------------------------------------------- /plugins/achievements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/achievements.js -------------------------------------------------------------------------------- /plugins/anchor-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/anchor-plugin.js -------------------------------------------------------------------------------- /plugins/anchor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/anchor.d.ts -------------------------------------------------------------------------------- /plugins/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/anchor.js -------------------------------------------------------------------------------- /plugins/arcadetcrp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/arcadetcrp.d.ts -------------------------------------------------------------------------------- /plugins/arcadetcrp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/arcadetcrp.js -------------------------------------------------------------------------------- /plugins/audio/midiplayer/Track.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/awaitloader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/awaitloader.d.ts -------------------------------------------------------------------------------- /plugins/awaitloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/awaitloader.js -------------------------------------------------------------------------------- /plugins/awaytime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/awaytime.d.ts -------------------------------------------------------------------------------- /plugins/awaytime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/awaytime.js -------------------------------------------------------------------------------- /plugins/bank-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bank-plugin.js -------------------------------------------------------------------------------- /plugins/bank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bank.js -------------------------------------------------------------------------------- /plugins/bbcodelog.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bbcodelog.d.ts -------------------------------------------------------------------------------- /plugins/bbcodelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bbcodelog.js -------------------------------------------------------------------------------- /plugins/bbcodetext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bbcodetext.d.ts -------------------------------------------------------------------------------- /plugins/bbcodetext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bbcodetext.js -------------------------------------------------------------------------------- /plugins/bitmapzone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bitmapzone.d.ts -------------------------------------------------------------------------------- /plugins/bitmapzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bitmapzone.js -------------------------------------------------------------------------------- /plugins/blitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/blitter.js -------------------------------------------------------------------------------- /plugins/board-logic.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/board-logic.d.ts -------------------------------------------------------------------------------- /plugins/board-logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/board-logic.js -------------------------------------------------------------------------------- /plugins/board-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/board-plugin.js -------------------------------------------------------------------------------- /plugins/boids-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/boids-plugin.js -------------------------------------------------------------------------------- /plugins/boids.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/boids.d.ts -------------------------------------------------------------------------------- /plugins/boids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/boids.js -------------------------------------------------------------------------------- /plugins/bounds-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bounds-plugin.js -------------------------------------------------------------------------------- /plugins/bounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bounds.js -------------------------------------------------------------------------------- /plugins/bracketparser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bracketparser.js -------------------------------------------------------------------------------- /plugins/buffdata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/buffdata.d.ts -------------------------------------------------------------------------------- /plugins/buffdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/buffdata.js -------------------------------------------------------------------------------- /plugins/bullet-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bullet-plugin.js -------------------------------------------------------------------------------- /plugins/bullet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bullet.d.ts -------------------------------------------------------------------------------- /plugins/bullet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/bullet.js -------------------------------------------------------------------------------- /plugins/button-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/button-plugin.js -------------------------------------------------------------------------------- /plugins/button.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/button.d.ts -------------------------------------------------------------------------------- /plugins/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/button.js -------------------------------------------------------------------------------- /plugins/canvas-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/canvas-plugin.js -------------------------------------------------------------------------------- /plugins/canvas.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/canvas.d.ts -------------------------------------------------------------------------------- /plugins/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/canvas.js -------------------------------------------------------------------------------- /plugins/canvasdata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/canvasdata.d.ts -------------------------------------------------------------------------------- /plugins/canvasdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/canvasdata.js -------------------------------------------------------------------------------- /plugins/canvasinput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/canvasinput.d.ts -------------------------------------------------------------------------------- /plugins/canvasinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/canvasinput.js -------------------------------------------------------------------------------- /plugins/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/carousel.js -------------------------------------------------------------------------------- /plugins/checkbox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/checkbox.d.ts -------------------------------------------------------------------------------- /plugins/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/checkbox.js -------------------------------------------------------------------------------- /plugins/checkboxshape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/checkboxshape.js -------------------------------------------------------------------------------- /plugins/clickoutside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/clickoutside.js -------------------------------------------------------------------------------- /plugins/clock-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/clock-plugin.js -------------------------------------------------------------------------------- /plugins/clock.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/clock.d.ts -------------------------------------------------------------------------------- /plugins/clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/clock.js -------------------------------------------------------------------------------- /plugins/containerlite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/containerlite.js -------------------------------------------------------------------------------- /plugins/cover-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/cover-plugin.js -------------------------------------------------------------------------------- /plugins/cover.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/cover.d.ts -------------------------------------------------------------------------------- /plugins/cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/cover.js -------------------------------------------------------------------------------- /plugins/crtpipeline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/crtpipeline.d.ts -------------------------------------------------------------------------------- /plugins/crtpipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/crtpipeline.js -------------------------------------------------------------------------------- /plugins/csvscenario.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/csvscenario.d.ts -------------------------------------------------------------------------------- /plugins/csvscenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/csvscenario.js -------------------------------------------------------------------------------- /plugins/csvtoarray.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/csvtoarray.d.ts -------------------------------------------------------------------------------- /plugins/csvtoarray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/csvtoarray.js -------------------------------------------------------------------------------- /plugins/customshapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/customshapes.js -------------------------------------------------------------------------------- /plugins/datamonitor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/datamonitor.d.ts -------------------------------------------------------------------------------- /plugins/datamonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/datamonitor.js -------------------------------------------------------------------------------- /plugins/drag-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/drag-plugin.d.ts -------------------------------------------------------------------------------- /plugins/drag-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/drag-plugin.js -------------------------------------------------------------------------------- /plugins/drag.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/drag.d.ts -------------------------------------------------------------------------------- /plugins/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/drag.js -------------------------------------------------------------------------------- /plugins/dragrotate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/dragrotate.d.ts -------------------------------------------------------------------------------- /plugins/dragrotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/dragrotate.js -------------------------------------------------------------------------------- /plugins/dragspeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/dragspeed.js -------------------------------------------------------------------------------- /plugins/dropdown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/dropdown.d.ts -------------------------------------------------------------------------------- /plugins/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/dropdown.js -------------------------------------------------------------------------------- /plugins/dynamictext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/dynamictext.d.ts -------------------------------------------------------------------------------- /plugins/dynamictext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/dynamictext.js -------------------------------------------------------------------------------- /plugins/easedata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/easedata.d.ts -------------------------------------------------------------------------------- /plugins/easedata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/easedata.js -------------------------------------------------------------------------------- /plugins/easemove.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/easemove.d.ts -------------------------------------------------------------------------------- /plugins/easemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/easemove.js -------------------------------------------------------------------------------- /plugins/effectlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/effectlayer.js -------------------------------------------------------------------------------- /plugins/eventpromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/eventpromise.js -------------------------------------------------------------------------------- /plugins/fade-in.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fade-in.d.ts -------------------------------------------------------------------------------- /plugins/fade-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fade-in.js -------------------------------------------------------------------------------- /plugins/fade-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fade-plugin.d.ts -------------------------------------------------------------------------------- /plugins/fade-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fade-plugin.js -------------------------------------------------------------------------------- /plugins/fade.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fade.d.ts -------------------------------------------------------------------------------- /plugins/fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fade.js -------------------------------------------------------------------------------- /plugins/filechooser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/filechooser.d.ts -------------------------------------------------------------------------------- /plugins/filechooser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/filechooser.js -------------------------------------------------------------------------------- /plugins/filedropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/filedropzone.js -------------------------------------------------------------------------------- /plugins/firebase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/firebase.d.ts -------------------------------------------------------------------------------- /plugins/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/firebase.js -------------------------------------------------------------------------------- /plugins/flash-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/flash-plugin.js -------------------------------------------------------------------------------- /plugins/flash.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/flash.d.ts -------------------------------------------------------------------------------- /plugins/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/flash.js -------------------------------------------------------------------------------- /plugins/flip-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/flip-plugin.d.ts -------------------------------------------------------------------------------- /plugins/flip-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/flip-plugin.js -------------------------------------------------------------------------------- /plugins/flip.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/flip.d.ts -------------------------------------------------------------------------------- /plugins/flip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/flip.js -------------------------------------------------------------------------------- /plugins/framemanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/framemanager.js -------------------------------------------------------------------------------- /plugins/fsm-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fsm-plugin.d.ts -------------------------------------------------------------------------------- /plugins/fsm-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fsm-plugin.js -------------------------------------------------------------------------------- /plugins/fsm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fsm.d.ts -------------------------------------------------------------------------------- /plugins/fsm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fsm.js -------------------------------------------------------------------------------- /plugins/fuzzy-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fuzzy-plugin.js -------------------------------------------------------------------------------- /plugins/fuzzy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fuzzy.d.ts -------------------------------------------------------------------------------- /plugins/fuzzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/fuzzy.js -------------------------------------------------------------------------------- /plugins/gashapon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/gashapon.d.ts -------------------------------------------------------------------------------- /plugins/gashapon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/gashapon.js -------------------------------------------------------------------------------- /plugins/gestures.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/gestures.d.ts -------------------------------------------------------------------------------- /plugins/gestures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/gestures.js -------------------------------------------------------------------------------- /plugins/graph-logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/graph-logic.js -------------------------------------------------------------------------------- /plugins/graph-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/graph-plugin.js -------------------------------------------------------------------------------- /plugins/graph/buildgraphfromtext/flowparser/export-parser.bat: -------------------------------------------------------------------------------- 1 | node export.js -------------------------------------------------------------------------------- /plugins/gridalign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/gridalign.js -------------------------------------------------------------------------------- /plugins/gridcutimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/gridcutimage.js -------------------------------------------------------------------------------- /plugins/gridtable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/gridtable.d.ts -------------------------------------------------------------------------------- /plugins/gridtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/gridtable.js -------------------------------------------------------------------------------- /plugins/hexagon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/hexagon.js -------------------------------------------------------------------------------- /plugins/imagebox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/imagebox.d.ts -------------------------------------------------------------------------------- /plugins/imagebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/imagebox.js -------------------------------------------------------------------------------- /plugins/inputtext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/inputtext.d.ts -------------------------------------------------------------------------------- /plugins/inputtext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/inputtext.js -------------------------------------------------------------------------------- /plugins/interception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/interception.js -------------------------------------------------------------------------------- /plugins/intouching.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/intouching.d.ts -------------------------------------------------------------------------------- /plugins/intouching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/intouching.js -------------------------------------------------------------------------------- /plugins/keyshub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/keyshub.js -------------------------------------------------------------------------------- /plugins/layermanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/layermanager.js -------------------------------------------------------------------------------- /plugins/levelcounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/levelcounter.js -------------------------------------------------------------------------------- /plugins/lifetime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/lifetime.d.ts -------------------------------------------------------------------------------- /plugins/lifetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/lifetime.js -------------------------------------------------------------------------------- /plugins/line-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/line-plugin.d.ts -------------------------------------------------------------------------------- /plugins/line-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/line-plugin.js -------------------------------------------------------------------------------- /plugins/line.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/line.d.ts -------------------------------------------------------------------------------- /plugins/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/line.js -------------------------------------------------------------------------------- /plugins/lineprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/lineprogress.js -------------------------------------------------------------------------------- /plugins/lineshape.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/lineshape.d.ts -------------------------------------------------------------------------------- /plugins/lineshape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/lineshape.js -------------------------------------------------------------------------------- /plugins/live2d-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/live2d-plugin.js -------------------------------------------------------------------------------- /plugins/live2d.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/live2d.d.ts -------------------------------------------------------------------------------- /plugins/live2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/live2d.js -------------------------------------------------------------------------------- /plugins/localmask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/localmask.js -------------------------------------------------------------------------------- /plugins/logic/fsm/FSM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/logic/fsm/FSM.js -------------------------------------------------------------------------------- /plugins/loopinticks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/loopinticks.js -------------------------------------------------------------------------------- /plugins/lzstring.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/lzstring.d.ts -------------------------------------------------------------------------------- /plugins/lzstring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/lzstring.js -------------------------------------------------------------------------------- /plugins/math/expressionparser/parser/export-parser.bat: -------------------------------------------------------------------------------- 1 | node export.js -------------------------------------------------------------------------------- /plugins/math/fuzzy/utils/parser/export-parser.bat: -------------------------------------------------------------------------------- 1 | node export.js -------------------------------------------------------------------------------- /plugins/modal-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/modal-plugin.js -------------------------------------------------------------------------------- /plugins/modal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/modal.d.ts -------------------------------------------------------------------------------- /plugins/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/modal.js -------------------------------------------------------------------------------- /plugins/moveto-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/moveto-plugin.js -------------------------------------------------------------------------------- /plugins/moveto.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/moveto.d.ts -------------------------------------------------------------------------------- /plugins/moveto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/moveto.js -------------------------------------------------------------------------------- /plugins/ninepatch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/ninepatch.d.ts -------------------------------------------------------------------------------- /plugins/ninepatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/ninepatch.js -------------------------------------------------------------------------------- /plugins/ninepatch2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/ninepatch2.d.ts -------------------------------------------------------------------------------- /plugins/ninepatch2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/ninepatch2.js -------------------------------------------------------------------------------- /plugins/objectpool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/objectpool.js -------------------------------------------------------------------------------- /plugins/parse-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/parse-plugin.js -------------------------------------------------------------------------------- /plugins/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/parse.js -------------------------------------------------------------------------------- /plugins/pathfollower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/pathfollower.js -------------------------------------------------------------------------------- /plugins/perlin-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/perlin-plugin.js -------------------------------------------------------------------------------- /plugins/perlin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/perlin.d.ts -------------------------------------------------------------------------------- /plugins/perlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/perlin.js -------------------------------------------------------------------------------- /plugins/pinch-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/pinch-plugin.js -------------------------------------------------------------------------------- /plugins/pinch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/pinch.js -------------------------------------------------------------------------------- /plugins/pngappender.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/pngappender.d.ts -------------------------------------------------------------------------------- /plugins/pngappender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/pngappender.js -------------------------------------------------------------------------------- /plugins/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/pool.js -------------------------------------------------------------------------------- /plugins/popup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/popup.d.ts -------------------------------------------------------------------------------- /plugins/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/popup.js -------------------------------------------------------------------------------- /plugins/quadimage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/quadimage.d.ts -------------------------------------------------------------------------------- /plugins/quadimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/quadimage.js -------------------------------------------------------------------------------- /plugins/quadshape.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/quadshape.d.ts -------------------------------------------------------------------------------- /plugins/quadshape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/quadshape.js -------------------------------------------------------------------------------- /plugins/quest-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/quest-plugin.js -------------------------------------------------------------------------------- /plugins/quest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/quest.d.ts -------------------------------------------------------------------------------- /plugins/quest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/quest.js -------------------------------------------------------------------------------- /plugins/randomplace.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/randomplace.d.ts -------------------------------------------------------------------------------- /plugins/randomplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/randomplace.js -------------------------------------------------------------------------------- /plugins/raycaster.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/raycaster.d.ts -------------------------------------------------------------------------------- /plugins/raycaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/raycaster.js -------------------------------------------------------------------------------- /plugins/repeatimage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/repeatimage.d.ts -------------------------------------------------------------------------------- /plugins/repeatimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/repeatimage.js -------------------------------------------------------------------------------- /plugins/requestdrag.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/requestdrag.d.ts -------------------------------------------------------------------------------- /plugins/requestdrag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/requestdrag.js -------------------------------------------------------------------------------- /plugins/rhombus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/rhombus.js -------------------------------------------------------------------------------- /plugins/rotate-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/rotate-plugin.js -------------------------------------------------------------------------------- /plugins/rotate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/rotate.d.ts -------------------------------------------------------------------------------- /plugins/rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/rotate.js -------------------------------------------------------------------------------- /plugins/rotateto.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/rotateto.d.ts -------------------------------------------------------------------------------- /plugins/rotateto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/rotateto.js -------------------------------------------------------------------------------- /plugins/runcommands.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/runcommands.d.ts -------------------------------------------------------------------------------- /plugins/runcommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/runcommands.js -------------------------------------------------------------------------------- /plugins/scale-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/scale-plugin.js -------------------------------------------------------------------------------- /plugins/scale.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/scale.d.ts -------------------------------------------------------------------------------- /plugins/scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/scale.js -------------------------------------------------------------------------------- /plugins/scaleouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/scaleouter.d.ts -------------------------------------------------------------------------------- /plugins/scaleouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/scaleouter.js -------------------------------------------------------------------------------- /plugins/scroller.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/scroller.d.ts -------------------------------------------------------------------------------- /plugins/scroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/scroller.js -------------------------------------------------------------------------------- /plugins/sequence.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/sequence.d.ts -------------------------------------------------------------------------------- /plugins/sequence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/sequence.js -------------------------------------------------------------------------------- /plugins/shakeposition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/shakeposition.js -------------------------------------------------------------------------------- /plugins/shatterimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/shatterimage.js -------------------------------------------------------------------------------- /plugins/ship-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/ship-plugin.d.ts -------------------------------------------------------------------------------- /plugins/ship-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/ship-plugin.js -------------------------------------------------------------------------------- /plugins/ship.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/ship.d.ts -------------------------------------------------------------------------------- /plugins/ship.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/ship.js -------------------------------------------------------------------------------- /plugins/slider-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/slider-plugin.js -------------------------------------------------------------------------------- /plugins/slider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/slider.d.ts -------------------------------------------------------------------------------- /plugins/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/slider.js -------------------------------------------------------------------------------- /plugins/soundfade.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/soundfade.d.ts -------------------------------------------------------------------------------- /plugins/soundfade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/soundfade.js -------------------------------------------------------------------------------- /plugins/spiralcurve.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/spiralcurve.d.ts -------------------------------------------------------------------------------- /plugins/spiralcurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/spiralcurve.js -------------------------------------------------------------------------------- /plugins/splitpipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/splitpipeline.js -------------------------------------------------------------------------------- /plugins/statemanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/statemanager.js -------------------------------------------------------------------------------- /plugins/step-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/step-plugin.d.ts -------------------------------------------------------------------------------- /plugins/step-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/step-plugin.js -------------------------------------------------------------------------------- /plugins/step.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/step.d.ts -------------------------------------------------------------------------------- /plugins/step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/step.js -------------------------------------------------------------------------------- /plugins/swirlpipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/swirlpipeline.js -------------------------------------------------------------------------------- /plugins/tagplayer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/tagplayer.d.ts -------------------------------------------------------------------------------- /plugins/tagplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/tagplayer.js -------------------------------------------------------------------------------- /plugins/tagtext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/tagtext.d.ts -------------------------------------------------------------------------------- /plugins/tagtext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/tagtext.js -------------------------------------------------------------------------------- /plugins/tcrp-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/tcrp-plugin.d.ts -------------------------------------------------------------------------------- /plugins/tcrp-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/tcrp-plugin.js -------------------------------------------------------------------------------- /plugins/tcrp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/tcrp.d.ts -------------------------------------------------------------------------------- /plugins/tcrp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/tcrp.js -------------------------------------------------------------------------------- /plugins/textedit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/textedit.d.ts -------------------------------------------------------------------------------- /plugins/textedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/textedit.js -------------------------------------------------------------------------------- /plugins/textpage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/textpage.d.ts -------------------------------------------------------------------------------- /plugins/textpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/textpage.js -------------------------------------------------------------------------------- /plugins/textplayer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/textplayer.d.ts -------------------------------------------------------------------------------- /plugins/textplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/textplayer.js -------------------------------------------------------------------------------- /plugins/texttruncator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/texttruncator.js -------------------------------------------------------------------------------- /plugins/texttyping.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/texttyping.d.ts -------------------------------------------------------------------------------- /plugins/texttyping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/texttyping.js -------------------------------------------------------------------------------- /plugins/texture/charactercache/Const.js: -------------------------------------------------------------------------------- 1 | export const CacheName = 'charactercache'; -------------------------------------------------------------------------------- /plugins/tintrgb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/tintrgb.d.ts -------------------------------------------------------------------------------- /plugins/tintrgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/tintrgb.js -------------------------------------------------------------------------------- /plugins/toggleswitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/toggleswitch.js -------------------------------------------------------------------------------- /plugins/touchcursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/touchcursor.js -------------------------------------------------------------------------------- /plugins/touchstate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/touchstate.d.ts -------------------------------------------------------------------------------- /plugins/touchstate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/touchstate.js -------------------------------------------------------------------------------- /plugins/triangle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/triangle.d.ts -------------------------------------------------------------------------------- /plugins/triangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/triangle.js -------------------------------------------------------------------------------- /plugins/video-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/video-plugin.js -------------------------------------------------------------------------------- /plugins/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/video.js -------------------------------------------------------------------------------- /plugins/waitevents.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/waitevents.d.ts -------------------------------------------------------------------------------- /plugins/waitevents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/waitevents.js -------------------------------------------------------------------------------- /plugins/warppipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/warppipeline.js -------------------------------------------------------------------------------- /plugins/webfontloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/webfontloader.js -------------------------------------------------------------------------------- /plugins/xor-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/xor-plugin.d.ts -------------------------------------------------------------------------------- /plugins/xor-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/xor-plugin.js -------------------------------------------------------------------------------- /plugins/xor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/xor.d.ts -------------------------------------------------------------------------------- /plugins/xor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/xor.js -------------------------------------------------------------------------------- /plugins/youtubeplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/plugins/youtubeplayer.js -------------------------------------------------------------------------------- /publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/publish.bat -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /standalone-docs/site/assets/javascripts/lunr/lunr.jp.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /templates/ui/pan/Pan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/templates/ui/pan/Pan.js -------------------------------------------------------------------------------- /templates/ui/tap/Tap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/templates/ui/tap/Tap.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/update.bat -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexrainbow/phaser3-rex-notes/HEAD/webpack.config.js --------------------------------------------------------------------------------