godot.gen.godot.RectangleShape2D.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of godot-library-release Show documentation
Show all versions of godot-library-release Show documentation
Contains godot api as kotlin classes and jvm cpp interaction code.
// THIS FILE IS GENERATED! DO NOT EDIT IT MANUALLY!
@file:Suppress("PackageDirectoryMismatch", "unused", "FunctionName", "RedundantModalityModifier",
"UNCHECKED_CAST", "JoinDeclarationAndAssignment", "USELESS_CAST",
"RemoveRedundantQualifierName", "NOTHING_TO_INLINE", "NON_FINAL_MEMBER_IN_OBJECT",
"RedundantVisibilityModifier", "RedundantUnitReturnType", "MemberVisibilityCanBePrivate")
package godot
import godot.`annotation`.CoreTypeHelper
import godot.`annotation`.CoreTypeLocalCopy
import godot.`annotation`.GodotBaseType
import godot.core.TypeManager
import godot.core.VariantParser.NIL
import godot.core.VariantParser.VECTOR2
import godot.core.Vector2
import godot.core.memory.TransferContext
import godot.util.VoidPtr
import kotlin.Int
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* A 2D rectangle shape, intended for use in physics. Usually used to provide a shape for a
* [CollisionShape2D].
* **Performance:** [RectangleShape2D] is fast to check collisions against. It is faster than
* [CapsuleShape2D], but slower than [CircleShape2D].
*/
@GodotBaseType
public open class RectangleShape2D : Shape2D() {
/**
* The rectangle's width and height.
*/
@CoreTypeLocalCopy
public final inline var size: Vector2
@JvmName("sizeProperty")
get() = getSize()
@JvmName("sizeProperty")
set(`value`) {
setSize(value)
}
public override fun new(scriptIndex: Int): Unit {
callConstructor(ENGINECLASS_RECTANGLESHAPE2D, scriptIndex)
}
/**
* The rectangle's width and height.
*
* This is a helper function to make dealing with local copies easier.
*
* For more information, see our
* [documentation](https://godot-kotl.in/en/stable/user-guide/api-differences/#core-types).
*
* Allow to directly modify the local copy of the property and assign it back to the Object.
*
* Prefer that over writing:
* ``````
* val myCoreType = rectangleshape2d.size
* //Your changes
* rectangleshape2d.size = myCoreType
* ``````
*/
@CoreTypeHelper
public final fun sizeMutate(block: Vector2.() -> Unit): Vector2 = size.apply{
block(this)
size = this
}
public final fun setSize(size: Vector2): Unit {
TransferContext.writeArguments(VECTOR2 to size)
TransferContext.callMethod(rawPtr, MethodBindings.setSizePtr, NIL)
}
public final fun getSize(): Vector2 {
TransferContext.writeArguments()
TransferContext.callMethod(rawPtr, MethodBindings.getSizePtr, VECTOR2)
return (TransferContext.readReturnValue(VECTOR2) as Vector2)
}
public companion object
internal object MethodBindings {
public val setSizePtr: VoidPtr =
TypeManager.getMethodBindPtr("RectangleShape2D", "set_size", 743155724)
public val getSizePtr: VoidPtr =
TypeManager.getMethodBindPtr("RectangleShape2D", "get_size", 3341600327)
}
}