jsonui builder

This commit is contained in:
Asaki Yuki 2026-01-27 17:17:34 +07:00
parent 6a95bcc384
commit 0c8a9cc622
7 changed files with 6 additions and 6 deletions

BIN
resources/pack_icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

View file

@ -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", () => {

View file

View file

View file

View 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"

View file

@ -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)