meat_madness_redux/godot/addons/dialogic/Documentation/Content/FAQ/CSharp.md

14 lines
432 B
Markdown
Raw Normal View History

2022-11-27 13:31:09 -07:00
# Can I use C# with Dialogic?
Yes, but it's experimental at the present time. If you want to try it out, and you find issues with the implementation, please let us know.
Usage:
`public override void _Ready()
{
var dialog = DialogicSharp.Start("Greeting");
AddChild(dialog);
}
`
This is the PR that added this feature: [https://github.com/coppolaemilio/dialogic/pull/217](https://github.com/coppolaemilio/dialogic/pull/217)