pub trait ITMP_TextInfoMethods: ITMP_TextInfo {
// Provided methods
fn ctor(self) { ... }
fn ctor_2(self, character_count: impl Into<i32>) { ... }
fn ctor_3(self, text_component: impl Into<TMP_Text>) { ... }
fn clear(self) { ... }
fn clear_all_data(self) { ... }
fn clear_mesh_info(self, update_mesh: impl Into<bool>) { ... }
fn clear_all_mesh_info(self) { ... }
fn reset_vertex_layout(self, is_volumetric: impl Into<bool>) { ... }
fn clear_unused_vertices(
self,
materials: impl Into<Array<MaterialReference>>,
) { ... }
fn clear_line_info(self) { ... }
fn clear_page_info(self) { ... }
fn copy_mesh_info_vertex_data(self) -> Array<TMP_MeshInfo> { ... }
}Provided Methods§
Sourcefn ctor_3(self, text_component: impl Into<TMP_Text>)
fn ctor_3(self, text_component: impl Into<TMP_Text>)
.ctor(crate::tm_pro::tmp_text::TMP_Text) overload
Sourcefn clear_all_data(self)
fn clear_all_data(self)
ClearAllData() overload
Sourcefn clear_mesh_info(self, update_mesh: impl Into<bool>)
fn clear_mesh_info(self, update_mesh: impl Into<bool>)
ClearMeshInfo(bool) overload
Sourcefn clear_all_mesh_info(self)
fn clear_all_mesh_info(self)
ClearAllMeshInfo() overload
Sourcefn reset_vertex_layout(self, is_volumetric: impl Into<bool>)
fn reset_vertex_layout(self, is_volumetric: impl Into<bool>)
ResetVertexLayout(bool) overload
Sourcefn clear_unused_vertices(self, materials: impl Into<Array<MaterialReference>>)
fn clear_unused_vertices(self, materials: impl Into<Array<MaterialReference>>)
ClearUnusedVertices(::unity::Array<crate::tm_pro::materialreference::MaterialReference>) overload
Sourcefn clear_line_info(self)
fn clear_line_info(self)
ClearLineInfo() overload
Sourcefn clear_page_info(self)
fn clear_page_info(self)
ClearPageInfo() overload
Sourcefn copy_mesh_info_vertex_data(self) -> Array<TMP_MeshInfo>
fn copy_mesh_info_vertex_data(self) -> Array<TMP_MeshInfo>
CopyMeshInfoVertexData() 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: ITMP_TextInfo> ITMP_TextInfoMethods for __T
Available on crate feature
tm_pro-tmp_textinfo only.