├── .gitattributes ├── .github └── workflows │ └── mkdocs.yml ├── .gitignore ├── Pipfile ├── Pipfile.lock ├── README.md ├── deploy.bat ├── docs ├── CNAME ├── atom.md ├── backgrounds.md ├── base.md ├── behavior │ ├── assetbundle.md │ ├── book.md │ ├── browser.md │ ├── clock.md │ ├── container.md │ ├── counter.md │ ├── layoutzone.md │ ├── rpgfigurine.md │ └── texttool.md ├── built-in-object.md ├── color.md ├── components │ ├── component.md │ ├── examples.md │ ├── gameobject.md │ ├── introduction.md │ └── material.md ├── css │ ├── i_icons.css │ ├── player_color_table.css │ ├── table.css │ ├── theme.css │ └── type_icons.css ├── custom-game-objects.md ├── events.md ├── externaleditorapi.md ├── grid.md ├── hands.md ├── img │ ├── Icon-Dice.png │ ├── TSIcon.png │ ├── atom │ │ ├── autocomplete.png │ │ ├── install.png │ │ ├── logo.png │ │ ├── pipes.PNG │ │ ├── sap1.png │ │ ├── sap2.png │ │ ├── setup.PNG │ │ └── syntax.png │ ├── intro.gif │ ├── overview1.png │ ├── overview2.png │ ├── pawn.png │ └── pawn_outlined.png ├── index.md ├── info.md ├── intro.md ├── json.md ├── lighting.md ├── lua-in-tabletop-simulator.md ├── musicplayer.md ├── notes.md ├── object.md ├── overview.md ├── physics.md ├── player │ ├── colors.md │ ├── instance.md │ └── manager.md ├── systemconsole.md ├── tables.md ├── time.md ├── timer.md ├── turns.md ├── types.md ├── ui.md ├── ui │ ├── attributes.md │ ├── basicelements.md │ ├── defaults.md │ ├── image_inprogress │ ├── inputelements.md │ ├── introUI.md │ └── layoutgrouping.md ├── vector.md ├── vr.md ├── wait.md └── webrequest │ ├── instance.md │ └── manager.md ├── mkdocs.yml ├── process_anchors.py ├── serve.bat ├── serve.py └── theme ├── icons └── i.svg ├── main.html └── partials ├── footer.html └── nav.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/.github/workflows/mkdocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | site/ 2 | mkdocs/ 3 | .idea/ 4 | -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/README.md -------------------------------------------------------------------------------- /deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/deploy.bat -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | api.tabletopsimulator.com -------------------------------------------------------------------------------- /docs/atom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/atom.md -------------------------------------------------------------------------------- /docs/backgrounds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/backgrounds.md -------------------------------------------------------------------------------- /docs/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/base.md -------------------------------------------------------------------------------- /docs/behavior/assetbundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/behavior/assetbundle.md -------------------------------------------------------------------------------- /docs/behavior/book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/behavior/book.md -------------------------------------------------------------------------------- /docs/behavior/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/behavior/browser.md -------------------------------------------------------------------------------- /docs/behavior/clock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/behavior/clock.md -------------------------------------------------------------------------------- /docs/behavior/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/behavior/container.md -------------------------------------------------------------------------------- /docs/behavior/counter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/behavior/counter.md -------------------------------------------------------------------------------- /docs/behavior/layoutzone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/behavior/layoutzone.md -------------------------------------------------------------------------------- /docs/behavior/rpgfigurine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/behavior/rpgfigurine.md -------------------------------------------------------------------------------- /docs/behavior/texttool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/behavior/texttool.md -------------------------------------------------------------------------------- /docs/built-in-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/built-in-object.md -------------------------------------------------------------------------------- /docs/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/color.md -------------------------------------------------------------------------------- /docs/components/component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/components/component.md -------------------------------------------------------------------------------- /docs/components/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/components/examples.md -------------------------------------------------------------------------------- /docs/components/gameobject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/components/gameobject.md -------------------------------------------------------------------------------- /docs/components/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/components/introduction.md -------------------------------------------------------------------------------- /docs/components/material.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/components/material.md -------------------------------------------------------------------------------- /docs/css/i_icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/css/i_icons.css -------------------------------------------------------------------------------- /docs/css/player_color_table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/css/player_color_table.css -------------------------------------------------------------------------------- /docs/css/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/css/table.css -------------------------------------------------------------------------------- /docs/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/css/theme.css -------------------------------------------------------------------------------- /docs/css/type_icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/css/type_icons.css -------------------------------------------------------------------------------- /docs/custom-game-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/custom-game-objects.md -------------------------------------------------------------------------------- /docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/events.md -------------------------------------------------------------------------------- /docs/externaleditorapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/externaleditorapi.md -------------------------------------------------------------------------------- /docs/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/grid.md -------------------------------------------------------------------------------- /docs/hands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/hands.md -------------------------------------------------------------------------------- /docs/img/Icon-Dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/Icon-Dice.png -------------------------------------------------------------------------------- /docs/img/TSIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/TSIcon.png -------------------------------------------------------------------------------- /docs/img/atom/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/atom/autocomplete.png -------------------------------------------------------------------------------- /docs/img/atom/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/atom/install.png -------------------------------------------------------------------------------- /docs/img/atom/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/atom/logo.png -------------------------------------------------------------------------------- /docs/img/atom/pipes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/atom/pipes.PNG -------------------------------------------------------------------------------- /docs/img/atom/sap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/atom/sap1.png -------------------------------------------------------------------------------- /docs/img/atom/sap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/atom/sap2.png -------------------------------------------------------------------------------- /docs/img/atom/setup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/atom/setup.PNG -------------------------------------------------------------------------------- /docs/img/atom/syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/atom/syntax.png -------------------------------------------------------------------------------- /docs/img/intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/intro.gif -------------------------------------------------------------------------------- /docs/img/overview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/overview1.png -------------------------------------------------------------------------------- /docs/img/overview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/overview2.png -------------------------------------------------------------------------------- /docs/img/pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/pawn.png -------------------------------------------------------------------------------- /docs/img/pawn_outlined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/img/pawn_outlined.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/info.md -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/json.md -------------------------------------------------------------------------------- /docs/lighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/lighting.md -------------------------------------------------------------------------------- /docs/lua-in-tabletop-simulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/lua-in-tabletop-simulator.md -------------------------------------------------------------------------------- /docs/musicplayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/musicplayer.md -------------------------------------------------------------------------------- /docs/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/notes.md -------------------------------------------------------------------------------- /docs/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/object.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/physics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/physics.md -------------------------------------------------------------------------------- /docs/player/colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/player/colors.md -------------------------------------------------------------------------------- /docs/player/instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/player/instance.md -------------------------------------------------------------------------------- /docs/player/manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/player/manager.md -------------------------------------------------------------------------------- /docs/systemconsole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/systemconsole.md -------------------------------------------------------------------------------- /docs/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/tables.md -------------------------------------------------------------------------------- /docs/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/time.md -------------------------------------------------------------------------------- /docs/timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/timer.md -------------------------------------------------------------------------------- /docs/turns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/turns.md -------------------------------------------------------------------------------- /docs/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/types.md -------------------------------------------------------------------------------- /docs/ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/ui.md -------------------------------------------------------------------------------- /docs/ui/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/ui/attributes.md -------------------------------------------------------------------------------- /docs/ui/basicelements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/ui/basicelements.md -------------------------------------------------------------------------------- /docs/ui/defaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/ui/defaults.md -------------------------------------------------------------------------------- /docs/ui/image_inprogress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/ui/image_inprogress -------------------------------------------------------------------------------- /docs/ui/inputelements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/ui/inputelements.md -------------------------------------------------------------------------------- /docs/ui/introUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/ui/introUI.md -------------------------------------------------------------------------------- /docs/ui/layoutgrouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/ui/layoutgrouping.md -------------------------------------------------------------------------------- /docs/vector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/vector.md -------------------------------------------------------------------------------- /docs/vr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/vr.md -------------------------------------------------------------------------------- /docs/wait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/wait.md -------------------------------------------------------------------------------- /docs/webrequest/instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/webrequest/instance.md -------------------------------------------------------------------------------- /docs/webrequest/manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/docs/webrequest/manager.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /process_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/process_anchors.py -------------------------------------------------------------------------------- /serve.bat: -------------------------------------------------------------------------------- 1 | @python serve.py %* 2 | -------------------------------------------------------------------------------- /serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/serve.py -------------------------------------------------------------------------------- /theme/icons/i.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/theme/icons/i.svg -------------------------------------------------------------------------------- /theme/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/theme/main.html -------------------------------------------------------------------------------- /theme/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/theme/partials/footer.html -------------------------------------------------------------------------------- /theme/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berserk-Games/Tabletop-Simulator-API/HEAD/theme/partials/nav.html --------------------------------------------------------------------------------