diff options
author | Marius Hanl <mariushanl@web.de> | 2023-03-06 22:18:43 +0100 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-03-14 13:59:05 +0100 |
commit | 31760165285be23a334885186d75c8b3ce017819 (patch) | |
tree | 3465ed82e13af142221fb81cc482b976f9b50df0 /editor | |
parent | c59c68cdec847bdcb8b0bd140324228edd7d74f6 (diff) |
Convert OpenSimplexNoise to FastNoiseLite
- class name and octaves property
(cherry picked from commit 862296273b3f446f4bbcfc5ea682a866ffe1ebcf)
Diffstat (limited to 'editor')
-rw-r--r-- | editor/renames_map_3_to_4.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/renames_map_3_to_4.cpp b/editor/renames_map_3_to_4.cpp index b956930c0e..9e2ba1e1dc 100644 --- a/editor/renames_map_3_to_4.cpp +++ b/editor/renames_map_3_to_4.cpp @@ -1096,6 +1096,7 @@ const char *RenamesMap3To4::gdscript_properties_renames[][2] = { { "margin_top", "offset_top" }, // Control -- Breaks NinePatchRect, StyleBox. { "mid_height", "height" }, // CapsuleMesh { "neighbor_dist", "neighbor_distance" }, // NavigationAgent2D, NavigationAgent3D + { "octaves", "fractal_octaves" }, // OpenSimplexNoise -> FastNoiseLite { "offset_h", "drag_horizontal_offset" }, // Camera2D { "offset_v", "drag_vertical_offset" }, // Camera2D { "off_disabled", "unchecked_disabled" }, // Theme @@ -1189,6 +1190,7 @@ const char *RenamesMap3To4::csharp_properties_renames[][2] = { { "MarginTop", "OffsetTop" }, // Control -- Breaks NinePatchRect, StyleBox. { "MidHeight", "Height" }, // CapsuleMesh { "NeighborDist", "NeighborDistance" }, // NavigationAgent2D, NavigationAgent3D + { "Octaves", "FractalOctaves" }, // OpenSimplexNoise -> FastNoiseLite { "OffsetH", "DragHorizontalOffset" }, // Camera2D { "OffsetV", "DragVerticalOffset" }, // Camera2D { "OffDisabled", "UncheckedDisabled" }, // Theme @@ -1525,6 +1527,7 @@ const char *RenamesMap3To4::class_renames[][2] = { { "NetworkedMultiplayerPeer", "MultiplayerPeer" }, { "Occluder", "OccluderInstance3D" }, { "OmniLight", "OmniLight3D" }, + { "OpenSimplexNoise", "FastNoiseLite" }, { "PHashTranslation", "OptimizedTranslation" }, { "PacketPeerGDNative", "PacketPeerExtension" }, { "PanoramaSky", "Sky" }, |