블로그 이미지
Every unexpected event is a path to learning for you. blueasa

카테고리

분류 전체보기 (2795)
Unity3D (852)
Programming (478)
Server (33)
Unreal (4)
Gamebryo (56)
Tip & Tech (185)
협업 (61)
3DS Max (3)
Game (12)
Utility (68)
Etc (98)
Link (32)
Portfolio (19)
Subject (90)
iOS,OSX (55)
Android (14)
Linux (5)
잉여 프로젝트 (2)
게임이야기 (3)
Memories (20)
Interest (38)
Thinking (38)
한글 (30)
PaperCraft (5)
Animation (408)
Wallpaper (2)
재테크 (18)
Exercise (3)
나만의 맛집 (3)
냥이 (10)
육아 (16)
Total
Today
Yesterday

[링크] https://jwidaegi.blogspot.com/2019/07/unity-notch-ui.html

 

Unity Notch(노치) 단말기 UI 설정

상단의 프레임 아래쪽으로 툭 튀어나와 있는 H/W 영역인 Notch의 처리를 위해 체크해야 하는 항목을 정리해 둔다. 빌드 세팅 Player Setting > Android > Resolution and Presentation 내부 설정 확인 ...

jwidaegi.blogspot.com

 

반응형
Posted by blueasa
, |
if (animator.GetCurrentAnimatorStateInfo(0).IsName("YourAnimationName"))
{
    // do your magic
}

 

[출처] https://stackoverflow.com/questions/23449494/is-there-an-isplaying-type-function-for-animator

 

Is there an isPlaying() type function for Animator

I know you can do animation.isPlaying() but is there something similiar for Animator ? So if I have: Animator animator; void Start() { animator = GetComponenet(); } Then I c...

stackoverflow.com

 

반응형
Posted by blueasa
, |

[추가]

아이폰11프로(iOS13)를 사고 이전 폰(iOS12) 데이터를 백업&복원했는데 프로파일 메뉴가 없어서 찾아보니 아래와 같은 방법이 있다.

 

----

같은 문제로 검색하다하, 다른 곳에서 해결 방안을 찾아서 여기에도 공유드립니다.
2018년 8월 기준으로... ios12를 설치하기 위한 준비 단계인 프로파일 설치 과정을 따라하시면 됩니다.
물론 ios12를 설치할 필요는 없습니다.

<아이폰의 웹브라우저에서 >
1) beta.apple.com에 접속
2) 애플아이디로 로그인
3) 같은 페이지에, 기기등록 탭 클릭( 가이드 옆) -> 좀 스크롤을 내리시면, (2)프로파일을 다운로드합니다. 아래
-> [프로파일 다운로드] 파란버튼 클릭...
4) ios 12용 프로파일이 설치됨.

< 아이폰의 설정 >
1) 일반 > 프로파일 항목 생긴 것 확인됨.
2) 그 아래 ios12용 프로파일도 같이 설치됨
3) ios12를 설치할 필요는 없습니다.

< 출처는 아래 유튜브 영상입니다. >

 

 

[출처] https://www.clien.net/service/board/cm_iphonien/9610173

 

설정-일반-"프로파일" 메뉴가 없네요 : 클리앙

작년에도 한번 이런적이 있어서 베타를 안올린적이 있는데 지금도 이러네요.. 아이튠즈로 gm을 올리면 먹통이 된다하셔서 사파리에서 받아다가 ota로 올리려고 gm프로파일 링크를 눌러도 설정에 프로파일 메뉴가 없으니 홈화면으로 자꾸 튕겨버립니다. 설정-검색에서 프로파일로 검색하면 프로파일및 모바일기기관리라고 뜨는데 이동이 안되고 뜨지도 않네요. 혹시 해결법을 아시는 분 계신가요?

www.clien.net

 

반응형
Posted by blueasa
, |

[추가]

commit 시 crash 나는 이슈가 있어서 찾아보니

아래와 같은 내용이 있어서 .gitconfig 파일을 열어봤는데 name, email 부분이 없었다.

결과적으로 name에 한글로 입력을 해서 제대로 저장을 못하고 크래시가 나는 상황이었다.(한글 지원 안하는 듯)

SourceTree의 name은 영어로만 입력하자.

 

------------------------------------------

Hi, it seems that every time I commit atm SourceTree crashes, I did a search here and the only solution I could find was to delete a draft commit message but I don't have one ( see attached  )

It appears that my commits are working as can see my changes in Bitbucket but very annoying that it crashes

Cheers 

 

 

sourcetreeconfig ‏2 KB

Answer

 Watch

  Like 15 people like this

27 answers

 

 

