Programming skills

    폴가이즈 베타 프로젝트 중 if문 이슈 해결 방법

    폴가이즈 베타 프로젝트 중 if문 이슈 해결 방법

    // 플레이어가 내려오는데 이슈 발생 void Update() { currentTime += Time.deltaTime; if(currentTime > moveTime) { transform.position = target; } if(currentTime > 5) { transform.position += Vector3.down * speed * Time.deltaTime; } } [이슈]플레이어가 내려가지 못하고 있는 영상 //이슈 해결 void Update() { currentTime += Time.deltaTime; if (currentTime > moveTime && currentTime < 9) { transform.position = target; } else { transform.positi..

    백준 C# : Hello world(2557번)

    https://www.acmicpc.net/problem/2557 2557번: Hello World Hello World!를 출력하시오. www.acmicpc.net 백준 단계별로 풀어보기 1단계 Hello World 출력하기 namespace Coding_of_today { internal class Program { static void Main(string[] args) { Console.WriteLine("Hello, World!"); } } }

    Git 설치 및 기초(add, commit)

    Git 설치 및 기초(add, commit)

    개발자 필수툴로 작업 코드들을 기록하는 툴이다. Mac 유저로써 Homebrew로 간단하게 설치했다. 1. brew install git 2. 터미널 git config -- global user. name " " git config -- global user. email " " 3. Git 설치 완료 작업폴더 만든다. Visual studio code에서 작업 비코는 editor라고 생각한다 1. git init 2. 파일 설치 후 000.txt 파일 만들기 3. 백업하는 법 터미널에 git add 000.txt git commit git add -> staging area -> git commit -> repository 용어정리 git status : 파일 현재 상황 파악 git log : comm..