class Nya::Render::Mesh
- Nya::Render::Mesh
- Nya::Component
- Nya::Object
- Reference
- Object
Overview
Mesh component
Included Modules
- Nya::Serializable
Defined in:
nya/render/mesh.crnya/render/mesh/loader.cr
Constant Summary
-
NYA_REGISTERED =
true
-
Mesh component
-
PROPERTIES =
{"filename" => "$String"} of String => String
-
Mesh component
Class Method Summary
-
.deserialize(xml, ctx : SerializationContext | Nil = nil)
Mesh component
-
.transform_name(name)
Mesh component
-
.xml_name
Returns XML compatible name of a type (see
Nya::Serializable.translate_type
)
Instance Method Summary
-
#awake
Post-initializes this object
- #filename : String?
-
#filename=(f : Nil | String)
Separate setter for filename used to load a model
-
#render(tag : String | Nil = nil)
Renders object
- #shapes : Hash(String, Models::Shape)
- #shapes=(shapes : Hash(String, Models::Shape))
- #update
Instance methods inherited from class Nya::Component
log
log,
metadata
metadata,
metadata=(metadata : Nya::Render::Backend::Metadata | Nil)
metadata=,
metadata? : Nya::Render::Backend::Metadata?
metadata?,
parent
parent,
parent=(parent : Nil | Nya::GameObject)
parent=,
parent? : Nya::GameObject?
parent?
Class methods inherited from class Nya::Component
deserialize(xml, ctx : SerializationContext | Nil = nil)
deserialize,
transform_name(name)
transform_name,
xml_name
xml_name
Instance methods inherited from class Nya::Object
ancestor_or_same?(u : U.class) forall U
ancestor_or_same?,
awake
awake,
backend
backend,
enabled : Bool
enabled,
enabled=(enabled : Bool)
enabled=,
enabled? : Bool
enabled?,
engine
engine,
id : String?
id,
id=(id : Nil | String)
id=,
matches_tag?(tag)
matches_tag?,
render(tag : String | Nil = nil)
render,
tag : String?
tag,
tag=(tag : Nil | String)
tag=,
update
update
Class methods inherited from class Nya::Object
deserialize(xml, ctx : SerializationContext | Nil = nil)
deserialize,
transform_name(name)
transform_name,
xml_name
xml_name
Class Method Detail
Instance Method Detail
def awake
#
Description copied from class Nya::Object
Post-initializes this object
Override this method to implement custom post-initialization behaviour Remember to call super when necessary (for example, before custom logic)
def render(tag : String | Nil = nil)
#
Description copied from class Nya::Object
Renders object
Override this method to implement custom render logic.