found!
change the following line in the particle editor:
Code: Select all
device = createDevice(video::EDT_DIRECTX9, core::dimension2d<s32>(800, 600), 32, false, false, this);
to:
Code: Select all
device = createDevice(video::EDT_DIRECTX9, core::dimension2d<s32>(800, 600), 32, false, false, false, this);
works like a charm
the explanation? there is a new parameter in createDevice called vsync.
if you don't add this additional false, it pass the gui events to the vsync instead of the gui reciever.
it's the same bug I got with the techdemo and gui example. Now they are working both now.
fatal error RC1107: invalid usage; use RC /? for Help
sorry I don't get this error. Did you use the ressource file that come with the techdemo? I got problem with it, so I just used the same rc file that I used in my example... you only need the icon.
also to compile the techdemo I needed to compile it as a windows application because I was getting errors othewise (but I needed to modify the ressource line in the msvc.ini file, to:
ResCompileCmd=rc -fo"$OUT" "$IN"
(the same thing I used for the console application settings))
hope it helps.
