-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix query types * Add systems to demo * Remove comments of inlined versions * Fix style * Replication * Test :iter
- Loading branch information
Showing
28 changed files
with
1,288 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
option ClientOutput = "../net/client.luau" | ||
option ServerOutput = "../net/server.luau" | ||
|
||
event UpdateTransform { | ||
From: Server, | ||
Type: Unreliable, | ||
Call: SingleSync, | ||
Poll: true, | ||
Data: (f64, CFrame) | ||
} | ||
|
||
event SpawnMob { | ||
From: Server, | ||
Type: Reliable, | ||
Call: SingleSync, | ||
Poll: true, | ||
Data: (f64, CFrame, u8) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
# example | ||
Generated by [Rojo](https://github.com/rojo-rbx/rojo) 7.4.1. | ||
# Demo | ||
|
||
## Getting Started | ||
To build the place from scratch, use: | ||
## Build with Rojo | ||
To build the place, run the following commands from the root of the repository: | ||
|
||
```bash | ||
rojo build -o "example.rbxlx" | ||
cd demo | ||
rojo build -o "demo.rbxl" | ||
``` | ||
|
||
Next, open `example.rbxlx` in Roblox Studio and start the Rojo server: | ||
Next, open `demo.rbxl` in Roblox Studio and start the Rojo server: | ||
|
||
```bash | ||
rojo serve | ||
``` | ||
|
||
For more help, check out [the Rojo documentation](https://rojo.space/docs). |
Oops, something went wrong.