Parameter | Type | Description |
col | float[] | The fog color. |
N/A
Sets graphical fog color to col, formatted as normalized RGBA.
import agan
class game():
def create(self):
return self
#
def update(self):
agan.fogcol([ 0.8, 0.4, 0.3, 1.0 ])
#
def close(self):
pass