AftGangAglay Documentation


fogcol

Parameters

Parameter Type Description
col float[] The fog color.

Return Value

N/A

Description

Sets graphical fog color to col, formatted as normalized RGBA.

Example

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