설비 라이브러리 디자인 적용 및 작업 시간 분석 차트 기능 수정
This commit is contained in:
@@ -25,7 +25,11 @@ namespace WI
|
||||
|
||||
public void LoadOption()
|
||||
{
|
||||
#if UNITY_EDITOR
|
||||
filePath = "./Option.ini";
|
||||
#else
|
||||
filePath = "../ChunilENG_Build/Option.ini";
|
||||
#endif
|
||||
var allBehaviours = Core.singleTable.Values;
|
||||
|
||||
var optionables = allBehaviours.Where(mo=>mo is IOptionable).ToList();
|
||||
|
||||
@@ -132,11 +132,11 @@ namespace WI
|
||||
float moveSpeed;
|
||||
if (Input.GetKey(run))
|
||||
{
|
||||
moveSpeed = runSpeed;
|
||||
moveSpeed = runSpeed * 2.5f;
|
||||
}
|
||||
else
|
||||
{
|
||||
moveSpeed = option.moveSpeed;
|
||||
moveSpeed = option.moveSpeed * 2.5f;
|
||||
}
|
||||
|
||||
moveVector = transform.TransformDirection(keyboardX, 0, keyboardY);
|
||||
@@ -199,6 +199,9 @@ namespace WI
|
||||
|
||||
protected override void Zoom()
|
||||
{
|
||||
if (option.isFirstPersonView)
|
||||
return;
|
||||
|
||||
camera.orthographicSize = camera.orthographic ? option.currentDistance : 0f;
|
||||
|
||||
var nextDistance = option.currentDistance - input.mouseWheel * option.zoomSpeed;
|
||||
|
||||
Reference in New Issue
Block a user