Skip to content

Instantly share code, notes, and snippets.

View TranquilMarmot's full-sized avatar
🛸
Better Nate than Lever

Nate Moore TranquilMarmot

🛸
Better Nate than Lever
View GitHub Profile
@axilirate
axilirate / trail_3d.gd
Last active May 6, 2025 22:45
A Custom 3D trail renderer for Godot 4.
class_name Trail3D extends MeshInstance3D
"""
Original Author: Oussama BOUKHELF
License: MIT
Version: 0.1
Email: [email protected]
Description: Advanced 2D/3D Trail system.
"""
@imjasonh
imjasonh / markdown.css
Last active January 3, 2025 20:15
Render Markdown as unrendered Markdown (see http://jsbin.com/huwosomawo)
* {
font-size: 12pt;
font-family: monospace;
font-weight: normal;
font-style: normal;
text-decoration: none;
color: black;
cursor: default;
}