You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
316 B

extends "../base.gd"
func _init(value, context: String) -> void:
var passed: String = "%s is builtin: Transform" % value
var failed: String = "%s is not builtin: Transform" % value
self.context = context
self.success = value is Transform
self.expected = passed
self.result = passed if self.success else failed