일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 데이터 과학
- 김양재
- 김양재 목사
- 인공지능
- No SQL
- 통계
- probability
- nodeJS
- 빅 데이타
- 확률
- c++
- MongoDB
- 김양재 목사님
- 딥러닝
- data science
- Artificial Intelligence
- node.js
- Big Data
- openCV
- 우리들교회
- WebGL
- 주일설교
- R
- Machine Learning
- Deep learning
- 빅 데이터
- 빅데이타
- 빅데이터
- 몽고디비
- Statistics
- Today
- Total
목록click (2)
Scientific Computing & Data Science
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..