From ed72c5c579a17105eb55aae6bd178560184f9d31 Mon Sep 17 00:00:00 2001 From: zhangjing243 Date: Tue, 20 May 2025 17:46:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0HdsVisualComponent=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhangjing243 --- compiler/components/hdsvisualcomponent.json | 4 ++++ compiler/tsconfig.esm.json | 6 ++++++ compiler/tsconfig.json | 6 ++++++ 3 files changed, 16 insertions(+) create mode 100644 compiler/components/hdsvisualcomponent.json diff --git a/compiler/components/hdsvisualcomponent.json b/compiler/components/hdsvisualcomponent.json new file mode 100644 index 000000000..7ecc50f66 --- /dev/null +++ b/compiler/components/hdsvisualcomponent.json @@ -0,0 +1,4 @@ +{ + "name": "HdsVisualComponent", + "attrs": ["scene", "expectedFrameRateRange"] +} \ No newline at end of file diff --git a/compiler/tsconfig.esm.json b/compiler/tsconfig.esm.json index aa05c22c4..f6a6fdf5a 100755 --- a/compiler/tsconfig.esm.json +++ b/compiler/tsconfig.esm.json @@ -284,6 +284,7 @@ "ArcSwiper", "ArcScrollBar", "ArcAlphabetIndexer", + "HdsVisualComponent" ], "extend": { "decorator": ["Extend", "AnimatableExtend"], @@ -907,6 +908,11 @@ "name": "ArcAlphabetIndexer", "type": "ArcAlphabetIndexerAttribute", "instance": "ArcAlphabetIndexerInstance" + }, + { + "name": "HdsVisualComponent", + "type": "HdsVisualComponentAttribute", + "instance": "HdsVisualComponentInstance" } ] }, diff --git a/compiler/tsconfig.json b/compiler/tsconfig.json index b956fcb70..73802e9cc 100644 --- a/compiler/tsconfig.json +++ b/compiler/tsconfig.json @@ -293,6 +293,7 @@ "ArcSwiper", "ArcScrollBar", "ArcAlphabetIndexer", + "HdsVisualComponent" ], "extend": { "decorator": ["Extend", "AnimatableExtend"], @@ -956,6 +957,11 @@ "name": "ArcAlphabetIndexer", "type": "ArcAlphabetIndexerAttribute", "instance": "ArcAlphabetIndexerInstance" + }, + { + "name": "HdsVisualComponent", + "type": "HdsVisualComponentAttribute", + "instance": "HdsVisualComponentInstance" } ] }, -- Gitee