https://github.com/oblerion/zerobrane-studio-with-tic-80
ZeroBrane Studio autocomplete and interpreter for TIC-80
https://github.com/oblerion/zerobrane-studio-with-tic-80
api interpreter open-source tic80 zerobrane-studio
Last synced: 23 days ago
JSON representation
ZeroBrane Studio autocomplete and interpreter for TIC-80
- Host: GitHub
- URL: https://github.com/oblerion/zerobrane-studio-with-tic-80
- Owner: oblerion
- License: gpl-3.0
- Created: 2023-12-05T10:38:38.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-04T07:31:22.000Z (about 1 year ago)
- Last Synced: 2024-11-09T22:40:16.907Z (11 months ago)
- Topics: api, interpreter, open-source, tic80, zerobrane-studio
- Language: Lua
- Homepage:
- Size: 67.4 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Note
Recover from https://gist.github.com/oblerion/0d567a202ad6141ae2dbcecae769e281
Thanks to librorumque for start it.# Install
## 1. copy packages folder to zb path
## 2. if no tic80 path are set
### default path:
- win : "C:/Program Files (x86)/Tic80/tic80.exe"
- linux : "/usr/bin/tic80"
- macos : need to set
## 2. set path (Edit > Preferences > User config)
### on window
```lua
path.tic80 = "C:/Program Files (x86)/Tic80/tic80.exe"
```### on linux
```lua
path.tic80 = "/usr/bin/tic80"
```
save/restart zb# Interpreters
- (TIC-80_LUA) run lua only
- (TIC-80_TIC) import code lua to .tic and run it## How do you use it
- select TIC-80_LUA : Project > Lua Interpreter > TIC-80_LUA
- select TIC-80_TIC : Project > Lua Interpreter > TIC-80_TIC
Open your lua file and shortcut(F6) start interpreter,
(shift+F5) or (close tic80 window) for stop it.