-
Notifications
You must be signed in to change notification settings - Fork 0
Geometry Reference Table
UGEcko edited this page Aug 1, 2024
·
1 revision
| Geometry Type | Geometry Shader |
|---|---|
| Sphere | Standard |
| Capsule | OpaqueLight |
| Cylinder | TransparentLight |
| Cube | BaseWater |
| Plane | BillieWater |
| Quad | BTSPillar |
| Triangle | InterscopeConcrete |
| --- | InterscopeCar |
| --- | Obstacle |
| --- | WaterfallMirror |
Material:
"materials": {
"White_Pillar": {
"shader": "BTSPillar",
"color": [1,1,1],
"shaderKeywords": [],
"track": "track1",
}
}Reference:
{
"geometry": {
"type": "Cube",
"material": "White_Pillar"
}
}Explicit:
{
"geometry": {
"type": "Cube",
"material": {
"shader": "BTSPillar",
"color": [1,1,1],
"shaderKeywords": [],
"track": "track1",
}
}
}