Portponky / better-terrain

Terrain plugin for Godot 4
The Unlicense
433 stars 21 forks source link

Removed unnecessary ? on reference values #60

Closed Go-Ba closed 7 months ago

Go-Ba commented 7 months ago

These values are reference type and thus nullable by default (Unless you are using Nullable contexts). Defining them as nullable with ? does nothing and causes warnings to show up in editor.

regarding issue #59

Portponky commented 7 months ago

Aha, I tested out the difference, and now I understand what the issue is. Thanks for fixing it!