일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 빅데이타
- Statistics
- nodeJS
- WebGL
- R
- probability
- 김양재 목사
- 몽고디비
- 주일설교
- 우리들교회
- data science
- 빅데이터
- Machine Learning
- c++
- 통계
- 데이터 과학
- 김양재
- No SQL
- 빅 데이터
- MongoDB
- Deep learning
- 딥러닝
- 확률
- openCV
- 김양재 목사님
- 인공지능
- node.js
- Big Data
- Artificial Intelligence
- 빅 데이타
- Today
- Total
목록object (3)
Scientific Computing & Data Science
using UnityEngine;using System.Collections; public class ObjectTouched : MonoBehaviour {public GUIText myText;private Ray myRay = new Ray();RaycastHit myHit = new RaycastHit(); // Use this for initializationvoid Start () {myText.text = "";} // Update is called once per framevoid Update () { if(Input.touchCount > 0){if(Input.GetTouch(0).phase.Equals(TouchPhase.Began)){myRay = Camera.main.ScreenPo..
using UnityEngine;using System.Collections; public class ObjectClicked2 : MonoBehaviour {Ray myray = new Ray();RaycastHit myhit = new RaycastHit(); // Use this for initializationvoid Start () {} // Update is called once per framevoid Update () {myray = Camera.main.ScreenPointToRay(Input.mousePosition); if (Physics.Raycast(myray, out myhit, 1000.0f) && Input.GetMouseButtonDown(0))print(myhit.coll..
A designated command executed when an object is clickedThis example shows to let change an object's color when it is clickedusing UnityEngine;using System.Collections; public class ObjectClicked : MonoBehaviour {public GUIText myText; // Use this for initializationvoid Start () {} // Update is called once per framevoid Update () {} void OnMouseDown(){Activate();} void OnMouseEnter(){} void OnMou..