摘要:
http://www.cprogramming.com/tutorial/c/lesson17.html#include <stdarg.h>#include <stdio.h>/* this function will take the number of values to average followed by all of the numbers to average */double average ( int num, ... ){ va_list arguments; double sum = 0; /* Initial... 阅读全文
摘要:
两种software occlusion culling实现1.Practical Occlusion Culling in Killzone 3,Software Occlusion culling on SPUhttp://www.slideshare.net/guerrillagames/practical-occlusion-culling-in-killzone-32. Umbra: a3rd party occlusion culling application used in Big World and Unity.Umbra is not used in UE (additio 阅读全文
摘要:
http://www.valvesoftware.com/publications/2009/ai_systems_of_l4d_mike_booth.pdfLeft 4 dead 是98年出的单人僵尸逃亡游戏Robust Behavior PerformancePath finding:A* + navigation meshMove towards "look ahead" point farther down pathuse local obstacle ovoidanceClimbing过程详见ppt内以前的游戏是通过增加climbing point来实现的, 由L 阅读全文