Search found 6 matches

by Zodiaclawl
Sat Mar 01, 2014 13:34
Forum: Help
Topic: [SOLVED] Space bar not adding spaces in an editbox.
Replies: 2
Views: 2874

Re: Space bar not adding spaces in an editbox.

Ident wrote:Are you also doing injectChar(...) ?

Oh my god I'm stupid...

Code: Select all

   case KEY_SPACE:
      {
         CEGUISystem->getDefaultGUIContext().injectKeyDown(CEGUI::Key::Scan::Space);
         CEGUISystem->getDefaultGUIContext().injectChar(' ');
         return true;
      }


This fixed it :P
by Zodiaclawl
Sat Mar 01, 2014 03:28
Forum: Help
Topic: [SOLVED] Space bar not adding spaces in an editbox.
Replies: 2
Views: 2874

[SOLVED] Space bar not adding spaces in an editbox.

Hello. Thanks for all the help a few days ago to compile CEGUI. I've started to integrate it with Irrlicht and I've come a long way. But I have a small problem now. I'm using the sample layout called VanillaConsole.layout and I'm trying to implement the features now. The problem I'm having is that I...
by Zodiaclawl
Sat Mar 01, 2014 03:14
Forum: Help
Topic: [SOLVED] CMake can't find anything...
Replies: 6
Views: 9044

Re: CMake can't find anything...

First of all dont edit the cmake file. You should be able to edit these variables (IRRLICHT_H_PATH etc) INSIDE Cmake. Maybe the option isn't displayed, try to click Advanced, search for anything that contains Irrlicht, there is a filter for that. Report if this worked for you. Secondly, LIB and LIB...
by Zodiaclawl
Tue Feb 25, 2014 20:37
Forum: Help
Topic: [SOLVED] CMake can't find anything...
Replies: 6
Views: 9044

Re: CMake can't find anything...

Edit: Never mind, I managed to solve it. If anyone else ever encounters this problem and wants an easy fix here's how I did it: In cmake/FindIrrlicht.cmake: find_path(IRRLICHT_H_PATH NAMES irrlicht.h PATH_SUFFIXES irrlicht PATHS C:/Users/Zodiac/Desktop/Irrlicht/irrlicht/include) find_library(IRRLICH...
by Zodiaclawl
Tue Feb 25, 2014 13:35
Forum: Help
Topic: [SOLVED] CMake can't find anything...
Replies: 6
Views: 9044

Re: CMake can't find anything...

Funny enough, finding the dependencies is one of the things that did not cause me any trouble. :D I put the compiled (so, the "dependencies" folder that is in your build folder after you built) dependencies folder into the root folder of the cegui sources (not its build folder). That is a...
by Zodiaclawl
Tue Feb 25, 2014 02:16
Forum: Help
Topic: [SOLVED] CMake can't find anything...
Replies: 6
Views: 9044

[SOLVED] CMake can't find anything...

Hello. I've been wanting to try out CEGUI for some time but as always CMake is being nothing but trouble. Here's the output from the configuration: Could NOT find PCRE (missing: PCRE_LIB_DBG) Could NOT find FREETYPE (missing: FREETYPE_LIB_DBG) Could NOT find MINIZIP (missing: MINIZIP_LIB MINIZIP_LIB...

Go to advanced search