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
#!/bin/sh -f | |
# Trigger a new Travis-CI job. | |
# Ordinarily, a new Travis job is triggered when a commit is pushed to a | |
# GitHub repository. The trigger-travis.sh script provides a programmatic | |
# way to trigger a new Travis job. | |
# Usage: | |
# trigger-travis.sh [--pro] [--branch BRANCH] GITHUBID GITHUBPROJECT TRAVIS_ACCESS_TOKEN [MESSAGE] | |
# For example: |
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
public class CameraSettingsGeneric<T, U> | |
{ | |
[HideInInspector] public T camera; | |
public float minZoom = 1f; | |
public float maxZoom = 5f; | |
public float zoomAmount = 5f; | |
[HideInInspector] | |
//public CraftFacade followObject; | |
public U followObject; |