User Tools

Site Tools


foundation-library-functions

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
foundation-library-functions [2026/08/03 17:03] maximefoundation-library-functions [2026/08/03 17:10] (current) maxime
Line 62: Line 62:
 Creates a new instance of a data type Creates a new instance of a data type
  
-''void **myMod:createData**(//instanceData//)''+''data **myMod:createData**(//instanceData//)''
  
 ^ Name ^ Type ^ Description ^ ^ Name ^ Type ^ Description ^
Line 74: Line 74:
     ...     ...
 } }
-foundation.createData(instanceData)+local newData = foundation.createData(instanceData)
 </code> </code>
  
Line 81: Line 81:
 ===== createAsset ===== ===== createAsset =====
  
-Creates a new instance of an asset type+Creates a new runtime instance of an asset type
  
-''void **myMod:createAsset**(//assetData//)''+''[[api:ASSET|ASSET]] **myMod:createAsset**(//instanceAssetData//)''
  
 ^ Name ^ Type ^ Description ^ ^ Name ^ Type ^ Description ^
-| //''assetData''// | ''table'' or ''nil'' | the data defining the new asset. If not ''nil'', the table must contain at least the instance's type (''DataType'', see [[api|API]] for the complete list) |+| //''instanceAssetData''// | ''table'' | the data defining the new runtime asset instanceThe table must contain at least the instance's type (''DataType'', see [[api|API]] for the complete list) |
  
 ==== Example ==== ==== Example ====
Line 95: Line 95:
     ...     ...
 } }
-foundation.createAsset(assetData)+local newAsset = foundation.createAsset(assetData)
 </code> </code>
  
foundation-library-functions.txt · Last modified: 2026/08/03 17:10 by maxime

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki