自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Dev in Nightmare

程序设计+图形图像+游戏开发

  • 博客(4)
  • 收藏
  • 关注

原创 谈“GDC游戏对象结构会议记要”

谈“GDC游戏对象结构会议记要”本文所基于的《记要》并不是最新的,只是因为有参考价值,拿来说说。  游戏对象结构圆桌会议讨论了游戏对象系统设计中的常见问题,由数百人参加,包括来自Gnostic Labs、Ion Storm、Sammy Studios、Gas Powered Games、Sony和Cyan等公司的代表。聚合与继承要点:有广泛地避免深层继承结构的动向,甚至有关于深层继承到底是传统C+

2005-08-27 10:39:00 2536

转载 Speed of direct calls vs interfaces vs delegates vs virtuals

Speed of direct calls vs interfaces vs delegates vs virtuals Consider the following code:interface IProcessor{    void Process();}class Processor: IProcessor{    public void Process()    {    }}If I w

2005-08-12 11:29:00 1519

转载 When should I use == and when should I use Equals?

When should I use == and when should I use Equals? The Equals method is just a virtual one defined in System.Object, and overridden by whichever classes choose to do so. The == operator is an operator

2005-08-12 11:23:00 1564

转载 What's the difference between an event and a delegate?

Whats the difference between an event and a delegate? Put simply, an event gives more limited access than a delegate. If an event is made public, code in other classes can only add or remove handlers

2005-08-12 11:20:00 1770

空空如也

空空如也

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

TA关注的人

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