fun
This commit is contained in:
parent
e2f472d802
commit
d9cf50eec1
5 changed files with 36 additions and 17 deletions
14
test/app.ts
14
test/app.ts
|
|
@ -1,6 +1,6 @@
|
|||
import { Anchor, Custom, Extends, GlobalVariables, Panel, Renderer, Type, UI } from ".."
|
||||
import { Anchor, Button, Custom, Extends, GlobalVariables, Panel, Renderer, Type, UI } from ".."
|
||||
|
||||
const paperDoll = Custom(Renderer.PAPER_DOLL_RENDERER, {
|
||||
const paperDoll = Custom(Renderer.ANIMATED_GIF_RENDERER, {
|
||||
camera_tilt_degrees: 360,
|
||||
starting_rotation: 0,
|
||||
})
|
||||
|
|
@ -8,4 +8,14 @@ const paperDoll = Custom(Renderer.PAPER_DOLL_RENDERER, {
|
|||
const panel = Panel({
|
||||
anchor: Anchor.BOTTOM_LEFT,
|
||||
offset: [50, 50],
|
||||
}).setProperties({
|
||||
camera_tilt_degrees: 360,
|
||||
})
|
||||
|
||||
paperDoll.setProperties({
|
||||
camera_tilt_degrees: 360,
|
||||
})
|
||||
|
||||
panel.setProperties({
|
||||
hover_control: "cac",
|
||||
})
|
||||
|
|
|
|||
Reference in a new issue