pub trait ITilemapMethods: ITilemap {
// Provided methods
fn refresh_tile(self, position: impl Into<Vector3Int>) { ... }
fn refresh_tile_injected(self) -> Vector3Int { ... }
}Provided Methods§
Sourcefn refresh_tile(self, position: impl Into<Vector3Int>)
fn refresh_tile(self, position: impl Into<Vector3Int>)
RefreshTile(crate::unity_engine::vector3int::Vector3Int) overload
Sourcefn refresh_tile_injected(self) -> Vector3Int
fn refresh_tile_injected(self) -> Vector3Int
RefreshTile_Injected(*mutcrate::unity_engine::vector3int::Vector3Int) overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: ITilemap> ITilemapMethods for __T
Available on crate feature
unity_engine-tilemaps-tilemap only.