반응형

전체 글 223

Unity transform.parent 보단 SetParent()를 사용하자

작업하면서 이런 경고를 본 적이 있다면! RectTransform의 부모는 부모 속성으로 설정됩니다. worldPositionStays 인수가 false로 설정된 상태에서 SetParent 메서드를 대신 사용하는 것이 좋습니다. 그러면 일반적인 UI 크기 조정 문제를 방지할 수 있는 세계 방향 및 크기가 아닌 로컬 방향 및 크기가 유지됩니다. -> 구글은 언제나 친절해 본인의 경우 요로코롬 Pool에 UI들도 넣어뒀는데 이때 코드가 public void CreatePool(GameObject go, bool isGO = true, int count = 10) { Pool pool = new Pool(); pool.isGO = isGO; pool.Init(go, count); Transform tr = i..

Unity/Tips 2022.02.20

워터마크 없이 영상 만들기_OBS

https://obsproject.com/ko/download 내려받기 | OBS OBS Studio을 사용할 수 있는 윈도우 버전은 8, 8.1 그리고 10입니다. obsproject.com https://m.blog.naver.com/mulpureip/221816146728 obs studio 사용법 화면녹화하기 (링크,설치,사용방법) obs studio로 화면녹화를 배워보자 obs studio 사용법,링크,설치,사용방법 화면녹화란? 무엇일까요? 화면녹... blog.naver.com 설명은 역시 네이버........정리 완전 잘해두심 짱짱 쵝오

꿀 유틸리티 2022.02.15

Unity Dotween Kill()이 안될 때 확인

조금 된 일이긴 하지만 위처럼 동전이 살~짝 날아가고 위아래로 움직이는 마음이 좀 아픈 연출을 DOTween으로 구현하고 동전 같은 경우는 Pool에 미리 깔아 두고 사용하고 있었음 #if UNITY_EDITOR using UnityEditor; #endif using System; using DG.Tweening; public class Goods : GoodsBase { Sequence _effect = null; public void Init() { if (_effect == null) { _effect = DOTween.Sequence(); _effect.Append(transform.DOJump(_vec3_end, _jumpPower, _jumpCount, _jumpDuration)); _eff..

Unity/Tips 2022.02.14

Unity 애니메이션은 코드 없이 CrossFade

귀찮게 Parameters를 하나하나 만들고 애니를 하나하나 연결하지 않고 오직 코드만으로도 자연스럽게! 먼저 https://docs.unity3d.com/2021.2/Documentation/ScriptReference/Animation.CrossFade.html Unity - Scripting API: Animation.CrossFade If mode is PlayMode.StopSameLayer, animations in the same layer as animation will be faded out while animation is faded in. if mode is PlayMode.StopAll, all animations will be faded out while animation is f..

Unity/Tips 2022.02.13

오늘의 영어

- 만나서 인사할 때(근황 물어보거나 요즘 어때 이런 느낌으로) How's it going? What's going on? How's things? How's everything? - 대답! happy -> I'm good. / Things are great. / Things are going well. bad -> Could be better. not good / not bad -> Same old, same old. * 좀 친한 아는 사이 같은 느낌으로 조금 더 편하게 인사할 때 What's new? = usually with someone you know. * 만나서 반갑다 할 때 자연스러운 표현 Nice to meet you. => 완전 처음 본 경우에 Nice to see you. => 본 적이..

영어공부 2022.02.13

오늘의 영어

How can the woman solve her problem? - 어떻게 여자는 해결할 수 있어 그녀의 문제를? -> If the man who will put her bag in his package helps her she can solve her problem. => The man helps her. She can solve her problem by asking man for a help. * 그냥 남자가 도와줘서 해결하는 느낌이였음 ㅋㅎ Why do the man and woman want to sit together? - 왜 남자와 여자가 원했나 앉기를 같이? -> I think that's because they are friends. How can the man fix his seat?..

영어공부 2022.02.06

오늘의 영어

What name is the reservation under? - 어떤 이름으로 예약했어? It's under YD. - YD로. * The sixth floor is under construction. - 6층은 공사 중입니다. registration - 등록 * Could you fill out this registration card? - 이 등록 카드를 작성해 주시겠습니까? -> Oh, look at this. I'm already done. - 오, 이것 봐. 이미 적었어. => Check this out!, See? * Look at this는 이것 봐 이런 느낌 -> Check this out!, See? 봐봐 하는 느낌으로 organization - 조직, 재단 immigration ca..

영어공부 2022.02.03

오늘의 영어

Why is the man talking to the passer-by? - 왜 남자가 말하고 있나 행인에게? -> Because He wants to know where the nearest post office is. - 왜냐면 남자는 알기를 원하기 때문이야 가장 가까운 우체국이 어디인지 Where is the post office? - 우체국이 어디에 있나요? -> The passerby said the post office is on Third Avenue. - 승객이 말했다 우체국은 3번가에 있다고 What information does the woman need from the clerk? - 어떤 정보를 여자가 필요로 했어 점원으로 부터? ->The woman needs to know how..

영어공부 2022.02.02
반응형