02-03-2017، 19:04
نقل قول: با سلام من مشکلم در وصل نشدن دوربین به ماشین مطفا راهنمایی کنید ممنون میشمتوی اسکریپت ماشینت این کد رو به جای کد دوربین بزاری درست میشه
کد php:
var() name CameraTag; //declare variable for camera attach point
simulated function bool CalcCamera( float fDeltaTime, out vector out_CamLoc, out rotator out_CamRot, out float out_FOV )
{
local vector X, Y, Z;
//this makes the camera stay with the vehicle
GetActorEyesViewPoint( out_CamLoc, out_CamRot );
GetAxes(Rotation,X,Y,Z);
// a bit behind
out_CamLoc = Location - 400 * X;
//up a bit
out_CamLoc.Z = Location.Z + 200;
//camera rotation yaw = vehicle rotation yaw
out_CamRot.Yaw = Rotation.Yaw;
// look down a bit
out_CamRot.Pitch = (-22.0f *DegToRad) * RadToUnrRot;
//delete this line if you want the cam to roll with the vehicle
out_CamRot.Roll = 0;
return true;
}