몇년째 flash builder 툴 업데이트도 없고
flash player는 이제 곧 막히고 안드로이드 64비트 지원도 더디고 곧 8월이면 apk도 못 올릴텐데
html5 로 가던지 unity 로 가야 할듯
몇년째 flash builder 툴 업데이트도 없고
flash player는 이제 곧 막히고 안드로이드 64비트 지원도 더디고 곧 8월이면 apk도 못 올릴텐데
html5 로 가던지 unity 로 가야 할듯
UML DISTILLED
http://www.kyobobook.co.kr/product/detailViewKor.laf?ejkGb=KOR&mallGb=KOR&barcode=9788972832614&orderClick=LAH&Kc=
uml 책은 이것을 추천
제일 앞장과 뒷장 이미지만 이해할 정도로만 보면 될듯
https://assetstore.unity.com/packages/tools/video/ffmpeg-unity-bind-93622
https://github.com/thanh-nguyen-kim/Unity_Android_Screen_Recorder
홈브류로 설치
config.xml에서 워크스페이스 위치를 수정해야 변할듯
유니티용 캐릭터 커스터마이징 오픈소스
https://github.com/umasteeringgroup/UMA
기타 커스터마이징 관련
makehuman 파이썬으로된 독립 프로그램
https://github.com/EPinci/NFCSharp
윈폼에서 됌, 유니티에서 빌드되는것 확인
유니티에서 테스트는 못해봄
emgucv opencv unity 에서 가능
유니티 최신 버젼에 빌드 옵션 수정할것
흑백 출력
void Update () {
if (webcamTexture.didUpdateThisFrame)
{
webcamTexture.GetPixels32(colors);
GCHandle imageHandle = GCHandle.Alloc(colors, GCHandleType.Pinned);
GCHandle matHandle = GCHandle.Alloc(bytes, GCHandleType.Pinned);
using (Image<Bgra, byte> image = new Image<Bgra, byte>(webcamTexture.width, webcamTexture.height, webcamTexture.width * 4, imageHandle.AddrOfPinnedObject()))
{
//using (Mat mat = new Mat(webcamTexture.height, webcamTexture.width, DepthType.Cv8U, 3, matHandle.AddrOfPinnedObject(), webcamTexture.width * 3))
//{
// CvInvoke.CvtColor(image, mat, ColorConversion.Bgra2Bgr);
// //CvInvoke.CvtColor(mat, image, ColorConversion.Bgr2Gray);
// tex.LoadRawTextureData(mat.Bytes);
// tex.Apply();
//}
using (Image<Bgr, byte> mat = new Image<Bgr, byte>(webcamTexture.width, webcamTexture.height, webcamTexture.width * 3, matHandle.AddrOfPinnedObject()))
{
CvInvoke.CvtColor(image, mat, ColorConversion.Bgra2Bgr);
//CvInvoke.CvtColor(mat, image, ColorConversion.Bgr2Gray);
Image<Gray, byte> grayframe = mat.Convert<Gray, byte>();
Image<Bgr, byte> grayframe2= grayframe.Convert<Bgr, byte>();
tex.LoadRawTextureData(grayframe2.Bytes);
tex.Apply();
}
}
imageHandle.Free();
matHandle.Free();
}
}
거북이 svn 과 dropbox icon 문제 해결법
https://www.dropboxforum.com/t5/Dropbox/Ability-to-disable-shell-overlay-icons/idi-p/111622/page/5
regsvr32 /u "%LOCALAPPDATA%\Dropbox\bin\DropboxExt.26.dll"
regsvr32 /u "%LOCALAPPDATA%\Dropbox\bin\DropboxExt64.26.dll"
regsvr32 /u "%APPDATA%\Dropbox\bin\DropboxExt.26.dll"
regsvr32 /u "%APPDATA%\Dropbox\bin\DropboxExt64.26.dll"
regsvr32 /u "C:\Program Files\Dropbox\Client\DropboxExt.26.dll"
regsvr32 /u "C:\Program Files\Dropbox\Client\DropboxExt64.26.dll"
regsvr32 /u "C:\Program Files (x86)\Dropbox\Client\DropboxExt.26.dll"
regsvr32 /u "C:\Program Files (x86)\Dropbox\Client\DropboxExt64.26.dll"
doxygen
문서화
https://graphviz.gitlab.io/
다이어 그램 에 필요함
jautodoc
eclipse 플러그인 으로 주석 빠진 문서화에 도움
비쥬얼 스튜디오에서 단축키
Alt + E I M 하면 주석생성