AR/getCamera: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ {{New items|3.0135|1.3.5| الكاميرة element هذا الفنكشن يرجع أليمنت }} {{Note| attachElements استخدام هذ...")
 
No edit summary
Line 23: Line 23:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==أنظر أيضا==
{{Client camera functions}}
{{Client camera functions}}

Revision as of 21:19, 28 February 2017

الكاميرة element هذا الفنكشن يرجع أليمنت

[[{{{image}}}|link=|]] Note: attachElements استخدام هذا الفنكشن مع الكاميرا يمكن أن يتدخل في حركة اللاعب
[[{{{image}}}|link=|]] Note: setCameraTarget سوف يمسح اوتوماتيكياً هدف setElementPosition/Rotation/Matrix استخدام احدى هذه الفنكشنات

Syntax

element getCamera ()

Returns

الكاميرة element هذا الفنكشن يرجع أليمنت

Example

هذا المثال سوف يلصق الكاميرا مع سيارة اللاعب

local cam = getCamera()
setElementPosition( cam, 0,0,0 )  -- يبعد الكاميرا عن اللاعب
local myVehicle = getPedOccupiedVehicle(localPlayer) -- يأخذ سيارة اللاعب
attachElements( cam, myVehicle, 0,-4,2, -20,0,0 ) -- يقوم بلصق الالمنتين

أنظر أيضا