-
Notifications
You must be signed in to change notification settings - Fork 5
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
16 changed files
with
49 additions
and
41 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,14 @@ | ||
import { demo } from "../../demo"; | ||
import { ViewDemoHost, ControllerDemoHost } from "../../hosts"; | ||
/** Here goes code demo code that you can see in the playground */ | ||
import cameraState from "./cameraState.ts?raw"; | ||
import controllerParams from "./controllerParams.ts?raw"; | ||
import controllerProperties from "./controllerProperties.ts?raw"; | ||
|
||
const dirName = "getting_started"; | ||
|
||
export const cameraControllers = { | ||
...demo(dirName, "cameraState", "Camera state", cameraState, ViewDemoHost, {}, "Camera state example."), | ||
...demo(dirName, "controllerParams", "Controller params", controllerParams, ControllerDemoHost, {}, "Camera controller parameters example."), | ||
...demo(dirName, "controllerProperties", "Controller properties", controllerProperties, ControllerDemoHost, {}, "Camera controller properties example."), | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
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,12 @@ | ||
import { demo } from "../../demo"; | ||
import { StateDemoHost, BareboneDemoHost } from "../../hosts"; | ||
/** Here goes code demo code that you can see in the playground */ | ||
import basic from "./basic.ts?raw"; | ||
import renderState from "./renderState.ts?raw"; | ||
|
||
const dirName = "getting_started"; | ||
|
||
export const interactiveExamples = { | ||
...demo(dirName, "basic", "Basic app", basic, BareboneDemoHost, { contentHeight: 150 }, "A minimal example."), | ||
...demo(dirName, "renderState", "Render state edit", renderState, StateDemoHost, {}, "Render state editing example."), | ||
}; |
File renamed without changes.
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,10 @@ | ||
import { demo } from "../../demo"; | ||
import { StateDemoHost } from "../../hosts"; | ||
/** Here goes code demo code that you can see in the playground */ | ||
import validation from "./validation.ts?raw"; | ||
|
||
const dirName = "render_state"; | ||
|
||
export const renderState = { | ||
...demo(dirName, "validation", "Render state validation", validation, StateDemoHost, {}, "Render state validation example."), | ||
}; |
File renamed without changes.
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