1 |
25010c40
|
kovi
|
using System.Collections;
|
2 |
|
|
using System.Collections.Generic;
|
3 |
|
|
using UnityEngine;
|
4 |
|
|
|
5 |
|
|
public class Constants
|
6 |
|
|
{
|
7 |
|
|
public const float PositionScale = 0.001f;
|
8 |
|
|
public const float LerpParam = 0.5f;
|
9 |
|
|
public const string nameOfActuatorObj = "MyTestCube";
|
10 |
|
|
}
|