saindd Posted December 12, 2015 Share Posted December 12, 2015 Randomly, some material, object and sequence names get upper cased by Torque 3D. I edit the CS files manually, and it renames then. For example, if i name a sequence "run", it converts to "Run". Why does it do such an annoying thing? Quote Link to comment Share on other sites More sharing options...
Duion Posted December 12, 2015 Share Posted December 12, 2015 I have that also, they are listed with uppercase in the shape editor, but they are still lowercase in my script file, maybe because I add them through notepad and not through the ingame editor. Quote Link to comment Share on other sites More sharing options...
Bloodknight Posted December 15, 2015 Share Posted December 15, 2015 If you edit parts of the CS file that torque writes to then, its to be expected that the torque overwrites those changes if you use a tool that writes your work.That being said, auto capitalisation of words is the domain, or grammar and spelling correction applications such as word processors, perhaps a global setting to allow/disallow the engine from making such decisions would be useful. Quote Link to comment Share on other sites More sharing options...
chriscalef Posted December 15, 2015 Share Posted December 15, 2015 I think the cause of your problem here is most likely the StringTable. I could be entirely wrong here, but I think this is what's going on: Torque is generally not case sensitive (at least to and from the console), and it stores strings in the StringTable so that it can reuse them when it sees them again and doesn't have to waste space store redundant strings. However, a side effect of these two facts is that if there is already a "Run" in the StringTable, and then you try to use the word "run", it will fall back to its original "Run" instead, viewing them as the same word.Again, this is just a theory, but I have reason to believe it may be correct. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.