自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(36)
  • 资源 (1)
  • 收藏
  • 关注

原创 OGL(教程24)——Shadow Mapping - Part 2

项目地址:git@gitee.com:yichichunshui/ShadowMap2.git

2018-10-30 19:08:22 242

翻译 OGL(教程41)——物体运动模糊

原文地址:http://ogldev.atspace.co.uk/www/tutorial41/tutorial41.html

2018-10-30 12:00:55 220

原创 OGL(教程40)——Stencil Shadow Volume

原文地址:http://ogldev.atspace.co.uk/www/tutorial40/tutorial40.html

2018-10-30 12:00:18 438

原创 OGL(教程39)——Silhouette Detection

原文地址:http://ogldev.atspace.co.uk/www/tutorial39/tutorial39.html

2018-10-30 11:57:10 342

原创 OGL(教程38)——骨骼动画

原文地址:http://ogldev.atspace.co.uk/www/tutorial38/tutorial38.html

2018-10-30 11:56:04 375

原创 assimp编译及使用(2)

本节主要介绍使用各个lib以及dll加载正确加载模型。首先到参考上checkt项目:https://github.com/triplepointfive/ogldev我们是学习的是tutorial22章节,所以使用这个项目的源文件。我们新建一个项目,然后把22章节的头文件,以及源文件,以及用到的素材考本到新项目中去。1、我们的项目:2、然后项目属性的设置头文件包含目录:库目录:...

2018-10-29 15:38:55 4006

原创 unity中使用fmod音频插件3

本博关于2D声音和3D声音的播放问题。1、fmod中区分2D声音和3D声音。在fmod中如果音频有:这个音频是3D的,如果没有则是2D声音。具体到unity中,我们可以通过EventBrowser查看声音的属性:查看到。而如果是3D声音,则是:代码中判断方法,参考StudioEventEmitter的Play()方法:eventDescription.is3D(out is3D)...

2018-10-26 17:34:16 5859

原创 assimp编译及使用(1)

之前的https://blog.csdn.net/wodownload2/article/details/77905708讲述过怎么编译assimp,但是这次又遇到了新的问题,所以再来总结下编译assimp的过程。1、下载assimp源码https://github.com/assimp/assimp/releases/tag/v3.3.1/下载:...

2018-10-26 10:03:02 14325 3

原创 ImageMagic的配置

由于源代码,编译不成功,故这里下载dll直接安装,然后在windows下使用。接下来详细介绍如何安装及使用。1、下载ImageMagick-7.0.8-12-Q16-x64-dll然后安装,我安装的目录是:C:\Program Files\ImageMagick-7.0.8-Q16安装文件可以在下载:https://pan.baidu.com/s/1tDngn7VJh9w_aRdPYFGd...

2018-10-23 20:28:41 2479

翻译 OGL(教程37)——延迟渲染3

原文地址:http://ogldev.atspace.co.uk/www/tutorial37/tutorial37.html

2018-10-17 14:05:25 342

翻译 OGL(教程36)——延迟渲染2

原文地址:http://ogldev.atspace.co.uk/www/tutorial36/tutorial36.html

2018-10-17 14:04:46 301

翻译 OGL(教程35)——延迟渲染1

原文地址:http://ogldev.atspace.co.uk/www/tutorial35/tutorial35.html

2018-10-17 14:04:25 324

翻译 OGL(教程34)——一个特效库

原文地址:http://ogldev.atspace.co.uk/www/tutorial34/tutorial34.html

2018-10-17 14:03:59 174

翻译 OGL(教程33)——实例渲染

原文地址:http://ogldev.atspace.co.uk/www/tutorial33/tutorial33.html

2018-10-17 14:03:21 217

原创 OGL(教程32)——Vertex Array Objects

原文地址:http://ogldev.atspace.co.uk/www/tutorial32/tutorial32.html

2018-10-17 14:02:48 260

原创 OGL(教程31)——PN Triangles Tessellation

