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
| [1] #mapping-criteria The notes in your map must be "synced" to the music. | |
| [2] #mapping-criteria The timing of your map (BPM, timing points and time signature) must correctly reflect the song. | |
| [3] #mapping-criteria Every note in your map should correspond with an important and distinct sound in the music. | |
| [4] #mapping-criteria Emphasized sounds in the music should be reflected with emphasized notes in your map. | |
| [5] #mapping-criteria Differences of intensity in the song should be reflected in your map. | |
| [6] #mapping-criteria Your map should be consistent in which patterns it uses to match which sounds in the music. | |
| [7] #mapping-criteria When relevant, the placement of notes within sections of your map should have a visible "direction". This should match the changes of "pitch" in the music for that section. |
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 sys | |
| import os | |
| import re | |
| def extract_str_value(line): | |
| matches = re.search(r'".+"', line) | |
| if matches: | |
| return matches.group()[1:-1] | |
| matches = re.search(r'\[\[.+\]\]', line) | |
| if matches: |
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
| CapsLock::Ctrl |
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
| local cframe = game.Workspace.CurrentCamera.CFrame | |
| local x, y, z, R00, R01, R02, R10, R11, R12, R20, R21, R22 = cframe:components() | |
| print(string.format("local camera_cframe = {%.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f};", | |
| x,y,z, | |
| R00, R01, R02, | |
| R10, R11, R12, | |
| R20, R21, R22 | |
| )) |
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
| local function make_spdecal(cur, texture) | |
| local string_value = cur:FindFirstChild("SPDecal") | |
| if string_value == nil then | |
| string_value = Instance.new("StringValue") | |
| end | |
| string_value.Value = texture | |
| string_value.Name = "SPDecal" | |
| string_value.Parent = cur | |
| end |
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
| str = "local WebNPCAnchors = {}; WebNPCAnchors.Anchors = {};" .. "\n" | |
| for k,v in pairs(game.Workspace.WebNPCAnchors:GetChildren()) do | |
| local cframe = v.Humanoid.RootPart.CFrame | |
| local name = v.Name | |
| local x, y, z, R00, R01, R02, R10, R11, R12, R20, R21, R22 = cframe:components() | |
| str = str .. string.format("WebNPCAnchors.Anchors[\"%s\"] = {%.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f, %.5f};", | |
| name, | |
| x,y,z, | |
| R00, R01, R02, | |
| R10, R11, R12, |
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
| function r_itr(cur) | |
| pcall(function() | |
| if cur.Transparency == 1 then | |
| cur.Transparency = 0.99 | |
| end | |
| end) | |
| for _,child in pairs(cur:GetChildren()) do | |
| r_itr(child) | |
| end |
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
| function r_itr(cur) | |
| pcall(function() | |
| if cur.Texture == "rbxgameasset://Images/WORLD_PARK_flowercircle1-old" then | |
| print(cur:GetFullName()) | |
| end | |
| end) | |
| for _,child in pairs(cur:GetChildren()) do | |
| r_itr(child) |
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
| -- luacheck: ignore | |
| globals = { | |
| -- global functions | |
| "script", | |
| "warn", | |
| "wait", | |
| "spawn", | |
| "delay", | |
| "tick", |
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
| local LocalizationService = game:GetService("LocalizationService") | |
| local HttpService = game:GetService("HttpService") | |
| local function createLocalizationTable(contents) | |
| local rtv = Instance.new("LocalizationTable") | |
| rtv.DevelopmentLanguage = "en-US" | |
| rtv.Contents = HttpService:JSONEncode(contents) | |
| return rtv | |
| end |