AR/getBlipVisibleDistance

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

جلب المسافة التي يظهر فيها العلامة

تركيب الجملة البرمجية

float getBlipVisibleDistance ( blip theBlip )

مطلوب

  • theBlip: البلب المُراد جلبه.

Returns

Returns one float with the blips visible distance, false if the blip is invalid.

مثال

هذا المثال يقوم بإنشاء العلامة وإخراج المسافة في debug

local blip = createBlip ( 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1000 );
outputDebugString ( "Blip visible distance: "..getBlipVisibleDistance ( blip ) );

انظر ايضاً