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
using UnityEngine; | |
using System.Collections; | |
// Camera Controller | |
// Revision 2 | |
// Allows the camera to move left, right, up and down along a fixed axis. | |
// Attach to a camera GameObject (e.g MainCamera) for functionality. | |
public class CameraController : MonoBehaviour { |
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
// Listen for events on the Feedback Text Area | |
jQuery(document).ready(function($) { | |
updateCountdown(); | |
$('.message').change(updateCountdown); | |
$('.message').keyup(updateCountdown) | |
}); | |
// Display the number of remaining characters in the Feedback Text Area | |
function updateCountdown() { | |
// Max number of characters 2500 |
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
$ git checkout -b release-VERSIONNUMBER develop | |
$ ./bump-version.sh VERSIONNUMBER | |
$ git commit -a -m "Bumped version number to VERSIONNUMBER" |
NewerOlder