jsonui builder
This commit is contained in:
parent
6a95bcc384
commit
0c8a9cc622
7 changed files with 6 additions and 6 deletions
BIN
resources/pack_icon.png
Normal file
BIN
resources/pack_icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.8 KiB |
|
|
@ -1,5 +1,5 @@
|
|||
import { isBuildMode } from "./Configuration.js"
|
||||
import { Memory } from "./Memory.js"
|
||||
import { isBuildMode } from "../Configuration.js"
|
||||
import { Memory } from "../Memory.js"
|
||||
|
||||
if (isBuildMode) {
|
||||
process.on("beforeExit", () => {
|
||||
0
src/compilers/ui/installer.ts
Normal file
0
src/compilers/ui/installer.ts
Normal file
0
src/compilers/ui/linker.ts
Normal file
0
src/compilers/ui/linker.ts
Normal file
0
src/compilers/ui/manifest.ts
Normal file
0
src/compilers/ui/manifest.ts
Normal file
|
|
@ -1,5 +1,5 @@
|
|||
import "./compilers/PreCompile.js"
|
||||
import "./compilers/RunEnd.js"
|
||||
import "./compilers/ui/builder.js"
|
||||
|
||||
export { Animation } from "./components/Animation.js"
|
||||
export { AnimationKeyframe } from "./components/AnimationKeyframe.js"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import { Anchor, AnimationSize, Easing, KeyframeSize, Panel } from ".."
|
||||
import { Anchor, AnimationOffset, Easing, KeyframeSize, Panel } from ".."
|
||||
|
||||
const animation = AnimationSize(
|
||||
const animation = AnimationOffset(
|
||||
"smooth_loop",
|
||||
{
|
||||
to: [10, 10],
|
||||
|
|
@ -31,4 +31,4 @@ const panel = Panel({
|
|||
}),
|
||||
)
|
||||
|
||||
console.log(animation)
|
||||
console.log(animation, panel)
|
||||
|
|
|
|||
Reference in a new issue