설비 라이브러리 디자인 적용 및 작업 시간 분석 차트 기능 수정

This commit is contained in:
정영민
2025-03-19 15:10:05 +09:00
parent 065b5f2897
commit cf99aa3c0e
52 changed files with 2844 additions and 591 deletions

View File

@@ -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();

View File

@@ -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;