原文网址:http://ogldev.atspace.co.uk/www/tutorial31/tutorial31.html

2018-10-17 14:02:04 660

原创 OGL(教程30)——Basic Tessellation

原文地址:http://ogldev.atspace.co.uk/www/tutorial30/tutorial30.html

2018-10-17 14:00:51 374

翻译 OGL(教程29)——3D拾取

原文地址:http://ogldev.atspace.co.uk/www/tutorial29/tutorial29.html

2018-10-17 14:00:02 231

原创 OGL(教程28)——Particle System using Transform Feedback

原文地址:http://ogldev.atspace.co.uk/www/tutorial28/tutorial28.html

2018-10-17 13:59:21 283

原创 OGL(教程27)——Billboarding and the Geometry Shader

原文地址:http://ogldev.atspace.co.uk/www/tutorial27/tutorial27.html

2018-10-16 11:52:14 281

翻译 OGL(教程26)——法线映射

原文地址:http://ogldev.atspace.co.uk/www/tutorial26/tutorial26.html

2018-10-16 11:51:29 149

翻译 OGL(教程25)——天空盒

原文地址:http://ogldev.atspace.co.uk/www/tutorial25/tutorial25.html

2018-10-16 11:50:48 151

翻译 OGL(教程24)——阴影映射2

原文地址:http://ogldev.atspace.co.uk/www/tutorial24/tutorial24.html

2018-10-16 11:49:43 317

翻译 OGL(教程23)——阴影映射1

原文地址:http://ogldev.atspace.co.uk/www/tutorial23/tutorial23.html

2018-10-16 11:48:57 299

翻译 OGL(教程22)——模型加载

原文地址:http://ogldev.atspace.co.uk/www/tutorial22/tutorial22.html

2018-10-16 11:48:00 266

翻译 OGL(教程21)——聚光灯

原文地址:http://ogldev.atspace.co.uk/www/tutorial21/tutorial21.html

2018-10-16 11:47:12 121

翻译 OGL(教程20)——点光源

原文地址:http://ogldev.atspace.co.uk/www/tutorial20/tutorial20.html

2018-10-16 11:46:28 136

翻译 OGL(教程19)——镜面反射

原文地址:http://ogldev.atspace.co.uk/www/tutorial19/tutorial19.html

2018-10-16 11:45:36 216

翻译 OGL(教程18)——漫反射

原文地址:http://ogldev.atspace.co.uk/www/tutorial19/tutorial19.html

2018-10-12 20:49:03 180

翻译 OGL(教程17)——环境光

原文地址:http://ogldev.atspace.co.uk/www/tutorial18/tutorial18.html

2018-10-12 20:48:15 329

翻译 OGL(教程16)——基础贴图映射

原文地址:http://ogldev.atspace.co.uk/www/tutorial17/tutorial17.html

2018-10-12 20:47:34 787

翻译 OGL(教程15)——摄像机控制2

原文地址:http://ogldev.atspace.co.uk/www/tutorial16/tutorial16.html

2018-10-12 20:45:56 237

翻译 OGL(教程14)——摄像机控制1

原文地址:http://ogldev.atspace.co.uk/www/tutorial15/tutorial15.html

2018-10-12 20:17:28 260

翻译 OGL(教程13)——摄像机空间

原文地址:http://ogldev.atspace.co.uk/www/tutorial14/tutorial14.html

2018-10-12 20:16:56 372 3

翻译 OGL(教程12)——透视投影

原文地址:http://ogldev.atspace.co.uk/www/tutorial13/tutorial13.html

2018-10-12 20:15:42 451

转载 ugui srollview定位到指定item

https://www.cnblogs.com/chenwz91/p/5092571.html

2018-10-11 17:50:35 3393

初中英语句子成分及五种基本句型讲解与练习

初中英语句子成分及五种基本句型讲解与练习,能够很好的掌握句子结构。

2017-10-15

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除