Skip to main content

ITMP_TextInfoMethods

Trait ITMP_TextInfoMethods 

Source
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§

Source

fn ctor(self)

.ctor() overload

Source

fn ctor_2(self, character_count: impl Into<i32>)

.ctor(i32) overload

Source

fn ctor_3(self, text_component: impl Into<TMP_Text>)

.ctor(crate::tm_pro::tmp_text::TMP_Text) overload

Source

fn clear(self)

Clear() overload

Source

fn clear_all_data(self)

ClearAllData() overload

Source

fn clear_mesh_info(self, update_mesh: impl Into<bool>)

ClearMeshInfo(bool) overload

Source

fn clear_all_mesh_info(self)

ClearAllMeshInfo() overload

Source

fn reset_vertex_layout(self, is_volumetric: impl Into<bool>)

ResetVertexLayout(bool) overload

Source

fn clear_unused_vertices(self, materials: impl Into<Array<MaterialReference>>)

ClearUnusedVertices(::unity::Array<crate::tm_pro::materialreference::MaterialReference>) overload

Source

fn clear_line_info(self)

ClearLineInfo() overload

Source

fn clear_page_info(self)

ClearPageInfo() overload

Source

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§

Source§

impl<__T: ITMP_TextInfo> ITMP_TextInfoMethods for __T

Available on crate feature tm_pro-tmp_textinfo only.