일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 웹소켓
- Spring
- EC2
- 암호화
- JSP
- SQL
- 웹게임
- node.js
- docker
- Ajax
- 배포
- tiles.xml
- Cookie
- Servlet
- jQuery
- RDS
- websocket
- CSS
- 도커
- JavaScript
- model1
- 비트코인
- 블록체인
- autowired
- 알고리즘
- PL/SQL
- AWS
- phaser
- express
- HTML
- 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..