일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 탄냄비청소
- 핵시러
- 이길수없어 ㅠ
- 롤토체스
- 갬성
- 청년전용 전세대출
- 장미향캔들
- 소이캔들
- 로얄다이스
- 콤보주사위
- 청년맞춤전세
- 나는 청년이다!
- 네이처왁스
- 재료구입
- 코로나19
- 청년전용전세대출
- 처음만들어본다
- 캔들처음입문
- 종로
- 롤업데이트
- 골드왁스
- 랜덤다이스
- 안심전세
- app-ads.txt
- 올바른사용법
- 방산시장
- 청년을위한전세
- 11.20패치
- 리뷰헌트
- 캔들만들기
Archives
- Today
- Total
목록프로그래밍 연습 (2)
해동이❤︎이중생활ಠ‸ಠ
유니티 터레인 꿀팁 메쉬->터레인
https://lmhpoly.com/convert-mesh-to-unity-terrain/
프로그래밍 연습
2020. 4. 24. 17:23

public class ItemGenerator : MonoBehaviour { public GameObject applePrefab; public GameObject bombPrefab; float span = 1.0f; float delta = 0; int ratio = 2; float speed = -0.03f; public void SetParameter(float span,float speed , int ratio) { this.span = span; this.speed = speed; this.ratio = ratio; } // Start is called before the first frame update void Start() { } // Update is called once per f..
프로그래밍 연습
2020. 4. 17. 10:56