mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
RobloxHybrid API Reference
|
||||
---
|
||||
- []()
|
||||
|
||||
Usage
|
||||
---
|
||||
In order to use this library, include the following file in your html
|
||||
```html
|
||||
<script src="roblox.js" type="text/javascript"></script>
|
||||
```
|
||||
|
||||
Then, you can reference the modules, for example Game, in the following way
|
||||
```js
|
||||
Roblox.Hybrid.Game.startWithPlaceID("XXX", myCallback);
|
||||
```
|
||||
|
||||
Each module also has a "supports" function, that executes asynchronously and checks if the queried function is supported natively in the current platform.
|
||||
```js
|
||||
Roblox.Hybrid.Game.supports("followUser", function(isSupported) {
|
||||
if(isSupported) {
|
||||
Roblox.Hybrid.Game.followUser("XXXXX", myCallback);
|
||||
} else {
|
||||
// Web implementation
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
|
||||
How to generate the compiled RobloxHybrid.js file
|
||||
---
|
||||
"roblox.js" is compiled and optimized with [Google Closure Compiler](https://github.com/google/closure-compiler)
|
||||
|
||||
In order to run this tool execute:
|
||||
```sh
|
||||
$ ./build_js.sh
|
||||
```
|
||||
|
||||
How to generate this documentation
|
||||
---
|
||||
```sh
|
||||
$ cd docs
|
||||
$ ./build_doc.sh
|
||||
```
|
||||
Reference in New Issue
Block a user