Skip to content

Instantly share code, notes, and snippets.

View Gramps's full-sized avatar

GP Garcia Gramps

View GitHub Profile
@Gramps
Gramps / ugc_image_upload.gd
Last active March 30, 2025 18:23
Steamworks UGC Image Upload
extends Control
@export var steam_app_id: int = 3013040
func _ready() -> void:
print(Steam.steamInitEx(false, steam_app_id, true))
Steam.item_created.connect(_on_item_created)
Steam.item_updated.connect(_on_item_updated)
#### Collection Sites
https://freepd.com/
https://freesound.org/
https://www.zapsplat.com/
https://www.newgrounds.com/audio
http://dova-s.jp/
tam-music.com
https://musmus.main.jp/
https://ccmixter.org/
@Gramps
Gramps / .gitattributes
Created April 16, 2024 20:07
A good .gitatributes files for your Godot asset project!
# Normalize EOL for all files that Git considers text files.
* text=auto eol=lf
# Only include the addons folder when downloading from the Asset Library.
/** export-ignore
/addons !export-ignore
/addons/** !export-ignore