add entity:set_enabled(...)

This commit is contained in:
MihailRis
2025-01-21 05:31:07 +03:00
parent 13fde2116d
commit f2101f6504
6 changed files with 32 additions and 3 deletions
+3
View File
@@ -104,6 +104,9 @@ namespace dv {
}
boolean_t value::asBoolean() const {
if (type == value_type::none) {
return false;
}
check_type(type, value_type::boolean);
return val.boolean;
}