2014년 12월 17일 수요일

MyFonts: Fonts for Print, Products & Screens

MyFonts: Fonts for Print, Products & Screens

C# - Dictionary의 Class, Struct 노드 추가하고 수정시 방법


1. 첫번째.


class Test
{
public struct Point
{
public DateTime lastRecorded;
public TimeSpan totalTime;
public int totalCalls;
}

private Dictionary dic = new Dictionary();

public void SetValue(string tag, out point)
{
dic.TryGetValue(tag, out point);
point.totalCalls= 1;
dic[tag] = point;
}
}




2. 두번째


class Test
{
public struct Point
{
public DateTime lastRecorded;
public TimeSpan totalTime;
public int totalCalls;
}


private Dictionary dic = new Dictionary();


public void SetValue(string tag, out point)
{
dic.TryGetValue(tag, out point);
point.totalCalls= 1;
//dic[tag] = point;   // 전체 복사 아니라면 dictionary 내에 값은 변경됨.
}
}

TouchScript

TouchScript

Rotating, Panning, and Zooming a Camera in Unity | { Jibran I. Syed }

Rotating, Panning, and Zooming a Camera in Unity | { Jibran I. Syed }

Unity3d: Pinch zoom and swipe camera movements in unity3d for Iphone

Unity3d: Pinch zoom and swipe camera movements in unity3d for Iphone

Camera touch control script - Unity Answers

Camera touch control script - Unity Answers

Support for TMX maps · bjorn/tiled Wiki · GitHub

Support for TMX maps · bjorn/tiled Wiki · GitHub

2014년 12월 8일 월요일

Unity3D iOS 자동화 빌드

http://www.slideshare.net/mobile/gsk120/unity-auto-build-ios

Unity3D - Animation Event Skip 안시키는 방법

렌더링이 건너띄거나 하면 발생하는듯 하다. 정확하지는 않은데, 아래와 같은 경우가 있었다.
에디터에서 약20 fps 나와도 문제없이 이벤트들이 처리가 되었다.
하지만, 디바이스에서 실행했을때에는 이벤트들이 처리되지 않아서 제대로 플레이가 되지 않았습니다.
이것저것 알아본 결과 로직처리와 렌더링이 맞지않아서 발생하는 문제인듯 해서 수직동기화 기능을 넣으니 프레임율이 낮아도 정상 플레이는 가능했다.

사람의 마음을 얻는 심리학 5가지 원칙 – 인간관계가 좋아지는 과학적인 방법

  사람과 사람 사이의 관계는 단순해 보이지만 실제로는 매우 섬세하고 복잡합니다. 우리는 누구나 좋은 인간관계를 원합니다. 직장에서는 협력적인 관계를 만들고 싶고, 일상에서는 신뢰할 수 있는 사람들과 가까워지고 싶어 합니다. 그래서 많...