HU/getSoundMaxDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function hu}}
{{Client function hu}}
Visszaadja azt a maximális távolságát az egyéni [[sound]]-nak, ahol az megáll.
Visszaadja azt a maximális távolságát az egyéni [[sound|hang]]-nak, ahol az megáll.


==Szintaxis==  
==Szintaxis==  

Revision as of 08:05, 19 July 2018

Visszaadja azt a maximális távolságát az egyéni hang-nak, ahol az megáll.

Szintaxis

int getSoundMaxDistance ( element sound )

OOP Syntax Help! I don't understand this!

Method: sound:getMaxDistance(...)
Variable: .maxDistance
Counterpart: setSoundMaxDistance


Kötelező argumentumok

  • sound: egy hang elem.

Visszaadott érték

Visszaadja a maximális távolságot egész számban, hamis értéket kapunk, ha érvénytelen argumentumokat adtunk meg.

Példa

Click to collapse [-]
Client
local sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true)

function getmaxdistanceFunc()
  outputChatBox("Max distance: "..getSoundMaxDistance(sound))
end
addCommandHandler("getmaxdistance", getmaxdistanceFunc)

See Also

Fordította

Surge