浏览代码

:beetle: Fix uid destruction in template

Resources linked exist, so the uid sould not be overriden. Only the
scene uid should be generated.
DricomDragon 2 年之前
父节点
当前提交
8563436a4b
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 2 2
      godot/slides/template/TEMPLATE_NAME.tscn
  2. 1 1
      tools/gd-slide.fish

+ 2 - 2
godot/slides/template/TEMPLATE_NAME.tscn

@@ -1,8 +1,8 @@
 [gd_scene load_steps=4 format=3 uid="uid://uuuuuuuuuuuuu"]
 
 [ext_resource type="Script" path="res://projector/slide/Slide.gd" id="1_aaaaa"]
-[ext_resource type="Texture2D" uid="uid://vvvvvvvvvvvv" path="res://icon.svg" id="2_bbbbb"]
-[ext_resource type="PackedScene" uid="uid://wwwwwwwwwwwww" path="res://common/components/title/title.tscn" id="3_ccccc"]
+[ext_resource type="Texture2D" uid="uid://jjrdfilvox4o" path="res://icon.svg" id="2_bbbbb"]
+[ext_resource type="PackedScene" uid="uid://bvrtmyq4g1qes" path="res://common/components/title/title.tscn" id="3_ccccc"]
 
 [node name="TEMPLATE_NAME" type="Node2D"]
 script = ExtResource("1_aaaaa")

+ 1 - 1
tools/gd-slide.fish

@@ -17,7 +17,7 @@ function gen-res-id
 	echo (head -n 10 /dev/urandom | tr -dc 'a-z' | string shorten -m $argv[1] --char="")
 end
 
-set IDS_MARK 'aaaaa' 'bbbbb' 'ccccc' 'uuuuuuuuuuuuu' 'vvvvvvvvvvvv' 'wwwwwwwwwwwww'
+set IDS_MARK 'aaaaa' 'bbbbb' 'ccccc' 'uuuuuuuuuuuuu'
 
 echo "Read $TEMPLATE_FILE"
 set CONTENT (cat $TEMPLATE_FILE)