Add SimplexNoise and NoiseTexture as new resources
SimplexNoise can be used to generate parameterized fractal noise based on Open Simplex. NoiseTexture uses SimplexNoise to generate noise textures for using in shaders/visual effects.
This commit is contained in:
parent
4d228e66b4
commit
f12a1b8863
16 changed files with 3450 additions and 2 deletions
50
modules/opensimplex/doc_classes/NoiseTexture.xml
Normal file
50
modules/opensimplex/doc_classes/NoiseTexture.xml
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<class name="NoiseTexture" inherits="Texture" category="Core" version="3.1">
|
||||
<brief_description>
|
||||
[SimplexNoise] filled texture.
|
||||
</brief_description>
|
||||
<description>
|
||||
Uses a [SimplexNoise] to fill the texture data. You can specify the texture size but keep in mind that larger textures will take longer to generate and seamless noise only works with square sized textures.
|
||||
NoiseTexture can also generate normalmap textures.
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
<demos>
|
||||
</demos>
|
||||
<methods>
|
||||
<method name="set_height">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="height" type="int">
|
||||
</argument>
|
||||
<description>
|
||||
Set texture height.
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_width">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="width" type="int">
|
||||
</argument>
|
||||
<description>
|
||||
Set texture width.
|
||||
</description>
|
||||
</method>
|
||||
</methods>
|
||||
<members>
|
||||
<member name="as_normalmap" type="bool" setter="set_as_normalmap" getter="is_normalmap">
|
||||
If true, the resulting texture contains a normal map created from the original noise interpreted as a bump map.
|
||||
</member>
|
||||
<member name="noise" type="SimplexNoise" setter="set_noise" getter="get_noise">
|
||||
The [SimplexNoise] instance used to generate the noise.
|
||||
</member>
|
||||
<member name="seamless" type="bool" setter="set_seamless" getter="get_seamless">
|
||||
Whether the texture can be tiled without visible seams or not. Seamless textures take longer to generate.
|
||||
</member>
|
||||
<member name="size" type="Vector2" setter="set_size" getter="get_size">
|
||||
Size of the generated texture.
|
||||
</member>
|
||||
</members>
|
||||
<constants>
|
||||
</constants>
|
||||
</class>
|
||||
Loading…
Add table
Add a link
Reference in a new issue