일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- webview
- 역직렬화 오류
- TextMeshPro 한글
- web3D
- 커스텀쉐이더
- 에셋번들
- TextMeshPro
- AssetBundle
- kinect v2
- Specular Highlights
- 랜더스트리밍
- 반응형레이아웃
- 듀얼쇼크4
- RenderStreaming
- muilt controller
- Unity
- AR
- Android
- Environment Reflections
- untiy
- Depth camera
- apk
- android app bundle
- 유니티
- unityhub
- Unity VisualStudio
- Rewired
- WebGL
- 구글플레이스토어
- DS4
- Today
- Total
목록Unity (41)
기억저장고
*방법설명 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..