@ghouly: i think he means to change the background...not the iris logo.
Wait until todays evening or test this quick solution to get a simple background:
1.
go into Data\lib.mainmenu.lua.
2.
just uncomment (it's already in there)
Code:
function MainMenuSetBackground_Sky ()
local cam = GetMainCam()
cam:SetFOVy(gfDeg2Rad*45)
cam:SetNearClipDistance(0.5) -- old : 1
cam:SetFarClipDistance(2000) -- ogre defaul : 100000
cam:SetProjectionType(0) -- perspective
Client_ClearLights()
Client_AddDirectionalLight(1,1,-1)
Client_SetAmbientLight(0.4, 0.4, 0.4, 1)
Client_SetSkybox("sunset") -- cleansky skybox sunset darksun
-- SetMainMenuCam(0,(90 + 10) * gfDeg2Rad)
SetMainMenuCam(0,gfDeg2Rad)
end
function SetMainMenuCam (roth,rotv)
local w1,x1,y1,z1 = Quaternion.fromAngleAxis(gfDeg2Rad * 90.0,1,0,0)
local w2,x2,y2,z2 = Quaternion.fromAngleAxis(roth,0,1,0)
local w3,x3,y3,z3 = Quaternion.fromAngleAxis(rotv,1,0,0)
local w4,x4,y4,z4 = Quaternion.Mul(w1,x1,y1,z1, w2,x2,y2,z2)
local w,x,y,z = Quaternion.Mul(w4,x4,y4,z4, w3,x3,y3,z3)
GetMainCam():SetRot(w,x,y,z)
end
and put this line at line 255:
Code:
MainMenuSetBackground_Sky()
thats it. now you have a Background.
With "sunset" you specify the Ogre Material. You can use any Material you want. Just look into
Data\base\main.material to check it.