Skip to content

Instantly share code, notes, and snippets.

View AsPulse's full-sized avatar
🥰

AsPulse / あすぱる AsPulse

🥰
View GitHub Profile
@AsPulse
AsPulse / auto_fade_audio.lua
Last active February 12, 2023 12:39 — forked from to/auto_fade_audio.lua
OBS: シーンが切り替わるタイミングでメディアをフェードアウト/フェードインする
local obs = obslua
local duration = 1200
local interval = 50
local steps = duration / interval
local current_scene_name
local debug = false
@AsPulse
AsPulse / canvasFontReplace.js
Last active June 13, 2023 15:31
canvasRenderingContext2D.fillTextで描画される文字のフォントを強制的に変更します。
const customFontFace = new FontFace(
"CUSTOM_FONT_FACE",
"url(yout url here)",
);
document.fonts.add(customFontFace);
await customFontFace.load();
function canvasFontReplace(targetFont) {
if ('canvasFontReplacerFlag' in CanvasRenderingContext2D.prototype) {