MagicJedje Posted June 13, 2005 Posted June 13, 2005 Hello everybody I remenber that in LOMAC 1.02, it was possible to change the point of view of F4 view by editing chase.lua. But in LO Flaming cliffs I don't found this file. :( So, Where can we edit the chase view ? ;) Thanks
cueceleches Posted June 13, 2005 Posted June 13, 2005 Mmmhhhh...Isn´t F4 view the tail view? I guess the chase view is F5.
MagicJedje Posted June 13, 2005 Author Posted June 13, 2005 Yes it's right. But, the file which change F4 view or tail view in 1.02 was chase.lua. And I don't found it in FC.
ED Team Chizh Posted June 13, 2005 ED Team Posted June 13, 2005 For F4 view adjusting please see the server.lua file. There is a next block: function GetRearCameraPosition(iType) local p = CockpitLocalPoint[iType] local r = {} r[1] = p[1] - 3.7 r[2] = p[2] + 2.4 r[3] = 0.0 return r[1], r[2], r[3] end r1 is a longitudinal coordinate in meters. r2 is a vertical coordinate in meters. r3 is a lateral coordinate in meters. You can adjust that numbers and plus-minus signs. Единственный урок, который можно извлечь из истории, состоит в том, что люди не извлекают из истории никаких уроков. (С) Джордж Бернард Шоу
bSr.LCsta Posted June 13, 2005 Posted June 13, 2005 For F4 view adjusting please see the server.lua file. There is a next block: function GetRearCameraPosition(iType) local p = CockpitLocalPoint[iType] local r = {} r[1] = p[1] - 3.7 r[2] = p[2] + 2.4 r[3] = 0.0 return r[1], r[2], r[3] end do you need to add this at r[3]? r[3] = p[3] +/- #? is this ok?
Recommended Posts