Godot-Android-Samples
Godot-Android-Samples copied to clipboard
Does this mean it's possible to use Godot to render Android live wallpaper in wallpaper service ?
In the source file, https://github.com/godotengine/godot/blob/master/platform/android/java/lib/src/org/godotengine/godot/Godot.kt
I saw the notes:
- Can be hosted by [Activity], [Fragment] or [Service] android components, so long as its
- lifecycle methods are properly invoked.
Does this mean it's possible to use Godot to render Android live wallpaper in WallpaperService ? such as in
inner class MyWallpaperEngine : Engine() {
override fun onCreate(surfaceHolder: SurfaceHolder?) {
}
override fun onSurfaceChanged(.......
or some thing? Thanks.