-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
95 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# ワールド | ||
|
||
現在ワールドは静的なオブジェクトに限定されています | ||
|
||
```yaml | ||
metadata: | ||
type: [email protected] | ||
name: sutera world | ||
version: 0.2.0 | ||
specs: | ||
spawn_point: | ||
x: | ||
y: | ||
z: | ||
border: # 越えたらリスポーン | ||
x_min: | ||
x_max: | ||
y_min: | ||
y_max: | ||
z_min: | ||
z_max: | ||
objects: # 配列 | ||
- name: sofa | ||
model: | ||
type: gltf | ||
path: models/sofa.gltf | ||
material: | ||
type: sbsar | ||
path: materials/sofa.sbsar | ||
location: | ||
x: | ||
y: | ||
z: | ||
w: | ||
scale: | ||
x: | ||
y: | ||
z: | ||
physics: | ||
colliders: | ||
- type: box | ||
gravity: | ||
mass: 5000 | ||
- name: ball # 最小構成 | ||
model: | ||
type: sphere # 基本図形はgltfなしで可能 | ||
material: | ||
type: diffuse_bsdf # 単色もファイルなしで可能 | ||
color: 0x6833cf | ||
``` |
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,45 @@ | ||
```yaml | ||
metadata: | ||
type: [email protected] | ||
name: See2et's room「しぜるーむ」 | ||
version: 0.2.0 # ワールド作成者が定義するバージョン | ||
specs: | ||
spawn_point: | ||
x: | ||
y: | ||
z: | ||
border: # 越えたらリスポーン | ||
x_min: | ||
x_max: | ||
y_min: | ||
y_max: | ||
z_min: | ||
z_max: | ||
objects: # 配列 | ||
- name: sofa | ||
model: | ||
type: gltf | ||
path: models/sofa.gltf | ||
material: | ||
type: sbsar | ||
path: materials/sofa.sbsar | ||
location: | ||
x: | ||
y: | ||
z: | ||
w: | ||
scale: | ||
x: | ||
y: | ||
z: | ||
physics: | ||
colliders: | ||
- type: box | ||
gravity: | ||
mass: 5000 | ||
- name: ball # 最小構成 | ||
model: | ||
type: sphere # 基本図形はgltfなしで可能 | ||
material: | ||
type: diffuse_bsdf # 単色もファイルなしで可能 | ||
color: 0x6833cf |