본문 바로가기

전체 글

(113)
VFX Graph Properties 코드 접근 예제 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.VFX; public class ButterfilesPoint : MonoBehaviour { public VisualEffect visualEffect; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { visualEffect.SetFloat("Alpha", 1.0f); } }
VFX Graph Master Sample Poject github.com/Unity-Technologies/VisualEffectGraph-Samples
후디니 설치파일 아카이브 www.sidefx.com/download/daily-builds/?daily=true&python3=true Login | SideFX www.sidefx.com 로그인 해야 함
Azure Kinect SDK for Unity3D ModeResolutionFoIFPSOperating rangeExposure time NFOV unbinned 640×576 75°x65° 0, 5, 15, 30 0.5 – 3.86 m 12.8 ms NFOV 2×2 binned 320×288 75°x65° 0, 5, 15, 30 0.5 – 5.46 m 12.8 ms WFOV 2×2 binned 512×512 120°x120° 0, 5, 15, 30 0.25 – 2.88 m 12.8 ms WFOV unbinned 1024×1024 120°x120° 0, 5, 15 0.25 – 2.21 m 20.3 ms Passive IR 1024×1024 N/A 0, 5, 15, 30 N/A 1.6 ms
VFX Graph TimeScale using UnityEngine; using UnityEngine.VFX; public class AdjustVFXSpeed : MonoBehaviour { [SerializeField] float timeScale = 1.0f; [SerializeField] VisualEffect VFX; void Start() { VFX = GetComponent(); } void Update() { VFX.playRate = timeScale; } }
Unity RP에서 Volum 접근 코드 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Rendering; public class environmentHandler : MonoBehaviour { public Volume Volume; public float LF_Instensity; VolumeProfile volumeProfile; // Start is called before the first frame update void Start() { volumeProfile = Volume.profile; } // Update is called once per frame void Update() { if (volumePr..
Azure-Kinect-Unity-Sample (1) AzureKinedtSDK v.1.4.1 설치 https://github.com/microsoft/Azure-Kinect-Sensor-SDK/blob/develop/docs/usage.md (2) dll 파일을 Unity 프로젝트에 설치하십시오. 다음 디렉토리를 찾아 모든 파일을 이 Uity Smaple의 플러그인 폴더에 복사하십시오 . C : \ Program Files \ Azure Kinect SDK v1.4.1 \ sdk \ windows-desktop \ amd64 \ release \ bin (3) 다음 데모를 테스트 할 수 있습니다. 다운로드 : http://bitly.kr/ZTun5vhYVSu · PointCloud.unity · TextureMesh.unity 공지 : 이 sapm..
Unity wrapper for Intel® RealSense™ SDK 2.0 설치법 이건 대단한게 맞음 IMB이랑 Intel놈들.... 불편하게 하는건 알고 있었지만 이렇게 까지 불편하게 하는 놈들인지 세삼 깨닫게 되었다. 여튼저튼 쨌튼!!!!!! RealSense2를 활용한 Unity 프로젝트를 진행할 경우.... 이곳에서 해당 Unity 패키지 파일을 받을 수 있다. https://github.com/IntelRealSense/librealsense/tree/master/wrappers/unity IntelRealSense/librealsense Intel® RealSense™ SDK. Contribute to IntelRealSense/librealsense development by creating an account on GitHub. github.com 그.러.나! 역시 In..