notebook实装功能,galgame继续,一些bug修复

This commit is contained in:
2026-03-06 02:08:43 +08:00
parent 9011fa022e
commit 1f4077cf21
468 changed files with 50175 additions and 11402 deletions
@@ -0,0 +1,18 @@
using JetBrains.Annotations;
using UnityEngine;
using UnityEngine.UI;
public class fatherItemPrefab : MonoBehaviour
{
[Header("objects")]
public GameObject father_obj;
public GameObject son_obj;
[Header("father info")]
public Image father_img;
public Text father_name;
public Text father_description;
public Image boarder_img;
[Header("son info")]
public GameObject son_prefab;
public GameObject son_prefab_toPut;
}