Hmm, sorry if there's a way to edit posts, I hate to double post, but I couldn't see if there was a way to do it.
I've kinda figured out how to tweak stuff (for both perform checklist for effect values and also looking in the .fx file with notepad). But for this one, the light position is a constant called float3. I can't figure out how to edit all 3 float values.
Inside the .fx file it says this:
float3 gLamp0Pos : POSITION <
string Object = "PointLight0";
string UIName = "Lamp 0 Position";
string Space = (LIGHT_COORDS);
> = {-0.5f,2.0f,1.25f};
float gTileCount <
string UIName = "Tile Repeat";
string UIWidget = "slider";
float UIMin = 1.0;
float UIStep = 1.0;
float UIMax = 32.0;
> = 8;
I can edit the second one, using set effect constant float 1,"gTileCount",value#
How do I edit the first one so {-0.5f,2.0f,1.25f} = camera x, camera y, camera z? I tried putting it in brackets, parentheses, etc., but I couldn't do it.
Sanba Games: Because We Can