port from perforce

This commit is contained in:
2026-04-18 22:31:51 +02:00
commit 8d0ab5b7cc
8409 changed files with 3972376 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include "filemon.h"
RANGE(int, 1, 20, g_FluidBlurSteps) = 10;
RANGE(float, 0, 10, g_FluidLightTransferAmmount) = 2.76;
RANGE(float, 0, 10, g_FluidSoftness) = 0.49;
RANGE(float, 0, 10, g_FluidSpecularFactor) = 0.33;
RANGE(float, 1, 64, g_FluidSpecularPower) = 22.51;
RANGE(float, 0, 10, g_FluidSurfaceTension) = 0;
RANGE(float, 0, 200, g_FluidTextureScale) = 6.09;
RANGE(float, 0, 1, g_FluidTranslucencyAmmount) = 0.9;
RANGE(float, 0, 1, g_FluidRefractAmmount) = 0.06;
RANGE(float, 0.1, 2, g_DepthDifferenceBlur) = 0.58;
RANGE(float, 0.1, 1, g_FluidRenderTextureSizeScale) = 0.6;

View File

@@ -0,0 +1,17 @@
#pragma once
#include "filemon.h"
RANGE(int, 1, 1000, g_DemoLength) = 202;
RANGE(float, -3.14, 3.14, g_SunX) = 1.1875;
RANGE(float, -3.14, 3.14, g_SunY) = -1.15;
RANGE(float, -3.14, 3.14, g_SunZ) = 0;
RANGE(float, -64.0f, 64.0f, g_MageHeight) = -12.3f;
RANGE(float, 0.1f, 1.0f, g_MageScale) = 0.75f;
//Testdinger
ANY(float, g_DemoTime) = 22.1;
RANGE(float, 0, 1, g_Alpha) = 0.67;
COMBO(int, "0, 1, 2, 3", g_DemoMode) = 2;
ANY(bool, g_Doof) = true;