docs: replace File with FileAccess

This commit is contained in:
Jiri Suchan 2023-01-30 22:21:36 +08:00
parent 312011fade
commit 4a4adec33d
4 changed files with 10 additions and 16 deletions

View file

@ -21,21 +21,17 @@
[codeblocks]
[gdscript]
func load_mp3(path):
var file = File.new()
file.open(path, File.READ)
var file = FileAccess.open(path, FileAccess.READ)
var sound = AudioStreamMP3.new()
sound.data = file.get_buffer(file.get_length())
file.close()
return sound
[/gdscript]
[csharp]
public AudioStreamMP3 LoadMP3(string path)
{
var file = new File();
file.Open(path, File.READ);
using var file = FileAccess.Open(path, FileAccess.ModeFlags.Read);
var sound = new AudioStreamMP3();
sound.Data = file.GetBuffer(file.GetLength());
file.Close();
return sound;
}
[/csharp]