Difference between revisions of "Application:getNativePath"
From GiderosMobile
m (very tiny changes to hgy29 great work on updating gideros wiki with his new additions :-) thank you hgy29) |
m (Text replacement - "</source" to "</syntaxhighlight") |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | __NOTOC__ | ||
'''Available since:''' Gideros 2021.10<br/> | '''Available since:''' Gideros 2021.10<br/> | ||
'''Class:''' [[Application]]<br/> | '''Class:''' [[Application]]<br/> | ||
Line 4: | Line 5: | ||
=== Description === | === Description === | ||
Returns the system path for a given resource. | Returns the system path for a given resource. | ||
− | < | + | <syntaxhighlight lang="lua"> |
(string) = application:getNativePath(path) | (string) = application:getNativePath(path) | ||
− | </ | + | </syntaxhighlight> |
=== Parameters === | === Parameters === | ||
Line 13: | Line 14: | ||
=== Return values === | === Return values === | ||
'''Returns''' (string) the native path of the given resource<br/> | '''Returns''' (string) the native path of the given resource<br/> | ||
+ | |||
+ | === Example === | ||
+ | <syntaxhighlight lang="lua"> | ||
+ | local imgpath = application:getNativePath("gfx/myimage.png") -- image in /gfx project folder | ||
+ | print(imgpath) -- "C:/Users/xxx/AppData/Local/Temp/gideros/YYY/resource/gfx/myimage.png" | ||
+ | </syntaxhighlight> | ||
{{Application}} | {{Application}} |
Latest revision as of 17:09, 12 July 2023
Available since: Gideros 2021.10
Class: Application
Description
Returns the system path for a given resource.
(string) = application:getNativePath(path)
Parameters
path: (string) path to an application local resource
Return values
Returns (string) the native path of the given resource
Example
local imgpath = application:getNativePath("gfx/myimage.png") -- image in /gfx project folder
print(imgpath) -- "C:/Users/xxx/AppData/Local/Temp/gideros/YYY/resource/gfx/myimage.png"
- Application:applyStyles
- Application:canOpenUrl
- Application:checkPermission
- Application:configureFrustum
- Application:enableDrawInfo
- Application:enableOnDemandDraw
- Application:exit
- Application:get
- Application:getApiVersion
- Application:getAppId
- Application:getBackgroundColor
- Application:getClipboard
- Application:getContentHeight
- Application:getContentWidth
- Application:getDeviceHeight
- Application:getDeviceInfo
- Application:getDeviceName
- Application:getDeviceOrientation
- Application:getDeviceSafeArea
- Application:getDeviceWidth
- Application:getFps
- Application:getKeyboardModifiers
- Application:getLanguage
- Application:getLocale
- Application:getLogicalBounds
- Application:getLogicalHeight
- Application:getLogicalScaleX
- Application:getLogicalScaleY
- Application:getLogicalTranslateX
- Application:getLogicalTranslateY
- Application:getLogicalWidth
- Application:getNativePath
- Application:getOrientation
- Application:getProjectProperties
- Application:getScaleMode
- Application:getScreenDensity
- Application:getTextureMemoryUsage
- Application:isPlayerMode
- Application:openUrl
- Application:requestPermissions
- Application:set
- Application:setBackgroundColor
- Application:setClipboard
- Application:setEventMerging
- Application:setFps
- Application:setFullScreen
- Application:setKeepAwake
- Application:setKeyboardVisibility
- Application:setLogicalDimensions
- Application:setOrientation
- Application:setScaleMode
- Application:setTextInput
- Application:setWindowSize
- Application:vibrate