告诉我如何拥有它http://devsbook.com/est.jpg来获取它http://devsbook.com/est2.jpg 在网站 winxalex.blogspot.com -> gradient-shadow-filter-starling 上找到了一个示例。 html 但我不能使用它。感谢你
这个基础阴影着色器
var program:String =
"sub vt0.xy, va0.xy, vc1.xy \n" + //world xy - light xy = delta xy
"mul vt0.xy, vt0.xy, va0.z \n" + //delta xy * shadow multiplier (0 || 1) = shadow xy
"mul vt0.xy, vt0.xy, vc0.z \n" + //shadow xy * 1000
"add vt1.xy, va0.xy, vt0.xy \n" + //world xy + shadow xy
"mov vt1.z, vc0.xy.x \n" + //vt1.z = 0
"mov vt1.w, vc0.xy.y \n" + //vt1.w = 1
"m44 op, vt1, vc2"; //project to clip space