Check out our latest project ✨ OpenChapter.io: free ebooks the way its meant to be 📖

GStorage for Godot 4

An asset by Ultradeviant
The page banner background of a mountain and forest
GStorage for Godot 4 hero image

Quick Information

0 ratings
GStorage for Godot 4 icon image
Ultradeviant
GStorage for Godot 4

Lightweight key-value storage system for Godot, inspired by UserDefaults in Swift.

Supported Engine Version
4.4
Version String
1.2.1
License Version
MIT
Support Level
community
Modified Date
11 months ago
Git URL
Issue URL

GStorage for Godot 4

🚀 Lightweight key-value storage system for Godot, inspired by UserDefaults in Swift

🔥 Features

✅ Fast read/write operations
✅ Automatic file storage in user://
✅ Easy API with per-container initialization

📌 Installation

  1. Download via Godot Asset Library (coming soon)
  2. Or install manually:
    • Clone this repository or download it as a ZIP.
    • Move the addons/gstorage/ folder to your Godot project.
    • Enable the plugin in Project Settings -> Plugins.

🎮 Usage Example

var storage = GStorage.create("settings")

# Store values
storage.set_value("music_volume", 0.8)
storage.set_value("username", "Player123")

# Read values
var volume = storage.get_value("music_volume", 1.0) # where 1.0 is the default value
var username = storage.get_value("username", "Guest")

# Remove values
storage.remove_value("username")

# Clear values
storage.clear()

Lightweight key-value storage system for Godot, inspired by UserDefaults in Swift.

Reviews

0 ratings

Your Rating

Headline must be at least 3 characters but not more than 50
Review must be at least 5 characters but not more than 500
Please sign in to add a review

Quick Information

0 ratings
GStorage for Godot 4 icon image
Ultradeviant
GStorage for Godot 4

Lightweight key-value storage system for Godot, inspired by UserDefaults in Swift.

Supported Engine Version
4.4
Version String
1.2.1
License Version
MIT
Support Level
community
Modified Date
11 months ago
Git URL
Issue URL

Open Source

Released under the AGPLv3 license

Plug and Play

Browse assets directly from Godot

Community Driven

Created by developers for developers