Is a way to add my custom commands into the console (Is show with ~ or F12).
I think this can be done with a c# script.
Any help? Thank you.
Тема была перенесена причина: не несоответствие категории (Wowka70)
| NeoAxis Engine version:3.x.x | 
Привет, Гость! Войдите или зарегистрируйтесь.
Вы здесь » NeoAxis Engine version:3.x.x » Вопрос ответ » Console F12 commands
Is a way to add my custom commands into the console (Is show with ~ or F12).
I think this can be done with a c# script.
Any help? Thank you.
Тема была перенесена причина: не несоответствие категории (Wowka70)
Вы имели введу это Консоль движка ?
если вы хотите поменять консоль с ~ на f12 то вам необходимо в классе EngineConsole.cs
в код:
public bool DoKeyDown( KeyEvent e )
    {
    	if( e.Key == EKeys.Oemtilde || e.Key == EKeys.Paragraph )
    	{.....Oemtilde обозначает клавишу ~ необходимо поменять на f12
public bool DoKeyDown( KeyEvent e )
    {
    	if( e.Key == EKeys.F12 || e.Key == EKeys.Paragraph )
    	{Вы здесь » NeoAxis Engine version:3.x.x » Вопрос ответ » Console F12 commands