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