انجمن های تخصصی  فلش خور
در مورد دوربین ماشین مشکل در چرخش - نسخه‌ی قابل چاپ

+- انجمن های تخصصی فلش خور (http://www.flashkhor.com/forum)
+-- انجمن: نرم افزار های ساخت بازی (http://www.flashkhor.com/forum/forumdisplay.php?fid=13)
+--- انجمن: ساخت، ویرایش و -- بازی ها (http://www.flashkhor.com/forum/forumdisplay.php?fid=9)
+---- انجمن: UDK (http://www.flashkhor.com/forum/forumdisplay.php?fid=16)
+---- موضوع: در مورد دوربین ماشین مشکل در چرخش (/showthread.php?tid=264481)



در مورد دوربین ماشین مشکل در چرخش - امیر‌حسین - 02-03-2017

نقل قول: با سلام من مشکلم در وصل نشدن دوربین به ماشین مطفا راهنمایی کنید ممنون میشم
توی اسکریپت ماشینت این کد رو به جای کد دوربین بزاری درست میشه
کد php:
var() name CameraTag //declare variable for camera attach point
 
simulated function bool CalcCamerafloat fDeltaTimeout vector out_CamLocout rotator out_CamRotout float out_FOV )
{
    
local vector XYZ;

 
   //this makes the camera stay with the vehicle
    
GetActorEyesViewPointout_CamLocout_CamRot );

     
   GetAxes(Rotation,X,Y,Z);

     
   // a bit behind
        
out_CamLoc Location 400 X;
        
//up a bit
        
out_CamLoc.Location.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;