more cleanup aa

This commit is contained in:
Mister_Nebula 2021-11-25 15:43:30 +00:00
parent f7d0aebc2a
commit b23cb8a547
3 changed files with 9 additions and 10 deletions

View File

@ -2,7 +2,7 @@
namespace QSB.Tools.TranslatorTool
{
class QSBNomaiTranslator : QSBTool
internal class QSBNomaiTranslator : QSBTool
{
public static float distToClosestTextCenter = 1f;

View File

@ -2,7 +2,7 @@
namespace QSB.Tools.TranslatorTool
{
class QSBNomaiTranslatorProp : MonoBehaviour
internal class QSBNomaiTranslatorProp : MonoBehaviour
{
private static MaterialPropertyBlock s_matPropBlock;
private static int s_propID_EmissionColor;

View File

@ -2,17 +2,16 @@
namespace QSB.Tools.TranslatorTool
{
class QSBTranslatorScanBeam : MonoBehaviour
internal class QSBTranslatorScanBeam : MonoBehaviour
{
public Renderer _projectorRenderer;
public Renderer _lightVolumeRenderer;
const float _focusedBeamWidth = 0.25f;
const float _maxBeamWidth = 1f;
const float _maxBeamLength = 10f;
const float _scanOffset = 0f;
const float _switchLength = 0.33f;
const float _fadeLength = 0.66f;
private const float _focusedBeamWidth = 0.25f;
private const float _maxBeamWidth = 1f;
private const float _maxBeamLength = 10f;
private const float _scanOffset = 0f;
private const float _switchLength = 0.33f;
private const float _fadeLength = 0.66f;
public float _scanSpeed = 1f;
public readonly Color _baseProjectorColor = new(0.3545942f, 2.206932f, 4.594794f, 1f);