Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binogure-studio/godot-uuid
Unique identifier generation v4 for Godot Engine
https://github.com/binogure-studio/godot-uuid
godot godot-engine godot-plugin uuid
Last synced: 3 days ago
JSON representation
Unique identifier generation v4 for Godot Engine
- Host: GitHub
- URL: https://github.com/binogure-studio/godot-uuid
- Owner: binogure-studio
- License: mit
- Created: 2017-08-31T20:55:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-30T13:06:26.000Z (about 1 month ago)
- Last Synced: 2025-01-25T04:21:36.682Z (10 days ago)
- Topics: godot, godot-engine, godot-plugin, uuid
- Language: GDScript
- Size: 41 KB
- Stars: 221
- Watchers: 6
- Forks: 23
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
uuid - static uuid generator for Godot Engine
===========================================The *uuid* class is a GDScript 'static' class that provides a unique identifier generation for [Godot Engine](https://godotengine.org).
Usage
-----Copy the `uuid.gd` file in your project folder, and preload it using a constant.
```gdscript
const uuid_util = preload('res://addons/uuid/uuid.gd')func _init():
print(uuid_util.v4())
```Licensing
---------MIT (See license file for more informations)