Replacing File calls from the FileAccess class docs
Co-Authored-By: bruvzg <7645683+bruvzg@users.noreply.github.com>
This commit is contained in:
parent
e69b7083d4
commit
d196a07ea4
1 changed files with 4 additions and 6 deletions
|
@ -20,13 +20,13 @@
|
||||||
[csharp]
|
[csharp]
|
||||||
public void Save(string content)
|
public void Save(string content)
|
||||||
{
|
{
|
||||||
using var file = FileAccess.Open("user://save_game.dat", File.ModeFlags.Write);
|
using var file = FileAccess.Open("user://save_game.dat", FileAccess.ModeFlags.Write);
|
||||||
file.StoreString(content);
|
file.StoreString(content);
|
||||||
}
|
}
|
||||||
|
|
||||||
public string Load()
|
public string Load()
|
||||||
{
|
{
|
||||||
using var file = FileAccess.Open("user://save_game.dat", File.ModeFlags.Read);
|
using var file = FileAccess.Open("user://save_game.dat", FileAccess.ModeFlags.Read);
|
||||||
string content = file.GetAsText();
|
string content = file.GetAsText();
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
|
@ -316,8 +316,7 @@
|
||||||
return (unsigned + MAX_15B) % MAX_16B - MAX_15B
|
return (unsigned + MAX_15B) % MAX_16B - MAX_15B
|
||||||
|
|
||||||
func _ready():
|
func _ready():
|
||||||
var f = File.new()
|
var f = FileAccess.open("user://file.dat", FileAccess.WRITE_READ)
|
||||||
f.open("user://file.dat", File.WRITE_READ)
|
|
||||||
f.store_16(-42) # This wraps around and stores 65494 (2^16 - 42).
|
f.store_16(-42) # This wraps around and stores 65494 (2^16 - 42).
|
||||||
f.store_16(121) # In bounds, will store 121.
|
f.store_16(121) # In bounds, will store 121.
|
||||||
f.seek(0) # Go back to start to read the stored value.
|
f.seek(0) # Go back to start to read the stored value.
|
||||||
|
@ -329,8 +328,7 @@
|
||||||
[csharp]
|
[csharp]
|
||||||
public override void _Ready()
|
public override void _Ready()
|
||||||
{
|
{
|
||||||
var f = new File();
|
using var f = FileAccess.Open("user://file.dat", FileAccess.ModeFlags.WriteRead);
|
||||||
f.Open("user://file.dat", File.ModeFlags.WriteRead);
|
|
||||||
f.Store16(unchecked((ushort)-42)); // This wraps around and stores 65494 (2^16 - 42).
|
f.Store16(unchecked((ushort)-42)); // This wraps around and stores 65494 (2^16 - 42).
|
||||||
f.Store16(121); // In bounds, will store 121.
|
f.Store16(121); // In bounds, will store 121.
|
||||||
f.Seek(0); // Go back to start to read the stored value.
|
f.Seek(0); // Go back to start to read the stored value.
|
||||||
|
|
Loading…
Add table
Reference in a new issue