Creating Materials at runtimehttp://forum.unity3d.com/threads/create-materials-at-runtime.72952/ //通过Shader.Find()创建材质 floor.renderer.material = new Material (Shader.Find(" Diffuse")); //设置材质参数 floor.renderer.material.SetTextureScale(,)); floor.…
http://www.polycount.com/forum/showthread.php?t=117185 I am making some custom terrain shaders with strumpy's editor and I want to be able to create normals based on my blend mask. Does anyone know how I can turn grayscale data into basic normal mapp…
This blog is a chinese version of xoppa's Libgdx new 3D api tutorial. For English version, please refer to >>LINK<< 在这一章中,你将看到在Libgdx中是如何使用Materials的.Material是基于Shader的,所以这一节其实是上一节教程的续,上一节中,我们自定义了一个shader.如果你还没有自定义shader,我建议你先看一下上一章. 之前,我们仅通过一…
补充 float4 fixed4 _Time 1: float4是内置向量 (x, y, z, w); float4 a; 访问单独成员a.x, a.y, a.z, a.w;2: fixed4 是内置向量(r, g, b, a); fixed4 c; color.r, color.g, color.b, color.a;3: float3是内置向量(x, y, z);4: fixed3 是内置向量(r, g, b);5: float2 是内置向量(x, y);6: _Time: 自场景加载开始所…
Before we start use it, you'd better import it to an empty project, following the ReadMe to learn this framework step by step, it may  take 2 hours. Let's see the folder structure : It has 4 folders in the AssetBundleMaster folder: [AssetBundleMaster…
In This Document Section 1: Overview Section 2: Pre-Upgrade Steps Section 3: Upgrade and Configuration Section 4: Post-installation Steps Section 5: Known Issues Section 6: Appendices This document covers the procedure to upgrade the version of the J…
chromedriver报错问题解决了,真是无语 是因为chromedriver与浏览器版本不一致 http://chromedriver.storage.googleapis.com/index.html?path=2.36/ ----------ChromeDriver v2.36 (2018-03-08)---------- Supports Chrome v65-66 Resolved issue 1819: Test testIFrameWithExtensionsSource is…
如果需要看到最新版的chromedriver和chrome版本对应问题,点击http://npm.taobao.org/mirrors/chromedriver/,点击最新版本的chromedrives,查看notes.txt,就可以获得最新的版本对应表. ----------ChromeDriver v2.33 (2017-10-03)---------- Supports Chrome v60-62 Resolved issue 2032: ChromeDriver crashes whil…
配了一中午的,好不容易正好记录下. 1.我的centos的位数 输入rpm -q centos-release 结果:centos-release-7-4.1708.el7.centos.x86_64 ok,64位的系统 1.下载最新的chrome目前是65,下面的命令将下载当前最新版本的chrome yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rp 2下载对应的chrome…
使用CEF(二)- 基于VS2019编写一个简单CEF样例 在这一节中,本人将会在Windows下使用VS2019创建一个空白的C++Windows Desktop Application项目,逐步进行修改配置和代码编写,并在这个过程中介绍vs使用过程中和C++项目的结合.源码见文章末尾Github链接. 前提 你已经阅读过<使用CEF(1)- 起步>,你可以在这些地方读到:知乎链接.cnblogs.或,你知道如何获得libcef的库以及libcef_dll_wrapper静态库. 文件准备…
For research purpose, I've read a lot materials on permutation test issue. Here is a summary. Should be useful. Still, thanks for contributors online. P value calculation Because the actual value is one of those permutations, I would like to change t…
NGUI元素的遮挡情况是不依赖空间关系,所以在NGUI上添加特效有时候特别蛋疼,特别是美术同学还要依赖空间关系来控制特效效果,那先看看看NGUI的层级是怎么处理的,不过下面的描述都是针对单个相机下的Panel,如果存在多个相机当然还要考虑相机的前后关系.在写之前,还是记录下这篇随笔参考的资源:<NGUI 渲染流程深入研究>) , 一篇不错的介绍,对理解整个流程很有帮助,对层级关系也做了很多描述;作为补充,<NGUI的渲染流程> 对 理解UIPanel.UIWidget.UIDraw…
Parent interface of Collection: Iterable Interface A class that implements the Iterable can be used with the new for-loop. The Iterable interface has only one method: public interface Iterable<T> { public Iterator<T> iterator(); } It is possib…
KVO (Key-Value Observing) KVO 是 Objective-C 对观察者模式(Observer Pattern)的实现.也是 Cocoa Binding 的基础.当被观察对象的某个属性发生更改时,观察者对象会获得通知. 有意思的是,你不需要给被观察的对象添加任何额外代码,就能使用 KVO .这是怎么做到的? KVO 实现机制 KVO 的实现也依赖于 Objective-C 强大的 Runtime .Apple 的文档有简单提到过 KVO 的实现: Automatic ke…
记得当年在程序员杂志上看出这次访谈,10多年过去了, 这件事儿最近被重提了, 原因是 Kotlin. 1.对Checked Exceptions特性持保留态度 (译者注:在写一段程序时,如果没有用try-catch捕捉异常或者显式的抛出异常,而希望程序自动抛出,一些语言的编译器不会允许编译通过,如Java就是这样.这就是Checked Exceptions最基本的意思.该特性的目的是保证程序的安全性和健壮性.Zee&Snakey(MVP)对此有一段很形象的话,可以参见: http://www.b…
Browser vendors needed a way to add support for new features that were not yet standardized, but without messing up later changes or creating incompatibles. To solve this issue Vendor Prefixes were created. A vendor prefixes is a special prefix added…
pt-kill 用法记录 # 参考资料Percona-Toolkit系列之pt-kill杀会话利器http://www.fordba.com/percona-toolkit-pt-kill.html 1.pt-kill 生产环境中我们时常遇到这样的情况,数据库性能恶劣,需要马上杀掉全部会话,不然数据库就挂起来.我们可以先找show processlist的输出来杀会话,但是比较麻烦.pt-kill为我们解决了杀会话问题. 2.常用杀会话场景 -- 1.每10秒检查一次,发现有 Query 的进程…
注:本文为原著(其内容来自 腾科教育培训课堂).阅读本文注意事项如下: 1:所有文章的转载请标注本文出处. 2:本文非本人不得用于商业用途.违者将承当相应法律责任. 3:该系列文章目录列表: 一:<OCM 基本班课程表> 二:<OCM_第一天课程:OCM课程环境搭建> 三:<OCM_第二天课程:Section1 —>配置 Oracle 网络环境 > 四:<OCM_第三天课程:Section1 —>表空间的操作和管理.服务配置 > 五:<OC…
前提:一般用户安装都命令前都需要sudo ,或者在root用户下 1.Ubuntu 16.04 安装PyCharm Ubuntu 16.04 安装PyCharm 本文通过第三方源安装PyCharm,好处是升级方便. 添加源:    $ sudo add-apt-repository ppa:mystic-mirage/pycharm 安装收费的专业版:    $ sudo apt-get update    $ sudo apt-get install pycharm 专业版激活:https:/…
问题的出现 Question 这个问题是我基于TensorFlow使用CNN训练MNIST数据集的时候遇到的.关键的相关代码是以下这部分: cross_entropy = -tf.reduce_sum(y_*tf.log(y_conv)) train_step = tf.train.AdamOptimizer(1e-4).minimize(cross_entropy) 学习速率是\((1e-4)\)的时候是没有问题,但是当我把学习速率调到\(0.01/0.5\)的时候,很快就会报错. tenso…
前提:一般用户安装都命令前都需要sudo ,或者在root用户下 1.Ubuntu 16.04 安装PyCharm Ubuntu 16.04 安装PyCharm 本文通过第三方源安装PyCharm,好处是升级方便. 添加源:   $ sudo add-apt-repository ppa:mystic-mirage/pycharm 安装收费的专业版:   $ sudo apt-get update   $ sudo apt-get install pycharm 安装免费的社区版:   $ su…
from:https://www.zhihu.com/question/49346370   Harick     梯度爆炸了吧. 我的解决办法一般以下几条:1.数据归一化(减均值,除方差,或者加入normalization,例如BN.L2 norm等):2.更换参数初始化方法(对于CNN,一般用xavier或者msra的初始化方法):3.减小学习率.减小batch size:4.加入gradient clipping: 发布于 2016-09-04   仁孟     说明训练不收敛了, 学习率…
生产环境中我们时常遇到这样的情况,数据库性能恶劣,需要马上杀掉部分会话,不然数据库就夯死.我们可以先找show processlist的输出来杀会话,但是比较麻烦.pt-kill为我们解决了杀会话问题. 1.每10秒检查一次,发现有 Query 的进程就给干掉# 只打印每10秒检查一次:(--interval 10)pt-kill --host=192.168.5.7 --port=3306 --user=root --password=hankyoon --match-command="Que…
目录 什么是schema 数据库中的schema Kubernetes中的schema 通过示例了解schema 什么是schema schema一词起源于希腊语中的form或figure,但具体应该如何定义schema取决于应用环境的上下文.schema有不同的类型,其含义与数据科学.教育.营销和SEO以及心理学等领域密切相关. 在维基百科中将schema解释为,图式,在心里学中主要描述一种思维或行为类型,用来组织资讯的类别,以及资讯之间的关系.它也可以被描述为先入为主思想的心理结构,表示世界…
利用Qt设计师窗体在运行时创建用户界面 我们利用Calculator窗体例子中创建的窗体(Form)来展示当一个应用(application)已经生成后,是可以在其运行时产生与例子中相同的用户界面. 准备 Calculator窗体例子定好了一个无须修改,可直接使用的用户界面.在本例子中,我们使用一个资源文件来包含之前例子中的calculatorform.ui,它也可以存储在硬盘上. 为了在运行时生成窗体,我们需要在本例子中将QtUiTools 模块库链接进来,工程文件包含了所有需要的信息: HE…
BACKGROUND Today's graphic processing units (GPUs) host all of the computations necessary to generate high-quality graphics on computer screens, leaving a computing device's central processing unit (CPU) available for other tasks. Specifically, GPUs…
http://www.doppioslash.com/ https://github.com/Apress/physically-based-shader-dev-for-unity-2017 Part I: Introduction to Shaders In Unity Chapter 1: How Shader Development Works (已看) Chapter 2: Your First Unity Shader (已看) Chapter 3: The Graphics Pip…
目录 8.1 本篇概述 8.2 Shader基础 8.2.1 FShader 8.2.2 Shader Parameter 8.2.3 Uniform Buffer 8.2.4 Vertex Factory 8.2.5 Shader Permutation 8.3 Shader机制 8.3.1 Shader Map 8.3.1.1 FShaderMapBase 8.3.1.2 FGlobalShaderMap 8.3.1.3 FMaterialShaderMap 8.3.1.4 FMeshMat…
Android Weekly Issue #221 September 4th, 2016 Android Weekly Issue #221 ARTICLES & TUTORIALS Android ImageView ScaleType: A Visual Guide 回想一下, 你是不是总是记不住ImageView的不同ScaleType的区别, 每次都要各种尝试来找到自己适合的. 这篇文章的作者也有这样的烦恼, 于是他把各种ScaleType都截了图: 如果用了CENTER_INSIDE…
http://docs.unity3d.com/Manual/managingassetdependencies.html Managing asset dependencies   Any given asset in a bundle may depend on other assets. For example, a model may incorporate materials which in turn make use of textures and shaders. It is p…