Core.findReferences
From GiderosMobile
Available since: Gideros 2023.2
Class: Core
Description
A list of all Core Class references.
refs = Core.findReferences()
This function is mainly used for Gideros internal references purposes
refs is a table with the following Core Class references:
- profilerReport
- getScriptPath
- randomSeed
- random
- findReferences
- class
- profilerStop
- profilerReset
- enableAllocationTracking
- profilerStart
- yield
- yieldable
- asyncThread
- frameStatistics
- asyncCall
- signal
Return values
refs : (table) a list of all Core Class references
Example
print()
for k, v in pairs(Core.findReferences()) do
for k1, v1 in pairs(k) do
print(k1, v1)
end
end
- Core
- Core.asyncCall
- Core.asyncThread
- Core.class
- Core.enableAllocationTracking
- Core.findReferences
- Core.frameStatistics
- Core.getScriptPath
- Core.profilerReport
- Core.profilerReset
- Core.profilerStart
- Core.profilerStop
- Core.random
- Core.randomSeed
- Core.setAutoYield
- Core.signal
- Core.stopping
- Core.yield
- Core.yieldable