| 3610 | } |
| 3611 | |
| 3612 | RID RenderingServer::instance_create2(RID p_base, RID p_scenario) { |
| 3613 | RID instance = instance_create(); |
| 3614 | instance_set_base(instance, p_base); |
| 3615 | instance_set_scenario(instance, p_scenario); |
| 3616 | return instance; |
| 3617 | } |
| 3618 | |
| 3619 | bool RenderingServer::is_render_loop_enabled() const { |
| 3620 | return render_loop_enabled; |
no outgoing calls
no test coverage detected