Skip to content

TzurS11/NoodleScript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Before you start

Useful tools(you might wanna use them)

How to use it

  1. Download Script.js to your map folder

  2. Change the INPUT and OUTPUT difficulties

  3. Start coding

  4. Run the script through Node.js

Useful functions

Random Number generator

function Random(min, max, round) {
  if (round == false || round == undefined) return Number((Math.random() * (max - min) + min).toFixed(3));
  if (round == true) return Math.round(Math.random() * (max - min) + min);
}

let randomNum = Random(3, 19,/*round(true,undefined/false(defaut))*/); //gives a random number between 3 to 19

Lerp functions

Most of the easing functions can be found here.
Go to easings.net to find more easings

Examples

My maps:

Reassurance - Drown - La Lune - Neverless - Butterflies - Nothing Else - Interlace

Other sources:

totally balloon - Swifter's ReMapper - Nootils - Skybox

Fonts(TextToWall)

font1.dae - font2.dae - font3.dae

My fonts are not falling under the Apache 2.0 license but if you use my fonts you don't have to but it would be appreciated if you give me credit or just give some feedback on discord 🙏

Got any questions? Discord: TzurS11#1111