Procs
proc add_object(self: Scene; ob: GameObject; name: string = ob.name; parent_name: string = ""; parent_bone: string = ""; auto_update_matrix: bool = ob.auto_update_matrix): GameObject {. discardable, ...raises: [Exception, KeyError, ValueError], tags: [RootEffect].}
- Source Edit
proc calculate_max_lights_and_cubemaps(self: Scene) {....raises: [Exception], tags: [RootEffect].}
- Source Edit
proc clear_parent(self: Scene; child: GameObject; keep_transform = true) {. ...raises: [ValueError], tags: [].}
- Source Edit
proc enable_all(self: Scene) {....raises: [], tags: [].}
- Source Edit
proc enable_physics(self: Scene) {....raises: [], tags: [].}
- Source Edit
proc enable_render(self: Scene) {....raises: [], tags: [].}
- Source Edit
proc ensure_cubemaps(self: Scene) {....raises: [ValueError, Exception], tags: [RootEffect].}
- Source Edit
proc get_lighting_code(self: Scene): string {....raises: [IOError], tags: [ReadIOEffect].}
- Source Edit
proc get_lighting_code_defines(self: Scene): seq[string] {....raises: [], tags: [].}
- Source Edit
proc get_lighting_UBOs(self: Scene): seq[UBO] {....raises: [Exception], tags: [RootEffect].}
- Source Edit
proc initScene(self: Scene; engine: MyouEngine; name: string = "Scene"; add_viewport_automatically: bool = true): Scene {....raises: [], tags: [].}
- Source Edit
proc make_parent(self: Scene; parent: GameObject; child: GameObject; keep_transform: bool = true) {....raises: [Exception, ValueError], tags: [RootEffect].}
- Source Edit
proc new_gameobject(self: Scene; name: string): GameObject {. ...raises: [Exception], tags: [RootEffect].}
- Source Edit
proc new_mesh(self: Scene; name: string; draw_method: MeshDrawMethod = Triangles; common_attributes: CommonMeshAttributes = {vertex, color}; layout: AttributeList = @[]; skip_upload: bool = false; vertex_count: int32 = 0; vertex_array: seq[float32] = @[]; index_array: seq[uint16] = @[]; pass: int32 = 0): Mesh {. ...raises: [Exception], tags: [RootEffect].}
- Source Edit
proc newScene(engine: MyouEngine; name: string = "Scene"; add_viewport_automatically: bool = true): Scene {....raises: [], tags: [].}
- Source Edit
proc remove_object(self: Scene; ob: GameObject; recursive: bool = true) {. ...raises: [], tags: [].}
- Source Edit
proc render_all_cubemaps(self: Scene; use_roughness_prefiltering: bool; mipmap_shader: Material = nil) {. ...raises: [Exception, ValueError, CatchableError], tags: [RootEffect].}
- Source Edit
proc reorder_children(self: Scene) {....raises: [], tags: [].}
- Source Edit
proc set_active_camera(self: Scene; camera: Camera) {. ...raises: [Exception, KeyError, ValueError], tags: [RootEffect].}
- Source Edit
proc set_ob_name(self: Scene; ob: GameObject; name: string) {....raises: [], tags: [].}
- Source Edit
proc set_objects_auto_update_matrix(self: Scene; objects: seq[GameObject]; auto_update: bool) {....raises: [], tags: [].}
- Source Edit
proc sort_cubemaps(self: Scene) {....raises: [], tags: [].}
- Source Edit
proc update_all_matrices(self: Scene) {....raises: [ValueError], tags: [].}
- Source Edit
proc update_lights(self: Scene) {....raises: [ValueError, Exception], tags: [RootEffect].}
- Source Edit