일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 블록체인
- HTML
- docker
- jQuery
- EC2
- RDS
- Servlet
- 웹소켓
- CSS
- 암호화
- 비트코인
- 배포
- PL/SQL
- JavaScript
- 알고리즘
- phaser
- Spring
- SQL
- websocket
- Ajax
- model1
- tiles.xml
- express
- autowired
- node.js
- 도커
- 웹게임
- JSP
- AWS
- Cookie
- Today
- Total
목록Game/Unity (2)
記錄
public class Rotator : MonoBehaviour { // Update is called once per frame void Update () { transform.Rotate(new Vector3(15, 30, 45) * Time.deltaTime); }} Transform DescriptionPosition, rotation and scale of an object. Every object in a scene has a Transform. It's used to store and manipulate the position, rotation and scale of the object. Every Transform can have a parent, which allows you to ap..
Rigidbody DescriptionControl of an object's position through physics simulation. 물리 시뮬레이션을 통해서 object의 위치를 제어하는 컴포넌트. Adding a Rigidbody component to an object will put its motion under the control of Unity's physics engine. Even without adding any code, a Rigidbody object will be pulled downward by gravity and will react to collisions with incoming objects if the right Collider component is als..