본문 바로가기

프로그래밍언어/web

글 작성시 프로그래밍 소스코드 넣는법 - 티스토리 블로그

1. http://colorscripter.com

 

Color Scripter

Simple & Flexible Syntax HighLighter

colorscripter.com

요기로 들어갑니다!

 

2.언어를 입력하면 자동으로 인식합니다!

c#이라고 알아서 인식~!

3.우측 아래 HTML로 복사 를 클릭합니다!

4.html 모드에서 붙여넣기 합니다!

5.그럼 밑에 처럼 코드가 나오게 됩니다! 감사합니다!

1
2
3
4
5
6
7
8
9
10
11
IEnumerator swing()
    {
        yield return new WaitForSeconds(0.1f);
        weaponArea.enabled = true;
        trailRenderer.enabled = true;
        yield return new WaitForSeconds(0.3f);
        trailRenderer.enabled = false;
        yield return new WaitForSeconds(0.3f);
        weaponArea.enabled = false;
        yield break;
    }
cs