tirbofish/dropbear · diff
fix: fix up some errors relating to scripting module
Signature present but could not be verified.
Unverified
@@ -2,6 +2,7 @@ package com.dropbear.components import com.dropbear.DropbearEngine import com.dropbear.EntityId +import com.dropbear.asset.ModelHandle import com.dropbear.asset.TextureHandle internal actual fun MeshRenderer.getModel(id: EntityId): ModelHandle? { @@ -0,0 +1,36 @@ +package com.dropbear.animation + +actual fun AnimationComponent.getActiveAnimationIndex(): Int? { + TODO("Not yet implemented") +} + +actual fun AnimationComponent.setActiveAnimationIndex(index: Int?) { +} + +actual fun AnimationComponent.getTime(): Float { + TODO("Not yet implemented") +} + +actual fun AnimationComponent.setTime(value: Float) { +} + +actual fun AnimationComponent.getSpeed(): Float { + TODO("Not yet implemented") +} + +actual fun AnimationComponent.setSpeed(value: Float) { +} + +actual fun AnimationComponent.getLooping(): Boolean { + TODO("Not yet implemented") +} + +actual fun AnimationComponent.setLooping(value: Boolean) { +} + +actual fun AnimationComponent.getIsPlaying(): Boolean { + TODO("Not yet implemented")
Large diffs are not rendered by default. Showing the first 50 of 98 lines. Show full diff