feature(subtitles): add frog_subtitles addon

This commit is contained in:
2025-09-23 00:16:43 +02:00
parent 6c8d542e53
commit d3eff4e006
21 changed files with 371 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
using Godot;
namespace Frog;
public partial class SubtitleEntry : Resource
{
[Export] public int Id;
[Export] public double StartTime;
[Export] public double EndTime;
[Export] public string Content;
}

View File

@@ -0,0 +1 @@
uid://d4c1aqagv0d26

View File

@@ -0,0 +1,9 @@
using Godot;
using Godot.Collections;
namespace Frog;
public partial class Subtitles : Resource
{
[Export] public Array<SubtitleEntry> Entries;
}

View File

@@ -0,0 +1 @@
uid://bnr4d41k74dvk