3811
Help / Re: My controls keep reseting
« on: October 06, 2013, 11:32:56 PM »
What OS are you using? It sounds like it is unable to write to any files.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Is there anything in particular that makes this superior to finding the dot product of the eye vector and the normalized position difference, and then doing checks on that (e.g. >= 0 for FOV 90)?The difference in computational speed should be negligible.
Maybe this is an awkward time to post this as I think I saw a topic talking about how somebody hates programmers or something earlier today...
//Documents functions in TorqueScript files and exports them to an HTML page.
//@param string mask A mask specifying one or more files. You may use the * wildcard.
//@param string title The project title, which will be displayed at the top of the navigation bar.
function document(%mask, %title)
{
%doc = new scriptGroup()
{
class = TorqueDoc;
projectTitle = (strLen(%title) ? %title : "TorqueDoc");
};
%doc.readFO = new fileObject();
%doc.add(%doc.readFO);
%doc.writeFO = new fileObject();
%doc.add(%doc.writeFO);
%doc.parse(%mask);
%functions = (%doc.numFunctions $= "" ? 0 : %doc.numFunctions);
echo("Documented" SPC %functions SPC "functions successfully.");
%doc.delete();
}Are you always impatient in modification threads?
Turns out it might not be happening, MARBLE hasn't been online all day.
http://docs.garagegames.com/tgea/official/content/documentation/Scripting%20Reference/Introduction/TorqueScript.html
read all of this
Here is my console.log
stuff, I forgot that I deleted it and reinstall it again.