All Downloads are FREE. Search and download functionalities are using the official Maven repository.

godot.extensions.ResourceLoaderExt.kt Maven / Gradle / Ivy

There is a newer version: 0.10.0-4.3.0
Show newest version
@file:JvmName("ResourceLoaderUtils")
package godot.extensions

import godot.Resource
import godot.ResourceLoader

@Suppress("NOTHING_TO_INLINE", "UNCHECKED_CAST")
inline fun  ResourceLoader.loadAs(
    path: String,
    typeHint: String = "",
    cacheMode: ResourceLoader.CacheMode = ResourceLoader.CacheMode.CACHE_MODE_REUSE
): T? {
    return load(path, typeHint, cacheMode) as T?
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy