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
#include <Misc.au3> | |
#comments-start | |
-------------------------------------------------------------------------------- | |
This script allows an Exanima player to lock the camera behind their character, | |
updating the camera as necessary when the character changes orientation or | |
position. Via keypress, it can be enabled and disabled, as well as temporarily | |
disabled by pressing shift. The scripts starts with camera lock disabled. | |
Default keys: |
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/bash | |
LAN_INTERFACE='' | |
BRIDGE_INTERFACE='' | |
SCRIPT_NAME=$( basename "${0}" ) | |
POLL_SLEEP_SECONDS=5 | |
getProcessInfo() { | |
local PROCESS="${1}" | |
ps -ef | grep "${PROCESS}" | grep -v "grep ${PROCESS}" |