Falco Engine 3.9.0.1 (beta)
RenderSettings.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Runtime.CompilerServices;
5
6namespace FalcoEngine
7{
8 public static class RenderSettings
9 {
10
14 public static Color ambientColor
15 {
16 get
17 {
18 INTERNAL_get_ambientColor(out Color value);
19 return value;
20 }
21 set
22 {
23 INTERNAL_set_ambientColor(ref value);
24 }
25 }
26
27 [MethodImpl(MethodImplOptions.InternalCall)]
28 private static extern void INTERNAL_get_ambientColor(out Color color);
29
30 [MethodImpl(MethodImplOptions.InternalCall)]
31 private static extern void INTERNAL_set_ambientColor(ref Color color);
32 }
33}
static Color ambientColor
Get or set scene ambient color