This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| shader_type canvas_item; | |
| //render_mode unshaded; <-- to remove lighting | |
| // The seamless noise texture that will create the cloudy pattern | |
| uniform sampler2D noise_texture : repeat_enable; | |
| // Your custom black & white mask (White = Fog, Black = Transparent) | |
| uniform sampler2D mask_texture; | |
| // Fog color settings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| from __future__ import annotations | |
| import argparse | |
| import json | |
| import os | |
| import queue | |
| import sys | |
| import tempfile | |
| import threading |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import argparse | |
| import json | |
| import math | |
| import os | |
| import subprocess | |
| import sys | |
| import uuid | |
| from pathlib import Path | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| import mido | |
| from scipy.io import wavfile | |
| import os | |
| class RissetExpertSynth: | |
| def __init__(self, sample_rate=44100): | |
| self.fs = sample_rate | |
| # Specific partial weights to mimic the 'hollow' Csound timbre | |
| # Skipping 2, 3, and 4 to create the authentic spectral gaps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import struct | |
| import math | |
| import random | |
| import os | |
| import argparse | |
| from typing import List, Tuple, Dict, Optional | |
| # --- MIDI CONSTANTS --- | |
| PPQ = 960 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Open a POWERSHELL window as admin and run the following then choose y (Yoiu can change it back after if you want) | |
| Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass | |
| Execution Policy Change | |
| The execution policy helps protect you from scripts that you do not trust. Changing the execution policy might expose | |
| you to the security risks described in the about_Execution_Policies help topic at | |
| https:/go.microsoft.com/fwlink/?LinkID=135170. Do you want to change the execution policy? | |
| [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "N"): y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extends MultiplayerSpawner | |
| # Example of packing multiple data points into the single allowed argument | |
| func trigger_player_spawn(id: int, spawn_pos: Vector2, player_name: String): | |
| var spawn_data = { | |
| "id": id, | |
| "position": spawn_pos, | |
| "name": player_name | |
| } | |
| # Call spawn with the single dictionary argument |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:void%20function(){var%20a=document.getElementById(%22rs-so-web-redesign-header%22);a%26%26(a.style.display=%22none%22);var%20b=document.querySelectorAll(%22article%22);for(var%20i=0;i%3Cb.length;i%2B%2B){b%5Bi%5D.style.setProperty(%22margin-top%22,%220%22,%22important%22)}}(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| ffmpeg -hide_banner -loglevel error -y -i "%~1" -vn -c:a libvorbis -q:a 6 "%~dpn1.ogg" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:void%20function(){var%20a=Math.max;function%20b(a,b=%22%23222%22){let%20c=document.getElementById(%22ace-dl-status%22);c||(c=Object.assign(document.createElement(%22div%22),{id:%22ace-dl-status%22}),c.style.cssText=%22position:fixed;bottom:20px;right:20px;padding:10px%2014px;border-radius:8px;font:600%2013px/1.4%20system-ui;z-index:2147483647;box-shadow:0%204px%2012px%20rgba(0,0,0,.35);max-width:340px;word-break:break-word%22,document.body.appendChild(c)),Object.assign(c.style,{background:b,color:%22%23fff%22}),c.textContent=a,clearTimeout(window.__aceStatusTimer),window.__aceStatusTimer=setTimeout(()=%3Ec.remove(),6e3)}function%20c(a){if(!a||%22string%22!=typeof%20a)return!1;const%20b=a.toLowerCase();return%20b.includes(%22ace-music.s3%22)%26%26b.includes(%22/app/user/works/%22)%26%26b.includes(%22awsaccesskeyid=%22)%26%26b.includes(%22signature=%22)}function%20d(a){const%20b=(a||%22%22).split(%22%3F%22)[0].toLowerCase().match(/\.(aac|m4a|mp3|wav|ogg|mp4)$/);return%20b%3Fb[1]:%22mp4%22}function%20 |
NewerOlder