mail system

This commit is contained in:
FloatGaming
2026-03-11 05:12:57 +08:00
parent 4aa8d0492a
commit 9e1755f752
34 changed files with 8085 additions and 3133 deletions
+15
View File
@@ -10,4 +10,19 @@ public class gameplayGalgame : MonoBehaviour
[Header("prefabs")]
public GameObject galgamePrefab;
public GameObject where_to_put;
private string timeType;
private string triggerType;
private string timelineStandard;
public void read_gol_so()
{
if (golSO != null)
{
timeType = golSO.dialogueType.ToString();
triggerType = golSO.triggerMethod.ToString();
timelineStandard = golSO.timelineStandard.ToString();
}
else Debug.LogWarning("no gol so");
}
}