You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Assorted enum and native type fixes
This commit is contained in:
@@ -185,8 +185,8 @@ public:
|
||||
case BUILTIN:
|
||||
return builtin_type == p_other.builtin_type;
|
||||
case NATIVE:
|
||||
case ENUM:
|
||||
return native_type == p_other.native_type && enum_type == p_other.enum_type;
|
||||
case ENUM: // Enums use native_type to identify the enum and its base class.
|
||||
return native_type == p_other.native_type;
|
||||
case SCRIPT:
|
||||
return script_type == p_other.script_type;
|
||||
case CLASS:
|
||||
|
||||
Reference in New Issue
Block a user