You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
push_warning("GenerateBorder modifier not compatible with %s"%generator.name)
return
The NoiseGenerator don't have a tile property but a tiles property.
If I manually update the guard clause to allow the NoiseGenerator I get correct result;
The water was added using the GenerateBorder modifier.
Is there any side beavior I don't see there ?
The text was updated successfully, but these errors were encountered:
From what I can tell, you're spot on! The Generate Borders method does not even use the Generator Settings at all; we should actually be able to remove the guard clause entirely. It can always be added in should the functionality of the Generate Borders modifier change in the future.
Hello,
For some reason the GenerateBorder modifier is not compatible with NoiseGenerator but it's worked.
I used the NoiseGenerator to generate an island and wanted to use the GenerateBorder modifier for the beach.
But the code of the modifier is checking for a
tile
property;Gaea/addons/gaea/modifiers/2D/generate_borders.gd
Lines 21 to 26 in 23561ce
The NoiseGenerator don't have a
tile
property but atiles
property.If I manually update the guard clause to allow the NoiseGenerator I get correct result;
The water was added using the GenerateBorder modifier.
Is there any side beavior I don't see there ?
The text was updated successfully, but these errors were encountered: