added dialog bubble without function

This commit is contained in:
2022-11-28 21:27:54 +01:00
parent 67d2f5ca59
commit 43a7ddbf76
4 changed files with 35 additions and 32 deletions

View File

@@ -0,0 +1,16 @@
using Godot;
using System;
public partial class dialog_bubble : CanvasLayer
{
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
Show();
}
// Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta)
{
}
}