-
Notifications
You must be signed in to change notification settings - Fork 31
/
boxshape.gen.go
87 lines (70 loc) · 2.27 KB
/
boxshape.gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package godot
import (
"github.com/shadowapex/godot-go/gdnative"
)
/*------------------------------------------------------------------------------
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated. Any updates should be done in
// "class.go.tmpl" so they can be included in the generated
// code.
//----------------------------------------------------------------------------*/
//func NewBoxShapeFromPointer(ptr gdnative.Pointer) BoxShape {
func newBoxShapeFromPointer(ptr gdnative.Pointer) BoxShape {
owner := gdnative.NewObjectFromPointer(ptr)
obj := BoxShape{}
obj.SetBaseObject(owner)
return obj
}
/*
3D box shape that can be a child of a [PhysicsBody] or [Area].
*/
type BoxShape struct {
Shape
owner gdnative.Object
}
func (o *BoxShape) BaseClass() string {
return "BoxShape"
}
/*
Undocumented
Args: [], Returns: Vector3
*/
func (o *BoxShape) GetExtents() gdnative.Vector3 {
//log.Println("Calling BoxShape.GetExtents()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 0, 0)
// Get the method bind
methodBind := gdnative.NewMethodBind("BoxShape", "get_extents")
// Call the parent method.
// Vector3
retPtr := gdnative.NewEmptyVector3()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
// If we have a return type, convert it from a pointer into its actual object.
ret := gdnative.NewVector3FromPointer(retPtr)
return ret
}
/*
Undocumented
Args: [{ false extents Vector3}], Returns: void
*/
func (o *BoxShape) SetExtents(extents gdnative.Vector3) {
//log.Println("Calling BoxShape.SetExtents()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 1, 1)
ptrArguments[0] = gdnative.NewPointerFromVector3(extents)
// Get the method bind
methodBind := gdnative.NewMethodBind("BoxShape", "set_extents")
// Call the parent method.
// void
retPtr := gdnative.NewEmptyVoid()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
}
// BoxShapeImplementer is an interface that implements the methods
// of the BoxShape class.
type BoxShapeImplementer interface {
ShapeImplementer
GetExtents() gdnative.Vector3
SetExtents(extents gdnative.Vector3)
}