One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
g_Animations = { | |
["airport"] = { | |
"thrw_barl_thrw", | |
}, | |
["attractors"] = { | |
"stepsit_in", | |
"stepsit_loop", | |
"stepsit_out", | |
}, | |
["bar"] = { |
Information from https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file : | |
Use any character in the current code page for a name, including Unicode | |
characters and characters in the extended character set (128–255), except | |
for the following: | |
- The following reserved characters: | |
< (less than) | |
> (greater than) |
/* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2016 Mario Badr | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is |
-- Camera state | |
local cameraEnabled = false | |
-- Camera radius | |
local sphereRadius = 5 | |
-- Cursor sensitivity | |
local sensitivity = 100 |