Enumerationmigueldeicaza.swiftgodot 0.46.0SwiftGodot
Flag
Generic6DOFJoint3D.swift:101enum Flag
Cases
case enableLinearLimit
If enabled, linear motion is possible within the given limits.
case enableAngularLimit
If enabled, rotational motion is possible within the given limits.
case enableLinearSpring
case enableAngularSpring
case enableMotor
If enabled, there is a rotational motor across these axes.
case enableLinearMotor
If enabled, there is a linear motor across these axes.
case max
Represents the size of the
Flag
enum.
Other members in extension
View members
Hide members
This section is hidden by default because it contains too many (14) members.
Types
Type members
Instance members
func getFlagX(flag: Generic6DOFJoint3D.Flag
) -> Bool func getFlagY(flag: Generic6DOFJoint3D.Flag
) -> Bool func getFlagZ(flag: Generic6DOFJoint3D.Flag
) -> Bool func getParamX(param: Generic6DOFJoint3D.Param
) -> Double func getParamY(param: Generic6DOFJoint3D.Param
) -> Double func getParamZ(param: Generic6DOFJoint3D.Param
) -> Double func setFlagX(flag: Generic6DOFJoint3D.Flag, value: Bool
) func setFlagY(flag: Generic6DOFJoint3D.Flag, value: Bool
) func setFlagZ(flag: Generic6DOFJoint3D.Flag, value: Bool
) func setParamX(param: Generic6DOFJoint3D.Param, value: Double
) func setParamY(param: Generic6DOFJoint3D.Param, value: Double
) func setParamZ(param: Generic6DOFJoint3D.Param, value: Double
)
Citizens in SwiftGodot
Conformances
protocol CaseIterable
A type that provides a collection of all of its values.
protocol CustomDebugStringConvertible
A type with a customized textual representation suitable for debugging purposes.
protocol Equatable
A type that can be compared for value equality.
protocol Hashable
A type that can be hashed into a
Hasher
to produce an integer hash value.protocol RawRepresentable<RawValue>
A type that can be converted to and from an associated raw value.
Type members
Instance members
var debugDescription: String
A textual representation of this instance, suitable for debugging
Type features
static func != (lhs: Self, rhs: Self
) -> Bool Returns a Boolean value indicating whether two values are not equal.