Skip to content

Instantly share code, notes, and snippets.

View jclounge's full-sized avatar

Julian Crooke jclounge

  • Australia
View GitHub Profile
@passivestar
passivestar / Editor.tres
Last active January 12, 2025 21:14
Godot editor theme
[gd_resource type="Theme" load_steps=12 format=3 uid="uid://7bvxnk5n5imx"]
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6h42l"]
content_margin_left = 10.5
content_margin_top = 8.75
content_margin_right = 10.5
content_margin_bottom = 8.75
bg_color = Color(0.117647, 0.117647, 0.117647, 1)
draw_center = false
border_color = Color(1, 1, 1, 0.137255)
@torcado194
torcado194 / cleanEdge-shadertoy.glsl
Last active March 6, 2025 00:43
cleanEdge, a pixel art upscaling algorithm for clean rotations
/*** MIT LICENSE
Copyright (c) 2022 torcado
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
@yairchu
yairchu / AudioProcessorUndoAttachment.cpp
Last active February 16, 2025 21:25
AudioProcessorUndoAttachment for JUCE
#include "AudioProcessorUndoAttachment.h"
using namespace juce;
class AudioProcessorUndoAttachment::ChangeAction : public UndoableAction
{
public:
ChangeAction (AudioProcessor*);
bool perform() override;