Difference between revisions of "Engine Function Documentation Template"

From Legends of Aria Admin and Modding Wiki
Jump to: navigation, search
(Examples)
Line 16: Line 16:
 
=== Examples ===
 
=== Examples ===
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
print("My example code goes here")
+
print("My example code goes here"..tostring(CanDrop(mObj,mLoc)))
 
</syntaxhighlight>
 
</syntaxhighlight>
 
And here goes some explanation
 
And here goes some explanation

Revision as of 15:09, 1 November 2016

You can use the code of this page as a template when creating a function documentation in the "Shards Online Lua Interface" category.

CanDrop(...)

Prototype

function CanDrop(mObj, mLoc)

Parameters:

  • (gameObj) mObj: The target gameobject
  • (Loc) mLoc: The Location used in the function

Return Values

  • (boolean): Returns true when mObj can be dropped at mLoc, false otherwise

Caveats

Non existing sample function for documentation prototyping only.

Examples

print("My example code goes here"..tostring(CanDrop(mObj,mLoc)))

And here goes some explanation