pageswap fog problem

Now that I've fixed my waveset reflection, I've noticed that there's an annoying black fog on the horizon of my age. As many of you know, my age uses a page swap. There are two separate fog settings, one for each page. In order to change to black fog in the daytime to blue (to blend the sky and water on the horizon), I changed the daytime fog settings, but left the nighttime fog black (the sky is black so it'll blend right in.)
There was only one problem, when I changed the fog settings for the day, and linked back in, the fog in the daytime was still black, as well as the night. Now, there are fog setting in both of the two python files; "MyAge.py" and "SwapButton.py"
Here's the fog settings for the "MyAge.py" file:
Here's the fog settings from my "SwapButton.py" file:
There was only one problem, when I changed the fog settings for the day, and linked back in, the fog in the daytime was still black, as well as the night. Now, there are fog setting in both of the two python files; "MyAge.py" and "SwapButton.py"
Here's the fog settings for the "MyAge.py" file:
- Code: Select all
# emacs-mode: -*- python-*-
from Plasma import *
from PlasmaTypes import *
SDLName = 'SwapPageZefora'
sPages = ('ZeforaDay',
'ZeforaNight')
sFog = ([1,
1000,
1],
[1,
1000,
1])
sColors = ([0.106,
0.176,
0.193],
[0.0,
0.0,
0.0])
sWavesets = ('RpondWav',
'RpondWavN')
Here's the fog settings from my "SwapButton.py" file:
- Code: Select all
'ZeforaNight')
sFog = ([1,
1000,
1],
[1,
1000,
1])
sColors = ([0.106,
0.176,
0.193],
[0.0,
0.0,
0.0])