GBValidation

AUTO-GENERATED FILE – DO NOT EDIT MANUALLY

Global validation helpers used across systems and tests.

Source File: addons/grid_building/utils/gb_validation.gd

Public Methods

check_not_null

1
2
3
4
check_not_null(
    p_obj: Object,
    p_property_names: Array[String]
) -> Array[String]

Flags: static

Global helper class to make validating object properties easier Checks that the property values of each property name are not null. Returns an array of issues found.

p_obj: Object - Object to validate properties on

p_property_names: Array[String] - Array of property names to check for null values