22. Init ability actor info
This commit is contained in:
2
Project/Source/Gasa/Networking/GasaNetLibrary.cpp
Normal file
2
Project/Source/Gasa/Networking/GasaNetLibrary.cpp
Normal file
@ -0,0 +1,2 @@
|
||||
#include "GasaNetLibrary.h"
|
||||
|
15
Project/Source/Gasa/Networking/GasaNetLibrary.h
Normal file
15
Project/Source/Gasa/Networking/GasaNetLibrary.h
Normal file
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
|
||||
namespace Gasa
|
||||
{
|
||||
constexpr float NetCullDist_Default = 225000000.0f;
|
||||
constexpr float NetCullDist_Immediate = 250.0f * 250.0f;
|
||||
constexpr float NetCullDist_VerClose = 1000.0f * 1000.0f;
|
||||
constexpr float NetCullDist_Close = 3500.0f * 3500.0f;
|
||||
constexpr float NetCullDist_Medium = 5000.0f * 5000.0f;
|
||||
constexpr float NetCullDist_Distant = 7000.0f * 7000.0f;
|
||||
constexpr float NetCullDist_Far = 8500.0f * 8500.0f;
|
||||
constexpr float NetCullDist_VeryFar = 10000.0f * 10000.0f;
|
||||
constexpr float NetCullDist_VisualMax = 15000.0f * 15000.0f;
|
||||
}
|
Reference in New Issue
Block a user