changed to gdscript

This commit is contained in:
2023-02-12 14:30:58 +01:00
parent fff915bb51
commit 2e2716f43a
3 changed files with 8 additions and 12 deletions

View File

@@ -1,9 +0,0 @@
using Godot;
using System;
public partial class dialog_trigger_area : Area2D
{
[Export(PropertyHint.File, "*json")] string file;
[Export] string title;
[Export] bool introducedVillager;
}

View File

@@ -0,0 +1,5 @@
extends Area2D
@export_file("*json") var file = ""
@export var title = ""
@export var introducedVillager = false