forked from gideros/gideros
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[export] Compress png images, add ios export lib in lua
[plugin/ads] convert ads/unityads export script to use lua for ios
- Loading branch information
Showing
5 changed files
with
199 additions
and
299 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
--[[ | ||
Called before the first LUA tag of a .gplugin or .gexport file | ||
Includes generic routines for export system | ||
]] | ||
|
||
function string.starts(String,Start) | ||
return string.sub(String,1,string.len(Start))==Start | ||
end | ||
|
||
function string.ends(String,End) | ||
return End=='' or string.sub(String,-string.len(End))==End | ||
end | ||
|
Oops, something went wrong.