• 내용으로 건너뛰기

GINS WIKI 긴스 위키

사용자 도구

  • 로그인

사이트 도구

  • 최근 바뀜
  • 미디어 관리자
  • 사이트맵
현재 위치: 긴스위키 GINS wiki » object
추적:

object

검색

아래에서 검색 결과를 찾을 수 있습니다.

Contains
  • 정확히 일치
  • 시작
  • 끝
  • Contains
@language
  • 모든 네임스페이스
  • language:unity (24)
  • language:cocoa (7)
  • language:gamemaker (7)
  • language:csharp (2)
  • language:flash (2)
  • language:jquery (2)
  • language:php (2)
  • language:2d-game-physics (1)
  • language:css (1)
  • language:javascript (1)
  • language:objc (1)
  • language:python (1)
  • language:shader (1)
  • language:unreal (1)
  • language:uwp (1)
Any time
  • Any time
  • 저번 주
  • 저번 달
  • 저번 년도
조회수로 정렬
  • 조회수로 정렬
  • Sort by last modified

일치하는 문서 이름:

  • c# 사용하는 오브젝트 이름 짓는 규칙
  • objective_c
  • gameobjectpool

전체 텍스트 결과:

2D, 3D UI @language:unity:ngui
40 조회 수, 마지막으로 수정됨: 13개월 전
Text2D.cs 를 FloatingTextLabel 라벨이 추가한다. * TargetObject에 따라다닐 오브젝트를 추가 ( 위에서 만든, 'objTest'를 추가 ) * Worl... a mainCamera; public Camera guiCamera; public GameObject prefab; public void fire( Vector3 clickedPos_ ) { GameObject _gameObj = Instantiate( prefab, clickedPos_, Quaternion.identity ) as GameObject; // No mean yet, just align as child SomeTool
목표 @language:unity:playmaker
40 조회 수, 마지막으로 수정됨: 13개월 전
playmaker:pmexam1_hierarchy_2.png|}} * **MovingObject** : 이동할 오브젝트 * **Position** : 오브젝트가 이동할 경로들의 부모... 동할지, 랜덤하게 선택하게 이동할지 결정. * **MsgRecver** : MovingObject의 메시지를 받을 서브 오브젝트. ===== 씬 화면 ===== | {{:languag... ker:pmexam1_gameview_1.png|}} | 움직일 오브젝트, **MovingObject** | | {{:language:unity:4-playmaker:pmexam1_gamev... 모름 ===== PlayMaker FSM 추가 ===== 게임 오브젝트 **MovingObject**에 새로운 FSM 추가. (PlayMaker 태그가 붙어 있는 스샷 추가) ====
Velocity @language:2d-game-physics
30 조회 수, 마지막으로 수정됨: 13개월 전
ur y velocity // each frame call game loop to set object's position(move it along the predefined angle) function GameLoop() { movingObject.x = movingObject.x + velocity_x; movingObject.y = movingObject.y + velocity_y; }//end game loop </code> ======Accelerat
gameobjectpool @language:unity:코드조각
22 조회 수, 마지막으로 수정됨: 13개월 전
ing System.Collections.Generic; public class GameObjectPool { protected Queue<GameObject> mDefautQueue; protected int mRefillTiming = 5; protected int mCnt... protected int mMaxNumber = 20; protected GameObject mTargetPrefab; protected GameObject mParentObj; public void initQueue( GameObject parentObj_, GameOb
유니티 코딩 중 메모 @language:unity
16 조회 수, 마지막으로 수정됨: 13개월 전
====== 객체를 멈춘 상태로 만들어 놓고, 시작할때 활성화 할때 ====== GameObject를 비활성활 상태로 만들고 필요할때 활성화할때. * Awake()에서 <code>gameObject.SetActive(false);</code>로 비활성 상태로 만들고, * 필요할때, <code>gameObject.SetActive(true)</code> 호출해서 활성화한다. 그리고, * **Sta... tation/ScriptReference/index.Accessing_Other_Game_Objects.html|Overview: Accessing Other Game Objects]] =
ikimagebrowserview @language:cocoa
15 조회 수, 마지막으로 수정됨: 13개월 전
e an NSMutableArray so that we can simply load up objects into it. Next we take care of some configuration... wserView. I'll discuss this more below). Display Objects Now that we have this setup we need to have a w... rowserItem. The item is simple, it has an NSImage object and an NSString that provides an ID for the item.... ) imageRepresentation; </code> In order for this object to conform to the informal protocol, these three
Unity 플러그인 @language:unity:plugin
14 조회 수, 마지막으로 수정됨: 13개월 전
클래스와 클래스 생성자를 찾고(얻고) // 인스턴스를 생성하고 --> 이렇게 쓰는 모양 jobject createJavaObject( JNIEnv* jni_env ) { // find class definition jclass cls_JavaClass = jni_env->FindCl... (cls_JavaClass, "<init>", "()V"); // create object instance jobject obj_JavaClass = jni_env->NewObject(cls_JavaClass, mid_JavaClass); // return objec
Tween Assets @language:unity
12 조회 수, 마지막으로 수정됨: 13개월 전
쓰니 잊어버려서. <code csharp> LeanTween.rotate ( gameObject, orgRotate, 1f, new object[] { "ease", LeanTweenType.easeOutExpo, "delay", _delay } // 옵션 파라미터는 바로 윗줄 처럼 쓴다. ); </code> 옵션 파라미터는 * **new object[] { ... }** : 오브젝트를 할당해서 파라미터를 채운다. * 옵션 형식은 { ... s.transform.position; // 이동할 좌표 HOTween.To( gameObject.transform, // Prop()에서 position 변수를 사용할 것이기 때문에,
Images @language:cocoa
9 조회 수, 마지막으로 수정됨: 13개월 전
entation Is Chosen ==== When you tell an NSImage object to draw itself, it searches its list of image rep... single representation—for example, if the NSImage object has two color TIFF representations with the same ... st send a setDataRetained: message to the NSImage object. Preferably, you should send this message immediately after creating the image object. If you send the message after rendering the imag
코코아 @language:objc
8 조회 수, 마지막으로 수정됨: 13개월 전
atag-robots=() metatag-keywords=(코코아,cocoa,오브젝트C,Objective C) metatag-description=(오브젝트 C 언어 설명) }} ===... * {{:language:obj-c_ing_.pdf|다른 요약 문서}} ====== Objective C ====== * C 언어 기반의 확장판 언어. 즉, C 언어의 기본 라이브... 들에 대한 프로젝트 위저드도 있는데, 이건 따로 설치해야 하는 것 같다. ======= Objective C 시작 ====== ObjC 에서는 함수 호출이라고 부르지 않고, 메시지 전송이... ======== The id type ======== <code objc> id anObject; </code> id 라는 키워드가 존재하고, 모든 오브젝트를 가리키는 대명사로 사용
목표 @language:unity:playmaker
8 조회 수, 마지막으로 수정됨: 13개월 전
enpick-1.jpg|}} ====== 사용할 변수 ====== * didPickObject : 게임오브젝트가 선택 되었는가? * pickedGameObject : 선택한 게임 오브젝트 저장 * mouseX, mouseY : 마우스가 클릭된 화면상의 위치 * isDebu... ty:playmaker:pm-screenpick-3.jpg|}} ====== 'checkObject' state ====== - Screen Pick : 전제 조건이 있어서 헤매는 부... *가 설정되지 않으면, 오브젝트를 얻어오지 않았다.</color> * didPickObject와 pickedGameObject 에 확인된 오브젝트를 저장한다. - Game Obje
특징 @language:unity
7 조회 수, 마지막으로 수정됨: 13개월 전
ty:layout-2-3.png?400|}} * <color orange>**GameObject » Create Other » Cube**</color> 메뉴를 선택해서 3차원 공간에 ... . ===== 라이트 추가 ===== * 메뉴에서 <color orange>GameObject >> Create Other >> Directional Light</color> 빛 추가... rl+Alt+F**</color> 또는 \\ 메뉴에서 <color orange>**GameObject >> Move To View**</color> = Ctrl+Shift+F : **씬 ... 여지는 위치로 카메라가 이동된다. = : 메뉴에서 <color orange>**GameObject >> Align with View**</color> ===== 표면 접점 기능 ====
그냥 메모 @language:flash
6 조회 수, 마지막으로 수정됨: 13개월 전
> ===== 이벤트 함수 추가 ===== <code actionscript3> //<ObjectName>.addEventListener( <event>, <functionName> ); // ObjectName : openBtn // event : MouseEvent.CLICK openBtn... dler(event:Event):void { } </code> ===== DisplayObject ===== * x/y/z 좌표 있고, uint 타입(?)이라고? * .width... guage:flash:flash_rotation_1.png|}} ===== DisplayObject, Tween ===== Tween 클래스를 잘 써먹자. <code actionscr
오브젝트 선택 or 컴포넌트 선택 @language:unity
6 조회 수, 마지막으로 수정됨: 13개월 전
tation/ScriptReference/index.Accessing_Other_Game_Objects.html|Overview: Accessing Other Game Objects]] ===== 다른 게임 오브젝트의 컴포넌트나 스크립트 사용 ===== <code csharp> publ... xample : MonoBehaviour { void Start() { GameObject go = GameObject.Find("SomeGuy"); go.GetComponent<OtherScript>().DoSomething(); GameObject player
ShaderLab : 기본형식 @language:shader:unity
6 조회 수, 마지막으로 수정됨: 13개월 전
, **Blend를 넣어 봅니다.** | <code> Shader "Study/TransObject" { Properties { _MainTex ("MainTex", 2D) = ... } } } </code> | {{:language:shader:study_transobject_1.png|}} | Blend만 넣어서는 결과가 나오지 않음. 어느 정도의 알파값을 ... 알파값으로 사용하도록 코드를 추가. | <code> Shader "Study/TransObject" { Properties { _Alpha ("AlphaColor", COLOR) =... } } } </code> | {{:language:shader:study_transobject_2.png|}} | | ::: | {{:language:shader:study_trans
클래스 - 기본 @language:javascript
5 조회 수, 마지막으로 수정됨: 13개월 전
basic template @language:unity
5 조회 수, 마지막으로 수정됨: 13개월 전
util @language:unity:코드조각
5 조회 수, 마지막으로 수정됨: 13개월 전
윈도우를 구성하는 방법 @language:unity:ngui
5 조회 수, 마지막으로 수정됨: 13개월 전
해본 방법 @language:cocoa
4 조회 수, 마지막으로 수정됨: 13개월 전
2D 좌표 >> 3D 좌표 @language:unity
4 조회 수, 마지막으로 수정됨: 13개월 전
iTweenPath @language:unity
4 조회 수, 마지막으로 수정됨: 13개월 전
외부 링크 @language:unity
4 조회 수, 마지막으로 수정됨: 13개월 전
Visual C++ Language Reference (C++/CX) @language:uwp
4 조회 수, 마지막으로 수정됨: 13개월 전
디렉토리 탐색하기 @language:cocoa
3 조회 수, 마지막으로 수정됨: 13개월 전
델리게이트에 대해서 @language:cocoa
3 조회 수, 마지막으로 수정됨: 13개월 전
만들 수 있는 방법 @language:gamemaker
3 조회 수, 마지막으로 수정됨: 13개월 전
PHP 클래스 @language:php
3 조회 수, 마지막으로 수정됨: 13개월 전
Trigger, Collision @language:unity
3 조회 수, 마지막으로 수정됨: 13개월 전
궁금한것 @language:cocoa
2 조회 수, 마지막으로 수정됨: 13개월 전
파일다운로드 @language:cocoa
2 조회 수, 마지막으로 수정됨: 13개월 전
basic @language:flash
2 조회 수, 마지막으로 수정됨: 13개월 전
view를 사용한 화면 전환 방식으로 작성한 것 @language:gamemaker
2 조회 수, 마지막으로 수정됨: 13개월 전
함수 퀵 설명 func ref @language:gamemaker
2 조회 수, 마지막으로 수정됨: 13개월 전
공통 : 모바일 OS @language:gamemaker
2 조회 수, 마지막으로 수정됨: 13개월 전
Function List @language:gamemaker
2 조회 수, 마지막으로 수정됨: 13개월 전
jQuery 재참고 @language:jquery
2 조회 수, 마지막으로 수정됨: 13개월 전
Installation @language:python
2 조회 수, 마지막으로 수정됨: 13개월 전
Rigidbody2D @language:unity
2 조회 수, 마지막으로 수정됨: 13개월 전
RigidBody @language:unity
2 조회 수, 마지막으로 수정됨: 13개월 전
Unity Editor: Object at index 0 is null @language:unity
2 조회 수, 마지막으로 수정됨: 13개월 전
Unit @language:unreal
2 조회 수, 마지막으로 수정됨: 13개월 전
c# 사용하는 오브젝트 이름 짓는 규칙 @language:csharp
1 조회 수, 마지막으로 수정됨: 13개월 전
CoRoutine에 람다 표현식 응용 @language:csharp
1 조회 수, 마지막으로 수정됨: 13개월 전
CSS 시작 정보 @language:css
1 조회 수, 마지막으로 수정됨: 13개월 전
인스턴스 @language:gamemaker
1 조회 수, 마지막으로 수정됨: 13개월 전
뷰와 DRAW_GUI 이벤트 @language:gamemaker
1 조회 수, 마지막으로 수정됨: 13개월 전
jQuery 코드 조각 @language:jquery
1 조회 수, 마지막으로 수정됨: 13개월 전
PHP 복붙용 코드 모음 @language:php
1 조회 수, 마지막으로 수정됨: 13개월 전
ParticleSystem @language:unity
1 조회 수, 마지막으로 수정됨: 13개월 전
Animation backward Play @language:unity
1 조회 수, 마지막으로 수정됨: 13개월 전
주요 링크 @language:unity:4-tween
1 조회 수, 마지막으로 수정됨: 13개월 전
개념 @language:unity:curvy
1 조회 수, 마지막으로 수정됨: 13개월 전
FSM @language:unity:playmaker
1 조회 수, 마지막으로 수정됨: 13개월 전

문서 도구

  • 문서 보기
  • 이전 판
  • 역링크
  • 맨 위로
별도로 명시하지 않을 경우, 이 위키의 내용은 다음 라이선스에 따라 사용할 수 있습니다: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki