Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FastNoiseLite extension #1815

Open
wants to merge 38 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
8f0beb8
FastNoiseLite extension
OGDemonZ Dec 25, 2024
76b90c1
ready to pull i think
OGDemonZ Dec 25, 2024
6e91d02
prettier
OGDemonZ Dec 25, 2024
225741c
eslint fix hopefully
OGDemonZ Dec 25, 2024
bda1710
i hate precision loss
OGDemonZ Dec 25, 2024
63448a5
changes
OGDemonZ Dec 25, 2024
d0c9e7a
Fix this
CubesterYT Dec 25, 2024
169b1cf
More fixes
CubesterYT Dec 25, 2024
835a7da
Format again
CubesterYT Dec 25, 2024
6a695cd
casted
OGDemonZ Dec 25, 2024
e2ba8e7
Cast
CubesterYT Dec 25, 2024
befd463
license
OGDemonZ Dec 26, 2024
fac8be6
Merge branch 'noise' of https://github.com/Vxerz/extensions into noise
OGDemonZ Dec 26, 2024
4068e2f
final fixes
OGDemonZ Dec 26, 2024
f742fda
prettier
OGDemonZ Dec 26, 2024
4eb987d
punctuation
OGDemonZ Dec 26, 2024
85bfbd6
format
OGDemonZ Dec 26, 2024
cbadec7
fixes
OGDemonZ Dec 26, 2024
ddaa652
final prettier
OGDemonZ Dec 26, 2024
aeab863
boom
OGDemonZ Dec 26, 2024
a922522
broken block
OGDemonZ Dec 26, 2024
495db96
Redo this
CubesterYT Dec 26, 2024
bfdaa10
fixed crashing
OGDemonZ Dec 26, 2024
8fee16f
Update noise.js
OGDemonZ Dec 26, 2024
96fc087
fixed everything
OGDemonZ Dec 26, 2024
402e4c3
stupid formatting
OGDemonZ Dec 26, 2024
106d2f6
We don't need this, man
CubesterYT Dec 26, 2024
95e6823
minified
OGDemonZ Dec 26, 2024
69b8a49
correct minified
OGDemonZ Dec 26, 2024
96bdecc
Fix these AGAIN
CubesterYT Dec 26, 2024
91ba77f
Skip the library
CubesterYT Dec 26, 2024
4a5e362
maybe?
OGDemonZ Dec 26, 2024
6c90619
unminified
OGDemonZ Dec 26, 2024
99c20d0
unminified
OGDemonZ Dec 26, 2024
b30630c
2d noise performance improvement
OGDemonZ Dec 27, 2024
8a34566
fixed fractal default value
OGDemonZ Dec 28, 2024
e0da06c
menu
OGDemonZ Dec 31, 2024
693e987
format
OGDemonZ Jan 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
final prettier
  • Loading branch information
OGDemonZ committed Dec 26, 2024
commit ddaa6527dc518396483711f7d24804a7b157852f
8 changes: 4 additions & 4 deletions extensions/Corbnorb/noise.js
Original file line number Diff line number Diff line change
@@ -34,8 +34,8 @@
opcode: "initNoise",
blockType: BlockType.COMMAND,
text: Translate(
"create noise id:[ID] seed:[SEED] type:[TYPE] octaves:[OCTAVES] frequency:[FREQUENCY] fractal:[FRACTAL] inverted?[INVERTED] easing:[EASING]"
),
"create noise id:[ID] seed:[SEED] type:[TYPE] octaves:[OCTAVES] frequency:[FREQUENCY] fractal:[FRACTAL] inverted?[INVERTED] easing:[EASING]"
),
arguments: {
ID: {
type: ArgumentType.STRING,
@@ -69,7 +69,7 @@
opcode: "getNoise",
blockType: BlockType.REPORTER,
text: Translate(
"get noise id:[ID] at x:[X] y:[Y] z:[Z] easing:[EASING] inverted?[INVERTED]"
"get noise id:[ID] at x:[X] y:[Y] z:[Z] easing:[EASING] inverted?[INVERTED]"
),
arguments: {
ID: {
@@ -3508,4 +3508,4 @@
}

Scratch.extensions.register(new Noise());
})((Scratch));
})(Scratch);