반응형 『 C 』Languege/게임엔진 2 Windows 10 에서 SCP : SL 서버 열기 1. mono 설치하기 Windows 10에서 SCP : SL 서버를 설정하는 방법 음성 채팅의 문제가 발생할수 있기에 설치해줍니다. www.mono-project.com 2. SteamCMD 설치하기 https://steamcdn-a.akamaihd.net/client/installer/steamcmd.zip zip 파일안에 있는 steamcmd.exe를 원하는 위치에 새폴더를 만들어서 넣어줍니다. 예 ) C:\steamcmd 라는 폴더를 만들어 주고 exe파일을 넣어 실행해 줍시다. 실행하면 steamcmd가 자동으로 설치되며 steam> 표시가 나타날때까지 기다려줍시다. 3. 이제 steamcmd.exe을 실행하고 다음과 같은 명령어를 적어줍니다. - Login anonymous - force_in.. 2020. 9. 1. unity 1장 움직이기 예제 using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerController : MonoBehaviour { [SerializeField] //인스펙터창에서 수정할수 있게 해준다. private float walkSpeed; [SerializeField] private Rigidbody myRigid; //보이는 것 이상의 물체 역할을 한다. // Start is called before the first frame update void Start() { myRigid = GetComponent(); // 시리얼필드와 비슷하다. } // Update is called once per fr.. 2019. 6. 9. 이전 1 다음 반응형 더보기 더보기 더보기 더보기