Difference between revisions of "Core.fileLoad"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2025.3<br/> '''Class:''' Core<br/> === Description === File loading. <syntaxhighlight lang="lua"> Core.fileLoad(filename,table) <...")
 
 
(2 intermediate revisions by the same user not shown)
Line 4: Line 4:
  
 
=== Description ===
 
=== Description ===
File loading.
+
Optimized file loading.
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
Core.fileLoad(filename,table)
+
Core.fileLoad(filename,options)
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===
'''filename''': (string) path to the file to load<br/>
+
'''filename''': (string) path to the file to load from<br/>
'''table''': (table) with following options:<br/>
+
'''options''': (table) any of the following options:<br/>
 
&emsp;'''async''': (boolean) with async loading, '''default = false'''<br/>
 
&emsp;'''async''': (boolean) with async loading, '''default = false'''<br/>
 
&emsp;'''compression''': (boolean) with compression, '''default = false'''<br/>
 
&emsp;'''compression''': (boolean) with compression, '''default = false'''<br/>
 
&emsp;'''buffer''': (boolean) as buffer, '''default = false'''<br/>
 
&emsp;'''buffer''': (boolean) as buffer, '''default = false'''<br/>
 
&emsp;'''mode''': (string) file mode: "rb", ...<br/>
 
&emsp;'''mode''': (string) file mode: "rb", ...<br/>
 +
 +
Operation can be made asynchronous to rendering loop, preventing dropping FPS in your games (async=true option). Only available if the call is made from an async call (see Core.asyncCall)
  
 
{{Core}}
 
{{Core}}

Latest revision as of 20:43, 25 March 2025

Available since: Gideros 2025.3
Class: Core

Description

Optimized file loading.

Core.fileLoad(filename,options)

Parameters

filename: (string) path to the file to load from
options: (table) any of the following options:
async: (boolean) with async loading, default = false
compression: (boolean) with compression, default = false
buffer: (boolean) as buffer, default = false
mode: (string) file mode: "rb", ...

Operation can be made asynchronous to rendering loop, preventing dropping FPS in your games (async=true option). Only available if the call is made from an async call (see Core.asyncCall)