Skip to content

Instantly share code, notes, and snippets.

@tool
class_name ProceduralBridge
extends Node3D
##############################
## EXPORT VARIABLES
##############################
@export var physics_server: bool = false:
set(value):
@mashumafi
mashumafi / task_manager.gd
Last active March 31, 2025 20:29
A task manager for WorkerThreadPool to give strongly typed tasks with signals that don't block the game loop
extends Node
class Task:
var id : int
signal completed
func _init(id: int):
self.id = id
@tavinus
tavinus / cloudsend.sh
Last active September 12, 2024 12:57
Send files to Nextcloud/Owncloud shared folder using curl
#!/usr/bin/env bash
############################################################
# MIGRATED TO REPOSITORY
# https://github.com/tavinus/cloudsend.sh
#
# This gist will NOT be updated anymore
############################################################
############################################################