• 내용으로 건너뛰기

GINS WIKI 긴스 위키

사용자 도구

  • 로그인

사이트 도구

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

position

검색

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

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

전체 텍스트 결과:

2D, 3D UI @language:unity:ngui
40 조회 수, 마지막으로 수정됨: 13개월 전
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition); RaycastHit hit; if( Physics.Raycast(ray... dCamera; public Camera guiCamera; public TweenPosition tweenPos; public void init( string text_, Ga... mera.WorldToViewportPoint( targetObject.transform.position ); __pos = guiCamera.ViewportToWorldPoint( __pos ); __pos.z = 0f; transform.position = __pos; } // Use this for initialization v
목표 @language:unity:playmaker
21 조회 수, 마지막으로 수정됨: 13개월 전
y_2.png|}} * **MovingObject** : 이동할 오브젝트 * **Position** : 오브젝트가 이동할 경로들의 부모 오브젝트 * **1_MovPath** : ... _1.png|}} = PathObjectIndex : **MovingObject \ Position**의 Child 오브젝트 개수를 구한다. = : 이동할 위치 정보를 갖고 있는 Gam... 액션 | | \\ **Get Child Count** 액션에서 GameObject에 **Position** 오브젝트를 할당. \\ || * **I... * 액션 결과 값에 따라, 이동할 State를 준비한다. ^ * MoveToFirstPosition * Next React 테스트 ==== State, Event 추가 ====
VS 2010 이 실행되지 않을때 @language:unity
16 조회 수, 마지막으로 수정됨: 13개월 전
de void OnInspectorGUI() { Vector3 wpos; // World Position EditorGUILayout.BeginHorizontal(); { if (DrawButton("W", "Reset World Position", IsResetPositionValid(trans), 20f)) { NGUIEditorTools.RegisterUndo("Reset World Position", trans); trans.position = Vector3.zero; } wpos = DrawVector3(trans.position); } EditorGUILayout.EndHor
CSS 시작 정보 @language:css
15 조회 수, 마지막으로 수정됨: 13개월 전
하여 오브젝트간의 가림 상태를 정한다. 사용하기 위해서는 조건이 필요하다. * ''position''으로 위치를 정하거나 * ''position: absolute'', ''position: relative'', ''position: fixed'', ''position: sticky'' * ''display:flex'' 사용된 오브젝트의 자식 오브젝트 * 일반적인 경우라
a @language:shader
13 조회 수, 마지막으로 수정됨: 13개월 전
조체 ==== <code> struct VS_OUTPUT { float4 Pos : POSITION; float2 Tex : TEXCOORD0; } </code> * 변수타입, 변... 드 <code> //example VS_OUTPUT VS ( float4 Pos : POSITION float2 Tex : TEXCOORD0 ) { VS_OUTPUT out = (V... 맨틱으로 좌표정보임을 알리는 역할을 한다. struct VS_INPUT { float4 mPosition : POSITION; } struct VS_OUTPUT { float4 mPosition : POSITION; } </code> ====화면 변환을 위한 행렬 변수 정의==== * 모델
간단한 3D 파이프라인 @language:shader
11 조회 수, 마지막으로 수정됨: 13개월 전
맨틱으로 좌표정보임을 알리는 역할을 한다. struct VS_INPUT { float4 mPosition : POSITION; } struct VS_OUTPUT { float4 mPosition : POSITION; } </code> ====화면 변환을 위한 행렬 변수 정의==== * 모델의 정점 정보를 읽어와서 - 월드좌표계로 변환 (행렬곱) 후 저장 - 위의
Tween Assets @language:unity
10 조회 수, 마지막으로 수정됨: 13개월 전
<code csharp> Vector3 _newPos = endPos.transform.position; // 이동할 좌표 HOTween.To( gameObject.transform, // Prop()에서 position 변수를 사용할 것이기 때문에, transform 까지 적어줘야 제대로 동작한다. 0.5f, new TweenParms().Prop("position", _newPos).OnComplete(movingCompleted) // position 속성을 사용하고,
position / localPosition @language:unity
8 조회 수, 마지막으로 수정됨: 13개월 전
====== position / localPosition ====== 도움말에 있었던 것 같은데, 부모 게임 오브젝트가, * 없다 : position == localPosition * 있다 : position != localPosition * 부모 기준으로 설정 좌표를 제대로 변경하고 싶다면, **localPosition** 변경
jQuery 코드 조각 @language:jquery
6 조회 수, 마지막으로 수정됨: 13개월 전
{ width: 100px; height: 100px; position: fixed; background: #0d77b6; } #sam... ht: 30px; background-color:lightgray; position: relative; /* z-index 가 통하려면 position 이 필요하다 */ z-index: 100; border-style: solid; border... ar _box = $('#sample_box_1'); var _pos = _box.position(); var _doc_root = $(document); var _doc_
jQuery 재참고 @language:jquery
5 조회 수, 마지막으로 수정됨: 13개월 전
x; width: 100px; height: 100px; position: fixed; background: #0d77b6; } </styl... 본 위치와 현재 화면의 width,height를 얻는다. var _pos = _box.position(); var _doc_root = $(document); var _doc_w = ... x; width: 100px; height: 100px; position: fixed; background: #0d77b6; } </styl... var _box = $('#sample_box'); var _pos = _box.position(); var _doc_root = $(document); var _doc_
widget-size @language:unity:ngui
5 조회 수, 마지막으로 수정됨: 13개월 전
erTop); Debug.Log( string.Format("inner_uv{0} position{1} localPos{2} drawingDimensions{3} drawRegion{4}... ", inner_uv.ToString(), pivot2DObj.transform.position.ToString(), // position : 유니티 뷰포트 단위 pivot2DObj.transform.localPosition.ToString(), // 픽셀 단위 spr.drawingDimensions.ToString(),
2D 좌표 >> 3D 좌표 @language:unity
4 조회 수, 마지막으로 수정됨: 13개월 전
ameraRay = subCamera.ScreenPointToRay( Input.mousePosition ); // subCamera시점에서 마우스 위치를 ... // targetObject가 ... ay, out _hitRet, 40f ) ) { // 3D 좌표를 저장 target.position = _hitRet.point; // 어디를 가리키는지 선을 그어본다. Debug.... ameraRay = subCamera.ScreenPointToRay( Input.mousePosition ); // 어떤 물체든 화면상에 오브젝트가 있는 곳이라면, if( Physics.Rayc... itRet, 40) ) { Debug.DrawLine( _cameraRay.origin, _hitRet.point ); target.position = hit.point; } </code>
유니티 코딩 중 메모 @language:unity
4 조회 수, 마지막으로 수정됨: 13개월 전
== 더 좋은 방법 없나.. <code csharp> GameObj_1.transform.position = GameObj_2.transform.position; GameObj_1.transform.transform = GameObj_2.transform.transform; </code> ===... nDrawGizmos() { Gizmos.DrawWireSphere(transform.position,.25f); } </code> - 움직이려는 오브젝트에 아래와 같은 스크립트를 추가... nDrawGizmos() { Gizmos.DrawWireSphere(transform.position,.25f); } </code> ===== OnDrawGizmos ===== * **
Velocity @language:2d-game-physics
3 조회 수, 마지막으로 수정됨: 13개월 전
city // each frame call game loop to set object's position(move it along the predefined angle) function Game... ngle // each frame call game loop to set object's position(move it along the predefined angle) function Game... rue; // each frame call game loop to set object's position function GameLoop() { if( moving == true ) {
CSS 템플릿 : 고정식 좌측 메뉴 @language:css
3 조회 수, 마지막으로 수정됨: 13개월 전
{ /* left menu base */ background: #47a3da; position: fixed; } .lm-base h3 { color: #afdefa; font... x; right:50px; width:100px; height:100px; position: fixed; background: #0d77b6; } </style> <div ... var _lm = $('.lm-base-left'); var _pos = _lm.position(); // h3 타이틀 찾아 두기 var _h3_a = $('#left-
간단한 슈팅 게임 @language:gamemaker
2 조회 수, 마지막으로 수정됨: 13개월 전
두 오브젝트간의 각도와 방향 구하기 @language:unity
2 조회 수, 마지막으로 수정됨: 13개월 전
util @language:unity:코드조각
2 조회 수, 마지막으로 수정됨: 13개월 전
개념 @language:unity:curvy
2 조회 수, 마지막으로 수정됨: 13개월 전
iTweenPath @language:unity
1 조회 수, 마지막으로 수정됨: 13개월 전
gameobjectpool @language:unity:코드조각
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