DEV

    [solved] Unity JDK Build error

    [solved] Unity JDK Build error

    No Java runtime present, requesting install. CommandInvokationFailure: Failed to update Android SDK package list. /Applications/Unity/Hub/Editor/2019.4.20f1/PlaybackEngines/AndroidPlayer/SDK/tools/bin/sdkmanager --list Unity Hub 에 JDK 설치가 되어있는데도 나타나는 에러 ... 찾아보니 2019년 에디터에서 오류나는데 jdk 8버전에서는 에러가 안난다고 한다. homebrew로 jdk 설치 .. brew tap adoptopenjdk/openjdk brew install --cask adoptopenjdk8 java -ver..

    C++ 백준 9095

    과거에 푼 c++ 소스... #include #include /* 정수 4를 1, 2, 3의 조합으로 나타내는 방법은 총 7가지가 있다. 1+1+1+1 1+1+2 1+2+1 2+1+1 2+2 1+3 3+1 정수 n이 주어졌을 때, n을 1,2,3의 합으로 나타내는 방법의 수를 구하는 프로그램을 작성하시오. */ int N; int T; void DFS(int k); int count; int main() { scanf("%d",&T); int *arr = new int [T]; for(int i=0; i

    프로그래머스 코딩테스트 연습스택/큐 기능개발 C++/JAVA

    프로그래머스 코딩테스트 연습스택/큐 기능개발 C++/JAVA

    18 년의 나 // 18년의 나.. C++ #include #include using namespace std; vector solution(vector progresses, vector speeds) { vector answer; int N= progresses.size(); bool publish[10000]={false}; bool flag= true; while(flag) { int pubNum=0; for(int i=0;i=100){ if(i==0||publish[i-1]) { // 첫 또는 이전 원소가 출시되었을 때 pubNum++; publish[i]=true; } } } } if(pubNum>0) answer.push_back(pubNum); if(publish[N-1]) // the en..

    [solved] Unity Version Downgrade error solved 유니티 다운그레이드 성공

    [solved] Unity Version Downgrade error solved 유니티 다운그레이드 성공

    Successful. 'RevisionsService' does not contain a definition for 'FetchSingleRevisionCallback' and no accessible extension method github.com/Unity-Technologies/arfoundation-samples/issues/591 [Bug] Importing the project in Unity 2019.4 gives errors · Issue #591 · Unity-Technologies/arfoundation-samples Unity bug report case number Please log a bug at https://unity3d.com/unity/qa/bug-reporting an..

    Unity load csv type error (한글 인식 오류)

    foxtrotin.tistory.com/121 unity csv파일 유니티로 불러오기(StreamReader 사용)-유니티 csv파일 형식으로 스테이지 만들기 슬슬 퀴즈 게임의 윤곽이 잡혔는데 스테이지를 만들고 있는 중에 문제가 생겼다 지금 스테이지가 시작하는 구조는 1. 스테이지 선택 씬에서 스테이지를 선택하면 그 스테이지 번호를 메인 씬으 foxtrotin.tistory.com .csv 를 메모장으로열어서 UTF-8로 덮어서 저장하면 잘 됩니다.

    [solved] unity build error (BuildPlayerWindow+DefaultBuildMethods.BuildPlayer)

    +2021.11.04 Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8 -> 유니티 재부팅 ---------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- at UnityEditor.BuildPlayerWindow+DefaultBuildMethods.BuildPlayer 1) reimport asset 2) 프로세서 삭제 해도 안돼서.. 남은에러 하나가 Starting a..

    [solved] unity class Object reference not set to an instance of an object (class initialize 클래스 초기화 에러)

    (스크립트 안에서 class 선언시 NullReferenceException) 클래스를 생성을 했다. class Item { } 그리고 다른 클래스에서 해당 클래스를 사용하려고 하니, NullReferenceException 에러가 떴다. class ItemGroup{ Item item; void start(){ item = new item(); ... ... } } new () 처리를 해주고 그 다음 순서부터 해당 클래스를 사용하면 된다... 쉬운듯 하면서도 뭐지 하고 public 생각도들게 만든다..; 도움이 되셨으면 좋아요 눌러주세요 ~

    unity  - 9 slice 디자인 같은 이미지 크기와 상관없이 쓰기

    unity - 9 slice 디자인 같은 이미지 크기와 상관없이 쓰기

    크기가 다른데 디자인이 계속 일정한 버튼 이미지들 이미지 용량이 너무 아까워서 최적화를 찾아보며 9슬라이스를 알게 되었다. STEP 1. Sprite - MeshType: Full Rect, 뭉개지는 부분 안쪽으로 9분할 2. Image component ImageType : sliced 크기가 다른데 image 컴포넌트 크기만큼 Sprite가 조정되어서 적용된 모습.

    Unity Play Video File

    Unity Play Video File

    #unity videio player area over camera #유니티 동영상 영역 재생 #unity 2d 동영상 재생 #play video on Unity UI - 흠 MeshRenderere.cortingOrder =15000로도 하나본데 ... Component : VideoPlayer Step: (1) Clip 연결 Wait For First Frame는 첫 프레임을 기다리는 과정인데 유니티 영상이 비교적 화질이 높거나 또는 안드로이드로 재생시 영상 프레임이 저하가 됩니다. 이를 어느정도 감소시키는 기능입니다 : Play On Awake이 켜져있을때 번째 프레임이 텍스처에 로드 될 때까지 기다릴 지 여부를 결정한다. 끌 경우 초기 몇 프레임이 짤려나가는 불상사가 있을 수 있다. Playbac..

    [sloved] Unity click button through image (click over the other images)

    [sloved] Unity click button through image (click over the other images)

    버튼 위에 이미지를 생성하는데, 해당 이미지가 클릭이 되어서 관통하지 못하고.. 버튼이 안눌러지는 문제가 있었다.. 사람들이 여러 방법을 통해서 했는데... 정말 말도안되게 간단했다 .. . 그냥 이미지 속성에서 RayCast Target을 enable false 하면 된다 ,. 황당할 정도 .. . (참고) answers.unity.com/questions/897955/how-to-click-on-button-that-is-behind-transparent.html

    [solved] unity UI Text Color change separately 부분 색 바꾸기

    [solved] unity UI Text Color change separately 부분 색 바꾸기

    1 2 3 4 5 6 7 8 using UnityEnginen.UI; public Text showText; ... string t = "" + "320%" + ""; showText.text = t; Colored by Color Scripter cs 를 직접적으로 넣어주면 색이 바뀌는 모습을 알 수 있다. 그러면 텍스트 부분 색 변경 예시 : 기존에 설정한 텍스트 컬러 + 코드에서 설정한 녹색 컬러가 입혀진 모습 1 2 string t = "공격력 300%" + "> " + "" + "320%" + ""; showText.text = t; Colored by Color Scripter cs \

    Unity Atlas 정리 및 이미지 최적화 정리

    Unity Atlas 정리 및 이미지 최적화 정리

    스프라이트 아틀라스 프로퍼티 생성 방법 Sprite Atlas 를 생성하려면 메뉴에서 Asset > Create > Sprite Atlas 로 이동하십시오. 그러면 Unity가 에셋 폴더에 *.spriteatlas 파일 확장자가 붙은 스프라이트 아틀라스를 생성합니다. * 나도 여기다 정리하고 내가 볼라고 쓰는글 ... Tight Packing : 지정한 Max Texture Size (1024)안에서 남는 여백에 rotate하면서 꽉꽉 채워서 이미지가 합쳐진다. (using alpha area tightly) @@ Unity Atlas overlay 이미지 겹치는 문제 : 갑자기 이미지가 여러개 섞여서 나왔다. => Max Texture Size 가 넘친거다.. => 1024 -> 2048 로 간단히 해..

    [solved] Unity Scroll View position initialize

    Unity Scroll View Content position reset 유니티에서 스크롤로 쭉 내린 후에, 다른 페이지 갔다가 다시 진입하면 그 위치 그대로 스크롤이 내려져 있다. -> 맨 위 리스트를 보기 위해서 위치를 초기화 하려고 한다. 한참 찾았는데 단순한 rect 위치 문제였다. 간단히 해결! 다들 헤매는 이유는 position 으로 접근한듯 anchoredPosition 임! 1 2 3 4 5 6 7 8 public RectTransform ScrollContent; public void setRectPosition() { float x = ScrollContents.anchoredPosition.x; ScrollContents.anchoredPosition = new Vector3(x, 0..

    Unity ads error Banner fail

    Unity ads error Banner fail

    Execution failed for task ':launcher:checkReleaseDuplicateClasses'. UnityEngine.GUIUtility:ProcessEvent(Int32, IntPtr) Copying assembly from 'Temp/Assembly-CSharp.dll' to 'Library/ScriptAssemblies/Assembly-CSharp.dll' failed 머지 어떻게 해결했뜨랑

    [solved] UnityWebRequest Get noneArray Type error

    대강 {"code":0,"results":{"contents":"abcd”,"contents":"abcd”,"contents":"abcd”...}} 형식으로 데이터가 들어올 것을 감안하여 1 2 3 4 5 6 7 8 9 10 11 12 13 public class ServerData { public string code; public Data[] results; } public class Data{ public string content; } cs 로 만들었는데 중간에 데이터가 1개인 경우가 있어서 한참 고생했다. -> noneArray Type;;; Extra details: the issue ONLY happens if the target object where the json is deseriali..

    NullReferenceException: Object reference not set to an instance of an objectUnityEditor.Graphs.Edge.WakeUp ()

    ^^ 맥북에서 오래 유니티 켜고 노트북 닫고 열고 진행하니까 감이 온 에러. 유니티 재실행시 해결 !

    unity Dotween DOMOVE CALLBACK

    unity Dotween 예제 모음 https://m.blog.naver.com/PostView.nhn?blogId=saya83&logNo=220624615753&proxyReferer=https:%2F%2Fwww.google.com%2F unity Dotween 예제 모음 기본적으로 Plugin이 있어야 함.http://dotween.demigiant.com/download.php DOTween - Downloadsdotw... blog.naver.com 사용하는 네임 스페이스 : using DG.Tweening; transform.DOMoveX(100, 1); transform.DORestart(); DOTween.Play(); transform.DOMove(new Vector3(2,2,2), 2) ..

    유니티 터치 관련

    http://m.blog.daum.net/zevie/21 http://am-kwon.blogspot.kr/2014/08/unity3d-raycast-2d-3d.html

    데이터 관리

    이거 하고 Resources 폴더 안에 넣을 것

    유니티 데이터 로드

    using System; public class test3 : MonoBehaviour { // Use this for initialization void Start () { string[] allLines = File.ReadAllText ("./Assets/Resources/test.csv").Split (','); Debug.Log (allLines); for (int i = 0; i