This file contains hidden or 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
| package com.fedejordan.libgdx3dtest | |
| import com.badlogic.gdx.ApplicationAdapter | |
| import com.badlogic.gdx.Gdx | |
| import com.badlogic.gdx.graphics.Camera | |
| import com.badlogic.gdx.graphics.Color | |
| import com.badlogic.gdx.graphics.PerspectiveCamera | |
| import com.badlogic.gdx.graphics.g3d.utils.ModelBuilder | |
| import com.badlogic.gdx.graphics.VertexAttributes.Usage | |
| import com.badlogic.gdx.graphics.g3d.* |
This file contains hidden or 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
| package com.fedejordan.libgdx3dtest | |
| import com.badlogic.gdx.ApplicationAdapter | |
| import com.badlogic.gdx.Gdx | |
| import com.badlogic.gdx.graphics.Camera | |
| import com.badlogic.gdx.graphics.Color | |
| import com.badlogic.gdx.graphics.PerspectiveCamera | |
| import com.badlogic.gdx.graphics.g3d.utils.ModelBuilder | |
| import com.badlogic.gdx.graphics.VertexAttributes.Usage | |
| import com.badlogic.gdx.graphics.g3d.* |
This file contains hidden or 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
| package com.fedejordan.libgdx3dtest | |
| import com.badlogic.gdx.ApplicationAdapter | |
| import com.badlogic.gdx.Gdx | |
| import com.badlogic.gdx.graphics.Color | |
| import com.badlogic.gdx.graphics.PerspectiveCamera | |
| import com.badlogic.gdx.graphics.g3d.utils.ModelBuilder | |
| import com.badlogic.gdx.graphics.VertexAttributes.Usage | |
| import com.badlogic.gdx.graphics.g3d.* | |
| import com.badlogic.gdx.graphics.g3d.attributes.ColorAttribute |
This file contains hidden or 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
| package com.fedejordan.libgdx3dtest | |
| import com.badlogic.gdx.ApplicationAdapter | |
| import com.badlogic.gdx.graphics.Texture | |
| import com.badlogic.gdx.graphics.g2d.SpriteBatch | |
| import com.badlogic.gdx.utils.ScreenUtils | |
| class LibGDX3DTest: ApplicationAdapter() { | |
| private lateinit var batch: SpriteBatch | |
| private lateinit var img: Texture |
This file contains hidden or 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
| func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { | |
| #if DEBUG | |
| print("This is the STDevelopment scheme, using Development configuration with Development.xcconfig") | |
| #endif | |
| #if RELEASE | |
| print("This is the STProduction scheme, using Production configuration with Production.xcconfig") | |
| #endif | |
This file contains hidden or 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
| #include "Common.xcconfig" | |
| PRODUCT_BUNDLE_IDENTIFIER = com.fedejordan.schemes-test | |
| BUNDLE_DISPLAY_NAME = STProduction |
This file contains hidden or 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
| #include "Common.xcconfig" | |
| PRODUCT_BUNDLE_IDENTIFIER = com.fedejordan.schemes-test-development | |
| BUNDLE_DISPLAY_NAME = STDevelopment |
This file contains hidden or 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
| MARKETING_VERSION = 1.2.0 | |
| CURRENT_PROJECT_VERSION = 200 |
This file contains hidden or 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
| PRODUCT_BUNDLE_IDENTIFIER = com.fedejordan.schemes-test | |
| MARKETING_VERSION = 1.2.0 | |
| CURRENT_PROJECT_VERSION = 200 |
This file contains hidden or 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
| module Fastlane | |
| module Actions | |
| class PublishCodeCoverageAction < Action | |
| COVERAGE_FILE_PATH = 'fastlane/code_coverage/index.html' | |
| def self.run(params) | |
| UI.message "Generating Slather report" | |
| Actions::SlatherAction.run( |
NewerOlder