Skip to content

Instantly share code, notes, and snippets.

@Creta5164
Creta5164 / discord-streamkit-overlay-voice-reactive-image-ko.css
Last active April 23, 2023 07:59
streamkit.discord.com/overlay 용 음성에 반응하는 이미지 CSS
/* streamkit.discord.com/overlay 용 음성에 반응하는 이미지 CSS */
/* Voice Widget 탭으로 이동한 후, 서버와 음성 채널을 지정한 다음 URL을 복사하세요. */
/* 수정한 이 : Crete Park */
/* 원본 CSS : https://retroheart.net/blog/2022/04/adding-discord-voice-reactive-images-to-obs/ */
:root {
/* 애니메이션 바운스 동작의 최대 높이 */
--bounce-height: 20px;
@Creta5164
Creta5164 / RenderingEffectGrayScale.cs
Created January 4, 2024 16:13
Grayscale effect example prepared in Godot engine PR #80214 Code ported from GDScript to C#.
using static Godot.GD;
using static Godot.RenderingDevice;
namespace Godot.Demo.CompositeEffect;
/// <summary>
/// This is a very simple effects demo that takes our color values and writes
/// back gray scale values.
/// </summary>
/// <remarks>
@Creta5164
Creta5164 / OpenInVSCode.cs
Last active April 25, 2025 12:04
[Godot 4.4] Adds the ability to open with VSCode to the right-click menu to Godot's file system dock.
#if TOOLS
using System.IO;
using System.Linq;
using Godot;
using static Godot.GD;
using static Godot.EditorContextMenuPlugin;
namespace CretaPark.GodotTools;
@Creta5164
Creta5164 / quick-load.js
Created March 29, 2025 09:06
This plugin adds `QuickLoad(number);` global function to RPG Maker MV.
/*:
* @plugindesc This plugin adds `QuickLoad(number);` global function to RPG Maker MV.
* Version : 1.0.0
* @author Creta Park (https://creft.me/cretapark)
*
* @help
* This plugin simply adds `QuickLoad(number);` global function to RPG Maker MV.
*
* Created by Creta Park (https://creft.me/cretapark)
*/