|
发表于 2005-7-16 09:23:25
|
显示全部楼层
来自 中国–辽宁–沈阳
- fxy = get_cvar_float("fireworks_velocity_xy")
- fmin = get_cvar_float("fireworks_velocity_min")
- fmax = get_cvar_float("fireworks_velocity_max")
- vVelocity[0] = random_float(-fxy,fxy)
- vVelocity[1] = random_float(-fxy,fxy)
- vVelocity[2] = random_float(fmin,fmax)
- Entvars_Set_Vector(temp,EV_VEC_velocity,vVelocity)
复制代码
从这几行看,velocity_xy是控制烟花在水平方向的随机速度,也就是说,设得越大,烟花水平方向的速度偏移量就越大。而竖直方向是由这两个变量控制的:
fireworks_velocity_min
fireworks_velocity_max
至于大炮筒能在enable 0 时发射,是因为你是OP啦!这是OP的权力。如果想删除大炮筒,输入amx_remove_shooter |
|