
Unity
啊辉的小号
多学习,才能进步
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
关于shadertoy 转 unity shader 的调研
一些网站https://smkplus.github.io/ShaderMan.io/https://github.com/smkplus/ShaderMan原创 2022-03-23 16:03:04 · 3526 阅读 · 0 评论 -
Unity 使用ZBFBrowser插件实例
using System.Collections;using System.Collections.Generic;using UnityEngine;using ZenFulcrum.EmbeddedBrowser;public class Contest : MonoBehaviour { Browser browser; // Use this for initialization void Start () { browser = GetComponent&.原创 2020-05-11 10:40:24 · 1312 阅读 · 0 评论 -
Unity 截图工具
从网上找的截图脚本,使用很方便在这里记录一下using System.IO;using UnityEditor;using UnityEngine;public class ScreenShotWindow : EditorWindow{ private Camera m_Camera; private string filePath; private bo...原创 2020-05-08 13:41:36 · 597 阅读 · 0 评论 -
Unity 创建http服务器
之前没考虑过这方面的问题,毕竟搭web服务的话就会选择 Nginx 或者其他的工具了,但是在这个项目中一些条件限制,不会再额外搭建web服务。所以就萌生了一个想法可不可以在Unity 中搭建一个web服务呢? 从理论角度讲,这么简单的需求应该是很好实现的,然而本着不造轮子的思想,看看有没有这方面的插件,或者现成的代码可以使用。但是在Unity的官网和一些论坛转了一圈发...原创 2020-04-20 15:23:38 · 3014 阅读 · 4 评论