일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- webview
- RenderStreaming
- 에셋번들
- Depth camera
- muilt controller
- 듀얼쇼크4
- AssetBundle
- TextMeshPro
- 랜더스트리밍
- 반응형레이아웃
- Unity
- android app bundle
- Android
- TextMeshPro 한글
- AR
- web3D
- untiy
- 커스텀쉐이더
- apk
- 역직렬화 오류
- Specular Highlights
- Unity VisualStudio
- Rewired
- Environment Reflections
- WebGL
- DS4
- 구글플레이스토어
- unityhub
- kinect v2
- 유니티
- Today
- Total
목록Unity (42)
기억저장고

*상황 유니티 실행파일을 받아서 실행을 시켰는데 해상도가 설정한 것과 다르게 나왔다 다른 PC로 실행 했을때는 의도한 해상도가 나왔다 (두 PC모두 같은 디스플레이 사이즈) *Screen 크기에 대한 정보는 레지스트리에 저장된다 [레지스트리편집기] 검색 후- HKEY_CURRENT_USER\SOFTWARE\[회사명]\[제품명]여기에 들어가서 Screenmanager Resolution HeightScreenmanager Resolution Width를 수정하면 된다오른쪽 버튼 클릭 - [수정] 클릭 후 [단위]를 10진수로 바꾼 후,[값 데이터]에 원하는 너비,높이 값을 넣으면된다 - 나는 Screen.SetResolution 에서 설정한 값이 레지스터에 들어가는지 이번에 첨 알게됫다 끝~ 출처http..

*방법설명 UberPost.shader의 return half4(color, 1); --> return half4(color, SAMPLE_TEXTURE2D_X(_SourceTex, sampler_LinearClamp, uv).a); 이렇게 바꿔야한다. *순서 1.프로젝트의 Library/PackageCache 폴더에서 [com.unity.render-pipelines.universal@12.1.4]폴더 복사 2. 프로젝트의 Packages 폴더에 [com.unity.render-pipelines.universal@12.1.4]붙여넣기 *붙여 넣은 후, Library/PackageCache 폴더에서 [com.unity.render-pipelines.universal@12.1.4]폴더 삭제 (중복방지, L..

Decal은 원래 Transparent 재질에는 비춰지지 않는다. 테스트한 unity 버전 : 2021.2.9 - URP 준비물: 1. Lux URP Essentials($25) or DepthOnly되는 메터리얼 https://assetstore.unity.com/packages/vfx/shaders/lux-urp-essentials-150355 Lux URP Essentials | 시각 효과 셰이더 | Unity Asset Store Add depth to your next project with Lux URP Essentials from forst. Find this & more 시각 효과 셰이더 on the Unity Asset Store. assetstore.unity.com Lux URP Es..
조건 1. cmd로 호출 cmd로 프로그램 경로까지 이동 후 myBuildFile.exe -force-device-index 1 이런식으로 써주면된다 맨 뒤에 숫자는 실행할 GPU index인데 메인 GPU는 0번인거 같고 나머지는 작업관리자-성능의 GPU 거꾸로 순서인듯하다 ex)GPU가 7번까지 있으면 index 1이 7번 GPU를 가르키는거같은데 이건 자세히 모르겠다 출처 https://docs.unity3d.com/Manual/PlayerCommandLineArguments.html Unity - Manual: Unity Standalone Player command line arguments Unity Editor command line arguments Batch mode and built-i..

스트리밍 Brodcast로 Connect ID 각각 설정하는방법 1. WebApp 수정 1-1. WebApp 원본 파일 다운로드 https://github.com/Unity-Technologies/UnityRenderStreaming 1-2. 파일위치 확인 *Broadcast html/js 파일위치 C:\Users\chaelin\Documents\WebApp\client\public\receiver (WebApp - client - public - receiver) 1-3. connectID 값 지정스크립트 작성 **(WebApp - client - public - receiver - index.html) body 태그안에 아래 코드 추가 **(WebApp - client - public - receiv..

나는 OpenCV 를 이용해 얼굴의 특징점을 찾아낸후, 특징점을 이용해 눈코입위치에 이미지를 올리는방식으로 개발할꺼다. 1. 준비물 - OpenCV for unity (90$) - Dlib FaceLandmark Detector (40$) Unity(C#)에서는 OpenCV라이브러리를 사용할 수 없으므로 에셋스토어에서 OpenCV를 사용할 수 있게 해놓은 에셋을 구매해야한다. 2. 만드는방법 이전에.. 두개의 에셋을 모두 받은 후 DlibFaceLandmarkDetectorWithOpenCVExample-Texture2DToMatExample.scene을 열고 실행시켜보면 OpenCV가 얼굴의 특징점을 찾아낸걸 볼 수 잇다. 얼굴에 있는 특징점은 Face Landmark로 검색하면 자세히 알아볼 수 있다..
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.EventSystems; public class MyBtnScript : MonoBehaviour { public Image img; private EventTrigger eventTrigger; private Material btnMat; private Color onColor = new Color(118/255f, 5 / 255f, 0 / 255f); private Color defaultColor = Color.white; private const float emissionIntensity..