
Unity3D
文章平均质量分 51
Yew1168
这个作者很懒,什么都没留下…
展开
-
图形杂记--基础概念补充
延迟着色法延迟着色法基于我们延迟(Defer)或推迟(Postpone)大部分计算量非常大的渲染(像是光照)到后期进行处理的想法。它包含两个处理阶段(Pass):在第一个几何处理阶段(Geometry Pass)中,我们先渲染场景一次,之后获取对象的各种几何信息,并储存在一系列叫做G缓冲(G-buffer)的纹理中;想想位置向量(Position Vector)、颜色向量(Color Vector)、法向量(Normal Vector)和/或镜面值(Specular Value)。场景中这些储存在G缓冲中原创 2022-05-06 15:48:09 · 533 阅读 · 0 评论 -
Unity笔技--UnityGameServices汇总及试用
Unity Gaming ServicesRoadmap 预计6月正式releaseUNet Deprecation FAQ ,UNET将废除,使用netcode代替(包括for entities和for gameobjects)。示例 com.unity.services.samples.game-lobby关联Project ID;About Unity Authentication不接入苹果,谷歌,steam市场,暂时跳过;vivox Editor或Da原创 2022-05-06 00:43:11 · 1562 阅读 · 0 评论 -
UNITY笔技--DOTS/ECS
UNITY3D笔技--DOTS/ECSDOTSECS现状ECS安装(0.50)ECS原理思维导图使用DOTSData-Oriented Technology Stack (DOTS, 数据导向型技术栈) ,其包含了 C# Job System、the Entity Component System (ECS) 和 Burst,是基于ECS架构开发的一套包含Burst Complier技术和JobSystem技术面向数据的技术栈,它旨在充分利用SIMD,多线程操作充分发挥ECS的优势。DOTS Get原创 2022-04-25 22:05:43 · 3139 阅读 · 1 评论 -
图片Premultiplied Alpha到底是干嘛用的
Premultiplied Alpha 这个概念做游戏开发的人都不会不知道。Xcode 的工程选项里有一项 Compress PNG Files,会对 PNG 进行 Premultiplied Alpha,Texture Packer 中也有Premultiplied Alpha 的选项。那么问题来了,Premultiplied Alpha 是什么呢?我被这个问题困惑了很久,之前搜到过Nvidia的这篇文章,其实说的很清楚,只是当时有很多相关概念没搞清楚,所以没看懂。直到前几天读《Real Time Re.转载 2021-12-20 15:34:46 · 283 阅读 · 0 评论 -
Unity Dictionary
Finally, a serializable dictionary for Unity! (extracted from System.Collections.Generic)using System;using System.Linq;using System.Collections;using System.Collections.Generic;using System.Diagnostics;using UnityEngine;[Serializable, Debugg..原创 2021-11-15 21:28:15 · 3913 阅读 · 0 评论 -
垂直同步细说
垂直消隐间隔VBlank(vertical blanking interval)在将光信号转换为电信号的扫描过程中,扫描总是从图像的左上角开始,水平向前行进,同时扫描点也以较慢的速率向下移动。当扫描点到达图像右侧边缘时,扫描点快速返回左侧,重新开始在第1行的起点下面进行第2行扫描,行与行之间的返回过程称为水平消隐。一幅完整的图像扫描信号,由水平消隐间隔分开的行信号序列构成,称为一帧。扫描点扫描完一帧后,要从图像的右下角返回到图像的左上角,开始新一帧的扫描,这一时间间隔,叫做垂直消隐,也称场消隐(VBla原创 2021-11-03 19:41:05 · 6699 阅读 · 3 评论 -
Unity Image Color Tune Shader
Hue, saturation, brightness, contrast shader - Unity ForumShader HSBC – ClonefactorMatrix Operations for Image Processing (graficaobscura.com)Shader "Custom/RGBTexture_tune"{ Properties { _MainTex("Texture", 2D) = "white" {} _k1("k1", range(-原创 2021-11-02 21:42:46 · 1594 阅读 · 0 评论 -
Unity License$Seats
如何移除我的Unity Pro专业版/Plus 加强版许可证的激活? – UnityUnity - Manual: Offline (manual) license activation (unity3d.com)原创 2021-09-26 09:39:32 · 171 阅读 · 0 评论 -
Mac 使用操作记录
快捷键及手势 快捷键 删除 终端 手势(Chrome(谷歌浏览器)如何截屏整个页面不用插件) 开发(Unity3D及VS) VS快捷键 vs格式化 vs注释 vs调试 Xcode原创 2021-05-09 19:15:01 · 288 阅读 · 0 评论 -
React-umi-antd-unitywebgl
1.umi创建工程https://umijs.org/zh-CN/docs/getting-started;止于启动项目yarn start;不添加layout:{}2.添加antd,react-unity-webgl (均为最新版本);package.json{ "private": true, "scripts": { "start": "umi dev", "build": "umi build", "postinstall": "umi generate..原创 2021-03-01 22:26:36 · 559 阅读 · 2 评论 -
Unity VR 优化
UnityVR优化1.Stereo Rendering Modes (Player Setting -> XR Setting)Single Pass Instanced 选这个 Single Pass 或这个 Multi PassSingle Pass 打包运行时出现分屏现象,要把后处理和Standard Assets重新import。Motion blur problem on V2 and V1 single pass in VR · Issue #492 · Unity-Te转载 2020-06-16 17:53:05 · 1626 阅读 · 0 评论 -
Unity HDRP学习资料汇总
1.建立Unity 渲染管线及光照:Setting up the Rendering Pipeline and Lighting in Unity2. Unity高清渲染管线概览 High Definition Render Pipeline overview3.Unity高清渲染管线自定义渲染通道(Custom pass)4. 物理光照单位Physical Light units5.Unreal实时光线追踪6. Unity HDRP 光线追踪Getting started w...原创 2020-05-30 23:59:28 · 1555 阅读 · 0 评论 -
Unity Package manifest
Project manifestmanifest json文件内属性:依赖、同步源链接、范围同步?、git锁定、Key JSON Type Description dependencies Object List of packages available in your Project. This entry in the manifest uses a m...转载 2020-04-11 17:39:47 · 1347 阅读 · 0 评论 -
Unity Android SDK 设置二三事
1.Unity新版本默认编辑器里不能设置AndroidSDK路径;“Preference/ExternalTools”下无Android选项;2.需要在Unity Hub里,找到对应Unity版本,选择安装模块“Android BuildSupport”,SDK/NDK,OpenJDK可以不选,后面在编辑器里自定义;3.在Unity里自定义,需要取消默认自定义覆盖;4.使用...原创 2020-03-04 12:29:35 · 1242 阅读 · 0 评论 -
Unity UI 技巧
1.Unity UGUI —— 鼠标穿透UI问题(Unity官方的解决方法)2.Unity UGUI —— 无限循环List3.关于UGUI中点击判断的原理探究4. UnityUI官方objectpoolusing System.Collections.Generic;using UnityEngine.Events;namespace UnityEngine.UI{...原创 2020-02-17 22:34:31 · 260 阅读 · 0 评论 -
Unity UI C# 反射
查阅UnityUI代码,看到UnityEngine.UI\UI\Core\Utility\ReflectionMethodsCache.cs,其中,物理碰撞函数未直接引用,而是使用反射机制获取缓存,解释是方便模块化// We call Physics.Raycast and Physics2D.Raycast through reflection to avoid creating a ha...原创 2020-02-17 22:31:15 · 522 阅读 · 0 评论 -
Unleash Your Gpu Instancing
Unleash Your Gpu Instancinghow does GPU instancing work?In short:Send the mesh data to GPU (triangles, vertices, indices, etc.). Send to GPU a list of properties per instance (position, scale, ...转载 2019-12-08 14:20:47 · 267 阅读 · 0 评论 -
Unity3d build程序远程鼠标按键按住旋转无效
Input.GetAxis("Mouse X") and Y-axis equivalent don't work in Remote DesktopRight Click Mouse not work on a remote desktop原创 2019-11-25 20:23:03 · 1162 阅读 · 0 评论 -
Unity Error EndLayoutGroup: BeginLayoutGroup must be called first
https://forum.unity.com/threads/endlayoutgroup-beginlayoutgroup-must-be-called-first.523209/GUIUtility.ExitGUI()原创 2019-11-15 18:24:13 · 9047 阅读 · 0 评论 -
Creating an Interactive Vertex Effect using Shader Graph
Creating an Interactive Vertex Effect using Shader GraphGraph入门原创 2019-11-09 00:26:14 · 156 阅读 · 0 评论 -
Dissolve Effect in Unity3D
Dissolving The World Part 1Dissolving The World Part 2转载 2019-11-08 20:59:20 · 243 阅读 · 0 评论 -
CustomYieldInstruction
CustomYieldInstructionusing System;using System.Collections;using System.Collections.Generic;using UnityEngine;using System.Linq;//using System.Buffers;public class TestDestroy : MonoBehavio...原创 2019-11-07 14:54:39 · 174 阅读 · 0 评论 -
Unity Asset ID、GUID资源索引问题
1.Unity文件、文件引用、Meta详解2.Unity资源机制3.Unity隐藏的资源引用坑GUID与fileID(本地ID) Unity会为每个导入到Assets目录中的资源创建一个meta文件,文件中记录了GUID,GUID用来记录资源之间的引用关系。还有fileID(本地ID),用于标识资源内部的资源。资源间的依赖关系通过GUID来确定;资源内部的...转载 2019-11-04 21:53:33 · 4183 阅读 · 0 评论 -
Unity Shader Keywords
Varied shader variantsWhile writing your shader, the pieces of code that you want to be able to enable/disable need to be placed between the following directives, whereMY_MACROis user-defined.#...原创 2019-10-17 13:46:37 · 2249 阅读 · 0 评论 -
Unity YAML Class ID Reference
YAML Class ID ReferenceID Class 1 GameObject 2 Component 3 LevelGameManager 4 Transform 5 TimeManager 6 GlobalGameManager 8 Behaviour 9 GameManager 11 ...转载 2019-10-15 18:40:29 · 522 阅读 · 0 评论 -
Unity3D问题记录 提示Data fold not found
原因:可能添加了更高版本的dll解决:从Unity安装文件夹下的lib/mono/2.0里复制使用同时,player 设置里选择.net2.0.。原创 2017-05-12 14:05:26 · 6442 阅读 · 0 评论 -
Unity3D change standard shader rendering mode in runtime
https://docs.unity3d.com/Manual/MaterialsAccessingViaScript.html"Instead, Unity tracks which variants you’ve used by examining the material assets used in your project. Whichever variants of the Sta原创 2017-05-18 12:35:42 · 1873 阅读 · 0 评论 -
Unity Transform
int i=0;// Use this for initializationvoid Start () {foreach (Transform child in transform) {child.position += Vector3.up * 8*(++i);}}--------------------------Transform support enumer原创 2017-06-16 12:17:29 · 208 阅读 · 0 评论 -
Unity Configurable Joint 运行时更改参数
//比如更改Configurablejoint的linearLimit{SoftJointLimit newlimit;void Start () {.....newlimit= new SoftJointLimit ();newlimit.limit = 0.24f;}void Update(){.... configurablejoint.l原创 2017-06-20 16:23:30 · 2233 阅读 · 0 评论 -
Unity c# reference value type
................................. Color tempcolor;Material tempmat;// Use this for initializationvoid Start () {tempmat = GetComponent ().material;tempcolor = GetComponent ().material.colo原创 2017-06-09 11:11:56 · 316 阅读 · 0 评论 -
从Hermite插值公式推导Smoothstep插值公式
shader里面有个函数叫smoothstep,是用来做平滑插值的,dx的文档对其介绍如下smoothstep (DirectX HLSL)Returns a smooth Hermite interpolation between 0 and 1, if x is in the range [min, max].ret smoothstep(min, max, x转载 2017-07-13 23:27:34 · 1385 阅读 · 0 评论 -
Unity Canvas UI line Renderer
// from http://forum.unity3d.com/threads/new-ui-and-line-drawing.253772/using UnityEngine;using UnityEngine.UI;using System.Collections.Generic; public class UILineRender转载 2017-08-24 20:09:30 · 1932 阅读 · 0 评论 -
10 个鲜为人知的 Unity 技巧 - 编辑器篇
1. ALT + 鼠标左键点击 Hierarchy 对象可以展开和收起对象的所有子对象2. 在当前编辑器窗口中摁下 SHIFT + 空格键 可以最大化/最小化当前窗口3. 编辑器中大部分数值类型的输入框都可以输入数值运算,拾色器内的输入框也不例外4. 新版本的 Unity 中可以在 Create 菜单中可以快速创建三角形,圆形等形状的 S转载 2017-09-14 14:27:07 · 636 阅读 · 0 评论 -
Unity5网络模块UNet介绍
https://www.cnblogs.com/zhouxin/p/5820161.html前段时间,研究了一下UNet,经过项目实践,大致整理了下遇到的问题。 源码Bitbucket:需要说明的是,这个项目只包含上层的包装,一些低层的网络实现在Unity内部,如NetworkTransport类等并不包含。 UNet常见概念简介 Spawn:简单来说,把转载 2017-09-24 20:50:38 · 292 阅读 · 0 评论 -
学习Unet的一些过程
http://www.cnblogs.com/Zackzhang/p/6593342.html因为只会设计到几个简单的按钮命令,所以不打算做多么复杂的功能,一开始打算用C#的Socket编程,但是考虑到多线程的关系觉得以后跟UI结合起来处理会比较麻烦,机智的我决定使用Unity提供的Unet网络模块。不需要太麻烦,只需要cs之间发送消息就行。 一开始我感觉自己掉转载 2017-09-25 19:15:54 · 3812 阅读 · 0 评论 -
unity3d 屏幕坐标、鼠标位置、视口坐标和绘制GUI时使用的坐标
unity3d中的屏幕坐标系 是以 屏幕 左下角为(0,0)点 右上角为(Screen.Width,Screen.Height)鼠标位置坐标与屏幕坐标系一致视口坐标是以摄像机为准 以屏幕的左下角为(0,0)点 右上角为(1,1)点绘制GUI界面时使用的坐标是以 屏幕 的左上角为(0,0)点 右下角为(Screen.width,Screen,Height)经常转载 2017-09-02 09:05:12 · 4008 阅读 · 0 评论 -
缺少编译器要求的成员“System.Runtime.CompilerServices.ExtensionAttribute..ctor” 解决方案
静态类中添加如下。此方法本人测试有效。//缺少编译器要求的成员“ystem.Runtime.CompilerServices.ExtensionAttribute..ctor”namespace System.Runtime.CompilerServices{ public class ExtensionAttribute :转载 2017-11-09 18:56:25 · 5985 阅读 · 0 评论 -
Unity VR开发--场景跳转崩溃
1. 猜测:程序使用了VRTK插件,每个待Loading场景有自己的的VRTK和camerarig Prefab,跳转过程中没有dontdestroyOnLoad,都会被销毁;在player setting里的VR支持列表里会多出一个“None”,请和“OpenVR”一起保留,如果去掉,prefab有没有保留,场景跳转是会容易崩溃。。2.Unity Living Debug;程序名(pla原创 2017-11-29 12:48:56 · 3561 阅读 · 1 评论 -
Mono Dev 默认consoles字体,中午字体注释乱码
1. 网络搜索微软雅黑consolas字体,安装到windows系统;2. 重启mono dev。找到options-->fonts,选择Microsoft Yahei Mono;中文注释显示正常原创 2017-11-06 17:50:16 · 1182 阅读 · 0 评论 -
Unity 物理系统 铰链使用的一些问题
添加铰链组件,最好铰链的anchor不要设置在collider内部,否则铰链的行为会不正常,我的经验是比如,在一个柜子(box collider)里的一个物体添加configurableJoint(anchor在柜子boxcollider里),只允许一个轴的limited,其他5个locked,在VR中用手柄去拉物体,铰链的约束会跳动,诡异;如果去掉外边的boxcollider,则正常。原创 2017-12-09 13:31:41 · 3720 阅读 · 0 评论