Adding log.gd
This commit is contained in:
parent
eb32d6614e
commit
4522259397
547 changed files with 46844 additions and 0 deletions
16
addons/gdUnit4/test/mocker/resources/DeepStubTestClass.gd
Normal file
16
addons/gdUnit4/test/mocker/resources/DeepStubTestClass.gd
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
class_name DeepStubTestClass
|
||||
|
||||
class XShape:
|
||||
var _shape : Shape3D = BoxShape3D.new()
|
||||
|
||||
func get_shape() -> Shape3D:
|
||||
return _shape
|
||||
|
||||
|
||||
var _shape :XShape
|
||||
|
||||
func add(shape :XShape):
|
||||
_shape = shape
|
||||
|
||||
func validate() -> bool:
|
||||
return _shape.get_shape().get_margin() == 0.0
|
||||
Loading…
Add table
Add a link
Reference in a new issue