mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Fix inability to assign null regression
Co-authored-by: Dmitry Maganov <vonagam@gmail.com>
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
extends Node
|
||||
|
||||
func test():
|
||||
var typed: Variant = get_node_or_null("does_not_exist")
|
||||
var untyped = null
|
||||
var node_1: Node = typed
|
||||
var node_2: Node = untyped
|
||||
var node_3 = typed
|
||||
var node_4 = untyped
|
||||
print(typed)
|
||||
print(untyped)
|
||||
print(node_1)
|
||||
print(node_2)
|
||||
print(node_3)
|
||||
print(node_4)
|
||||
@@ -0,0 +1,7 @@
|
||||
GDTEST_OK
|
||||
<Object#null>
|
||||
<null>
|
||||
<Object#null>
|
||||
<null>
|
||||
<Object#null>
|
||||
<null>
|
||||
Reference in New Issue
Block a user