9votes

Jörg Rösner Oct 17, 2019 • edited

Basically, I had the same issue. The error occours because no .gitconfig will create during the setup of 3.2.4. or you have missed to check the checkbox to create user information during setup wizard.

Open Sourcetree and check "File status" - you will see that there no user is available:

Fix the Issue

Close Sourcetree

To fix the issue open the explorer and navigate to: C:\Users\

Open the folder with your username

In this folder you should have a file with name ".gitconfig". If the file not exist, create it (It is no typo, the name will written with the dot at the beginning of the filename: .gitconfig

Open the existing / new file with an editor and add the following lines to the end of the file

[user]
name = User
email = Email

For "User" use a standard name (It is not the Windows Username meant)

For "Email" use a standard email Address

Save the file and start Source Tree again. You will see now, that a user is available in the "Status History".

BTW.: You can find your old user data in your last commits:

Go to "History" and select a commit. Here you can see in the commit information for the "Autor": Your old data. You should use the the same data as before to keep the structure:

 

Greets CR

 

 

[출처] https://community.atlassian.com/t5/Sourcetree-questions/Crash-on-commit/qaq-p/42492

 

Crash on commit

Hi, it seems that every time I commit atm SourceTree crashes, I did a search here and the only solution I could find was to delete a draft commit message but I don't have one ( see attached  ) It appears that my commits are working as can see my changes in

community.atlassian.com

 

반응형
Posted by blueasa
, |

svn 을 사용할 경우 내 변경이 다른 이의 작업에 영향을 줄까봐 commit 을 하지 않는 나쁜 습관을 갖게 되는 경우가 많다.

물론 branch 에서 작업하면 되지만 svn 은 브랜치와 머지가 쉽지 않으므로 대개 trunk 에서 작업하게 되며 이로 인해 커밋을 자주 하지않는 악순환에 빠지게 된다.

git 은 DVCS 이므로 push 를 하지 않으면 다른 이에게 영향을 주지 않으므로 커밋은 최대한 자주 해주는게 좋지만 로컬 커밋시 자세하게 커밋 메시지를 입력할 필요는 없다..

먼저 feature branch 에서 수시로 커밋하면서 작업을 완료한 후에 여러 개의 커밋을 묶어서 하나의 커밋으로 만들고 커밋 메시지를 다시 입력하고 이후에 push 하면 된다.

 

SourceTree 에서 사용

 

  1. develop(81d6a38) 에서 분기한 "squash_commit_test" 라는 feature 브랜치에서 4개의 커밋을 수행했다. 이 4 개의 커밋을 합쳐보자.
     
  2. 묶을 커밋의 부모 커밋(81d6a38)을 클릭한 후에 "Rebase children of interactively" 선택
  3. rebase 창에서 전체 커밋들의 목록이 표시됨
  4. 위에 있는 가장 최근의 커밋을 선택하고 하단의 "Squash with previous" 클릭하면 commit 3, 4가 하나로 합쳐진다.
     
  5. 4와 2를 합치기 위해 맨 위 커밋을 선택하고 다시 "Squash with previous" 클릭
  6. 2,3,4 가 하나로 합쳐졌다. 다시 맨 위를 선택하고 "Squash with previous" 클릭하여 1과 합친다.
     
  7. 4개의 커밋이 하나의 커밋으로 합쳐졌다.  커밋 메시지를 변경하려면 하단의 "Edit Message" 클릭
     
  8. squash commit 시 기본 커밋 메시지는 다음과 같이 합쳐진 커밋의 해쉬와 커밋 메시지가 표시된다. 알아보기 쉽게 정리된 커밋 메시지를 다시 입력한다.

    SourceTree의 버그인지 squash commit 메시지에 한글을 입력하면 한글이 깨지는 문제가 있다.


     

  9. 커밋 메시지 입력이 끝났으면 하단의 Ok 를 클릭하면 squash commit 이 완료된다. 
  10. 작업이 완료되면 다음과 같이 합쳐진 것을 확인할 수 있다.

 

Ref

 

[출처] https://www.lesstif.com/pages/viewpage.action?pageId=24445167

 

소스트리에서 git squash commit 을 이용하여 여러 개의 커밋을 합치고 정리하기

 

www.lesstif.com

 

반응형
Posted by blueasa
, |
반응형
Posted by blueasa
, |

[링크] https://blog.naver.com/wisestone2007/221321329618

 

RAM 사용량 측정 - Android ‘dumpsys’ 도구를 이용한 모바일 앱 성능 테스트 (3)

ㅇ Android ‘dumpsys’ 도구를 이용한 모바일 앱 성능 테스트(1) ㅇ CPU(Mobile AP) 사용량 측정 -...

blog.naver.com

 

반응형
Posted by blueasa
, |

[링크] https://post.naver.com/viewer/postView.nhn?volumeNo=16638723&memberNo=36878207&navigationType=push

 

아이의 “또 읽어줘” 어떻게 대처하죠?

[BY 키스톤출판] '아이가 또 읽어달라고 하는데 어떡하죠?아마도 아이가 있는 집에선 모두 공감하는 내...

m.post.naver.com

 

반응형
Posted by blueasa
, |

[링크] https://post.naver.com/viewer/postView.nhn?volumeNo=26597111&memberNo=36878207

 

자존감 있는 아이로 키우는 칭찬의 기술 (feat.책쟁이엄마)

[BY 키스톤출판] 격려로 성장한 아이는 자신감을 배웁니다 칭찬으로 성장한 아이는 인정을 배웁니다 인...

m.post.naver.com

 

반응형
Posted by blueasa
, |

c# 서버시간 가져오기 (8)

나는 날짜와 시간을 사용하여 얻을 수있다 :

DateTime now = DateTime.Now;

DateTime 형식 자체로 현재 날짜와 시간을 따로 따로 가져올 수 있습니까?

ASP.net ( C# )에서 DateTime picker 대화 상자를 사용하지 않습니다.


 

음, Today 속성을 사용하여 Today DateTime  DateTime 으로 가져올 수 있습니다.

DateTime today = DateTime.Today;

또는 더 일반적으로 Date 속성을 사용할 수 있습니다. 예를 들어, UTC 날짜를 원할 경우 다음을 사용할 수 있습니다.

DateTime dateTime = DateTime.UtcNow.Date;

그게 당신이 필요로하는 것이 든 없는지는 분명하지 않습니다 ... 단지 날짜를 인쇄 하기를 원하면 다음을 사용할 수 있습니다 :

Console.WriteLine(dateTime.ToString("d"));

또는 명시 적 형식을 사용하십시오.

Console.WriteLine(dateTime.ToString("dd/MM/yyyy"));

standard  custom 날짜 / 시간 형식 문자열에 대해 자세히 알아보십시오. 상황에 따라 문화를 지정하고 싶을 수도 있습니다.

시간과 별도로 날짜에 대해 이야기 할 수있는보다 표현력있는 날짜 / 시간 API를 원한다면, 시작한 Noda Time 프로젝트를 살펴볼 수 있습니다. 아직 제작 준비가되지 않았지만, 우리는 당신이 그걸로하고 싶은 것을 듣고 싶습니다 ...


 

현재 시간 :

DateTime.Now.ToString("HH:mm:ss");

현재 날짜 :

DateTime.Today.ToString("dd-MM-yyyy");


 

Today 속성을 사용하십시오. DateTime.Now 날짜 구성 요소를 반환합니다. DateTime.Now.Date 와 같습니다.


 

여기에서 형식 문자열을 전달하여 날짜 만 가져올 수 있습니다. 현재 날짜에 대한 요구 사항에 따라 다른 날짜 형식을 사용할 수 있습니다.

DateTime.Now.ToString("M/d/yyyy");

결과 : '2010 년 9 월 1 일 '

DateTime.Now.ToString("M-d-yyyy");

결과 : '9-1-2015'

DateTime.Now.ToString("yyyy-MM-dd");

결과 : "2015-09-01"

DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss");

결과 : "2015-09-01 09:20:10"

자세한 내용 custom


 

용도

txtdate.Text = DateTime.Today.ToString("dd-MM-yyyy");


 

for month DateTime.Now.ToString("MM"); for Date DateTime.Now.ToString("dd"); for year DateTime.Now.ToString("yyyy");


 

string now = Convert.ToString(DateTime.Now.ToShortDateString()); Console.WriteLine(now); Console.ReadLine();


 

.NET에는 내장 된 날짜 전용 유형이 없습니다.

규칙은 자정으로 설정된 시간 부분과 함께 DateTime 을 사용하는 것입니다.

정적 Today 속성은 오늘 날짜를 알려줍니다.

 

[출처] https://code-examples.net/ko/q/6805f2

 

어제날짜 현재 날짜 만 C#으로 가져 오기

나는 날짜와 시간을 사용하여 얻을 수있다:DateTime now=DateTime.Now; DateTime 형식 자체로 현재 날짜와 시간을 따로 따로 가져올 수 있습니까? ASP.net(C#)에서 DateTime picker 대화 상자를 사용하지 않습니다.

code-examples.net

 

반응형
Posted by blueasa
, |