From 6ca765b8404c94adf494c288d6b05b194425729f Mon Sep 17 00:00:00 2001 From: Michael Estes Date: Wed, 30 Apr 2025 14:19:34 -0700 Subject: [PATCH] ComponentSchemaMetadata --- src/Hello2.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Hello2.ts b/src/Hello2.ts index d7c2e0e..4671918 100644 --- a/src/Hello2.ts +++ b/src/Hello2.ts @@ -11,7 +11,7 @@ import { Vector3 } from 'three' const HelloComponent = ECS.defineComponent({ name: 'ee.hello-tutorial.HelloComponent', jsonID: 'EE_tutorial_hello', - schema: S.Object({ initialized: S.Bool(false) }) + schema: S.Object({ initialized: S.Bool() }) }) // Define our query