SoftNoise

An asset by perdugames
The page banner background of a mountain and forest
SoftNoise thumbnail image
SoftNoise thumbnail image
SoftNoise hero image

Quick Information

0 ratings
SoftNoise icon image
perdugames
SoftNoise

SoftNoise-GDScript-GDScript function set generating noise (value noise, perlin noise, opensimplex(2d, 3d and 4d)...).Example of how to use:other_script.gdextends Nodevar preScript = preload("res://scripts/softnoise.gd")var softnoisefunc _ready():#Randomsoftnoise = preScript.SoftNoise.new()#Passing a seedsoftnoise = preScript.SoftNoise.new(1729)softnoise.simple_noise1d(x)softnoise.simple_noise2d(x, y)softnoise.value_noise2d(x, y)softnoise.perlin_noise2d(x, y)softnoise.openSimplex2D(x, y)softnoise.openSimplex3D(x, y, z)softnoise.openSimplex4D(x, y, z, w)

Supported Engine Version
2.1
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
6 years ago
Git URL
Issue URL

SoftNoise-GDScript-

GDScript function set generating noise (value noise, perlin noise, opensimplex(2d, 3d and 4d)...).

Example of how to use:

other_script.gd

extends Node

var preScript = preload("res://scripts/softnoise.gd")
var softnoise

func _ready():
    #Random
    softnoise = preScript.SoftNoise.new()
    #Passing a seed
    softnoise = preScript.SoftNoise.new(1729)
    
    softnoise.simple_noise1d(x)
    softnoise.simple_noise2d(x, y)
    
    softnoise.value_noise2d(x, y)
    softnoise.perlin_noise2d(x, y)
    
    softnoise.openSimplex2D(x, y)
    softnoise.openSimplex3D(x, y, z)
    softnoise.openSimplex4D(x, y, z, w)
    
    

Preview

Map generated using the perlin_noise2d() function.

README SofNoise2D screenshot

Map generated using the openSimplex2D() function.

README SofNoise2D screenshot

SoftNoise-GDScript-

GDScript function set generating noise (value noise, perlin noise, opensimplex(2d, 3d and 4d)...).

Example of how to use:

other_script.gd

extends Node

var preScript = preload("res://scripts/softnoise.gd")
var softnoise

func _ready():
#Random
softnoise = preScript.SoftNoise.new()
#Passing a seed
softnoise = preScript.SoftNoise.new(1729)

softnoise.simple_noise1d(x)
softnoise.simple_noise2d(x, y)

softnoise.value_noise2d(x, y)
softnoise.perlin_noise2d(x, y)

softnoise.openSimplex2D(x, y)
softnoise.openSimplex3D(x, y, z)
softnoise.openSimplex4D(x, y, z, w)

Reviews

0 ratings

Your Rating

Headline must be at least 3 characters but not more than 50
Review must be at least 5 characters but not more than 500
Please sign in to add a review

Quick Information

0 ratings
SoftNoise icon image
perdugames
SoftNoise

SoftNoise-GDScript-GDScript function set generating noise (value noise, perlin noise, opensimplex(2d, 3d and 4d)...).Example of how to use:other_script.gdextends Nodevar preScript = preload("res://scripts/softnoise.gd")var softnoisefunc _ready():#Randomsoftnoise = preScript.SoftNoise.new()#Passing a seedsoftnoise = preScript.SoftNoise.new(1729)softnoise.simple_noise1d(x)softnoise.simple_noise2d(x, y)softnoise.value_noise2d(x, y)softnoise.perlin_noise2d(x, y)softnoise.openSimplex2D(x, y)softnoise.openSimplex3D(x, y, z)softnoise.openSimplex4D(x, y, z, w)

Supported Engine Version
2.1
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
6 years ago
Git URL
Issue URL

Open Source

Released under the AGPLv3 license

Plug and Play

Browse assets directly from Godot

Community Driven

Created by developers for developers