scripts
This commit is contained in:
@@ -0,0 +1,447 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine
|
||||
{
|
||||
// Token: 0x02000047 RID: 71
|
||||
public sealed class RenderSettings : Object
|
||||
{
|
||||
// Token: 0x170000F9 RID: 249
|
||||
// (get) Token: 0x060004F2 RID: 1266
|
||||
// (set) Token: 0x060004F3 RID: 1267
|
||||
public static extern bool fog
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x170000FA RID: 250
|
||||
// (get) Token: 0x060004F4 RID: 1268
|
||||
// (set) Token: 0x060004F5 RID: 1269
|
||||
public static extern FogMode fogMode
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x170000FB RID: 251
|
||||
// (get) Token: 0x060004F6 RID: 1270 RVA: 0x00008050 File Offset: 0x00006250
|
||||
// (set) Token: 0x060004F7 RID: 1271 RVA: 0x00008070 File Offset: 0x00006270
|
||||
public static Color fogColor
|
||||
{
|
||||
get
|
||||
{
|
||||
Color color;
|
||||
RenderSettings.INTERNAL_get_fogColor(out color);
|
||||
return color;
|
||||
}
|
||||
set
|
||||
{
|
||||
RenderSettings.INTERNAL_set_fogColor(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060004F8 RID: 1272
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_get_fogColor(out Color value);
|
||||
|
||||
// Token: 0x060004F9 RID: 1273
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_set_fogColor(ref Color value);
|
||||
|
||||
// Token: 0x170000FC RID: 252
|
||||
// (get) Token: 0x060004FA RID: 1274
|
||||
// (set) Token: 0x060004FB RID: 1275
|
||||
public static extern float fogDensity
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x170000FD RID: 253
|
||||
// (get) Token: 0x060004FC RID: 1276
|
||||
// (set) Token: 0x060004FD RID: 1277
|
||||
public static extern float fogStartDistance
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x170000FE RID: 254
|
||||
// (get) Token: 0x060004FE RID: 1278
|
||||
// (set) Token: 0x060004FF RID: 1279
|
||||
public static extern float fogEndDistance
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x170000FF RID: 255
|
||||
// (get) Token: 0x06000500 RID: 1280
|
||||
// (set) Token: 0x06000501 RID: 1281
|
||||
public static extern AmbientMode ambientMode
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000100 RID: 256
|
||||
// (get) Token: 0x06000502 RID: 1282 RVA: 0x0000807C File Offset: 0x0000627C
|
||||
// (set) Token: 0x06000503 RID: 1283 RVA: 0x0000809C File Offset: 0x0000629C
|
||||
public static Color ambientSkyColor
|
||||
{
|
||||
get
|
||||
{
|
||||
Color color;
|
||||
RenderSettings.INTERNAL_get_ambientSkyColor(out color);
|
||||
return color;
|
||||
}
|
||||
set
|
||||
{
|
||||
RenderSettings.INTERNAL_set_ambientSkyColor(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000504 RID: 1284
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_get_ambientSkyColor(out Color value);
|
||||
|
||||
// Token: 0x06000505 RID: 1285
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_set_ambientSkyColor(ref Color value);
|
||||
|
||||
// Token: 0x17000101 RID: 257
|
||||
// (get) Token: 0x06000506 RID: 1286 RVA: 0x000080A8 File Offset: 0x000062A8
|
||||
// (set) Token: 0x06000507 RID: 1287 RVA: 0x000080C8 File Offset: 0x000062C8
|
||||
public static Color ambientEquatorColor
|
||||
{
|
||||
get
|
||||
{
|
||||
Color color;
|
||||
RenderSettings.INTERNAL_get_ambientEquatorColor(out color);
|
||||
return color;
|
||||
}
|
||||
set
|
||||
{
|
||||
RenderSettings.INTERNAL_set_ambientEquatorColor(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000508 RID: 1288
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_get_ambientEquatorColor(out Color value);
|
||||
|
||||
// Token: 0x06000509 RID: 1289
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_set_ambientEquatorColor(ref Color value);
|
||||
|
||||
// Token: 0x17000102 RID: 258
|
||||
// (get) Token: 0x0600050A RID: 1290 RVA: 0x000080D4 File Offset: 0x000062D4
|
||||
// (set) Token: 0x0600050B RID: 1291 RVA: 0x000080F4 File Offset: 0x000062F4
|
||||
public static Color ambientGroundColor
|
||||
{
|
||||
get
|
||||
{
|
||||
Color color;
|
||||
RenderSettings.INTERNAL_get_ambientGroundColor(out color);
|
||||
return color;
|
||||
}
|
||||
set
|
||||
{
|
||||
RenderSettings.INTERNAL_set_ambientGroundColor(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600050C RID: 1292
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_get_ambientGroundColor(out Color value);
|
||||
|
||||
// Token: 0x0600050D RID: 1293
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_set_ambientGroundColor(ref Color value);
|
||||
|
||||
// Token: 0x17000103 RID: 259
|
||||
// (get) Token: 0x0600050E RID: 1294 RVA: 0x00008100 File Offset: 0x00006300
|
||||
// (set) Token: 0x0600050F RID: 1295 RVA: 0x00008120 File Offset: 0x00006320
|
||||
public static Color ambientLight
|
||||
{
|
||||
get
|
||||
{
|
||||
Color color;
|
||||
RenderSettings.INTERNAL_get_ambientLight(out color);
|
||||
return color;
|
||||
}
|
||||
set
|
||||
{
|
||||
RenderSettings.INTERNAL_set_ambientLight(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000510 RID: 1296
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_get_ambientLight(out Color value);
|
||||
|
||||
// Token: 0x06000511 RID: 1297
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_set_ambientLight(ref Color value);
|
||||
|
||||
// Token: 0x17000104 RID: 260
|
||||
// (get) Token: 0x06000512 RID: 1298
|
||||
// (set) Token: 0x06000513 RID: 1299
|
||||
public static extern float ambientIntensity
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000105 RID: 261
|
||||
// (get) Token: 0x06000514 RID: 1300 RVA: 0x0000812C File Offset: 0x0000632C
|
||||
// (set) Token: 0x06000515 RID: 1301 RVA: 0x0000814C File Offset: 0x0000634C
|
||||
public static SphericalHarmonicsL2 ambientProbe
|
||||
{
|
||||
get
|
||||
{
|
||||
SphericalHarmonicsL2 sphericalHarmonicsL;
|
||||
RenderSettings.INTERNAL_get_ambientProbe(out sphericalHarmonicsL);
|
||||
return sphericalHarmonicsL;
|
||||
}
|
||||
set
|
||||
{
|
||||
RenderSettings.INTERNAL_set_ambientProbe(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000516 RID: 1302
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_get_ambientProbe(out SphericalHarmonicsL2 value);
|
||||
|
||||
// Token: 0x06000517 RID: 1303
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_set_ambientProbe(ref SphericalHarmonicsL2 value);
|
||||
|
||||
// Token: 0x17000106 RID: 262
|
||||
// (get) Token: 0x06000518 RID: 1304 RVA: 0x00008158 File Offset: 0x00006358
|
||||
// (set) Token: 0x06000519 RID: 1305 RVA: 0x00008178 File Offset: 0x00006378
|
||||
public static Color subtractiveShadowColor
|
||||
{
|
||||
get
|
||||
{
|
||||
Color color;
|
||||
RenderSettings.INTERNAL_get_subtractiveShadowColor(out color);
|
||||
return color;
|
||||
}
|
||||
set
|
||||
{
|
||||
RenderSettings.INTERNAL_set_subtractiveShadowColor(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600051A RID: 1306
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_get_subtractiveShadowColor(out Color value);
|
||||
|
||||
// Token: 0x0600051B RID: 1307
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private static extern void INTERNAL_set_subtractiveShadowColor(ref Color value);
|
||||
|
||||
// Token: 0x17000107 RID: 263
|
||||
// (get) Token: 0x0600051C RID: 1308
|
||||
// (set) Token: 0x0600051D RID: 1309
|
||||
public static extern float reflectionIntensity
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000108 RID: 264
|
||||
// (get) Token: 0x0600051E RID: 1310
|
||||
// (set) Token: 0x0600051F RID: 1311
|
||||
public static extern int reflectionBounces
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000109 RID: 265
|
||||
// (get) Token: 0x06000520 RID: 1312
|
||||
// (set) Token: 0x06000521 RID: 1313
|
||||
public static extern float haloStrength
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x1700010A RID: 266
|
||||
// (get) Token: 0x06000522 RID: 1314
|
||||
// (set) Token: 0x06000523 RID: 1315
|
||||
public static extern float flareStrength
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x1700010B RID: 267
|
||||
// (get) Token: 0x06000524 RID: 1316
|
||||
// (set) Token: 0x06000525 RID: 1317
|
||||
public static extern float flareFadeSpeed
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x1700010C RID: 268
|
||||
// (get) Token: 0x06000526 RID: 1318
|
||||
// (set) Token: 0x06000527 RID: 1319
|
||||
public static extern Material skybox
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x1700010D RID: 269
|
||||
// (get) Token: 0x06000528 RID: 1320
|
||||
// (set) Token: 0x06000529 RID: 1321
|
||||
public static extern Light sun
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x1700010E RID: 270
|
||||
// (get) Token: 0x0600052A RID: 1322
|
||||
// (set) Token: 0x0600052B RID: 1323
|
||||
public static extern DefaultReflectionMode defaultReflectionMode
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x1700010F RID: 271
|
||||
// (get) Token: 0x0600052C RID: 1324
|
||||
// (set) Token: 0x0600052D RID: 1325
|
||||
public static extern int defaultReflectionResolution
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000110 RID: 272
|
||||
// (get) Token: 0x0600052E RID: 1326
|
||||
// (set) Token: 0x0600052F RID: 1327
|
||||
public static extern Cubemap customReflection
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x06000530 RID: 1328
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
internal static extern void Reset();
|
||||
|
||||
// Token: 0x06000531 RID: 1329
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
internal static extern Object GetRenderSettings();
|
||||
|
||||
// Token: 0x17000111 RID: 273
|
||||
// (get) Token: 0x06000532 RID: 1330 RVA: 0x00008184 File Offset: 0x00006384
|
||||
// (set) Token: 0x06000533 RID: 1331 RVA: 0x000081A0 File Offset: 0x000063A0
|
||||
[Obsolete("Use RenderSettings.ambientIntensity instead (UnityUpgradable) -> ambientIntensity", false)]
|
||||
public static float ambientSkyboxAmount
|
||||
{
|
||||
get
|
||||
{
|
||||
return RenderSettings.ambientIntensity;
|
||||
}
|
||||
set
|
||||
{
|
||||
RenderSettings.ambientIntensity = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user