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: 2 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-08T12:26:02.000Z (3 months ago)
- Last Synced: 2024-08-08T14:40:29.177Z (3 months ago)
- Topics: godot, godot-engine, godot-plugin, uuid
- Language: GDScript
- Size: 35.2 KB
- Stars: 180
- Watchers: 6
- Forks: 20
- 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)