Oh thank you! I'd never used irc before, what the channel you're using?
1 2012-08-06 20:35:59
Re: Demo Project: Please come join us and make it fun! (64 replies, posted in General)
2 2012-08-06 14:11:54
Re: Demo Project: Please come join us and make it fun! (64 replies, posted in General)
Hello guys, i would like to be part of this project, i'm modeler. Tell me if i can help. thanks!
3 2012-01-27 13:34:01
Re: Potential tutorial series (47 replies, posted in Tutorials/Examples)
No need to rush. About what I would like to see, being a little beginner I would like to see some simple things and then more advanced, but those topics you mentioned are great. I'm sure will be a great source of knowledge about maratis3d and thank you for willingness to help.
4 2012-01-23 12:38:55
Re: Potential tutorial series (47 replies, posted in Tutorials/Examples)
Hi Nistur, tutorials would be great, I would love to learn more about maratis! I prefer video tutorials.
5 2012-01-14 11:57:08
Re: Editor Skin Mochup (3 replies, posted in Editor)
Nice! Quite stylish.
Waiting for more updates.
6 2011-10-03 19:09:49
Re: Test projects (25 replies, posted in Showcase)
Great! If you need some help, tell us.
7 2011-05-11 21:32:51
Re: terrain ? (59 replies, posted in General)
Can I use stencil map for maratis? One time I tried and my terrain was without texture...
8 2011-05-06 22:39:00
Re: SimpleGamePlugin (4 replies, posted in General)
You were right was just remove the second "\SimpleGamePlugin" of the path that worked. Thank you again.
9 2011-05-05 22:46:36
Re: SimpleGamePlugin (4 replies, posted in General)
thanks anael, but now I got another error:
1>Compiling...
1>MyBehavior.cpp
1>MyGame.cpp
1>SimpleGamePlugin.cpp
1>Generating Code...
1>Linking...
1>LINK : fatal error LNK1104: cannot open file 'MCore.lib'
1>Build log was saved at "file://c:\Users\Rodolfo\Desktop\Maratis-3.02b-win32\Examples\SimpleGamePlugin\SimpleGamePlugin\_GamePlugin\_VisualCPP\Debug\BuildLog.htm"
1>Game - 1 error(s), 0 warning(s)
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
10 2011-05-04 23:23:31
Topic: SimpleGamePlugin (4 replies, posted in General)
Hi,
I trying to compile the project SimpleGamePlugin in Visual Studio 2008 and when I click build:
1>------ Build started: Project: Game, Configuration: Debug Win32 ------
1>Compiling...
1>MyBehavior.cpp
1>c:\users\rodolfo\desktop\simplegameplugin\simplegameplugin\_gameplugin\sources\mybehavior.h(11) : fatal error C1083: Cannot open include file: 'MEngine.h': No such file or directory
1>MyGame.cpp
1>c:\users\rodolfo\desktop\simplegameplugin\simplegameplugin\_gameplugin\sources\mygame.h(11) : fatal error C1083: Cannot open include file: 'MEngine.h': No such file or directory
1>SimpleGamePlugin.cpp
1>c:\users\rodolfo\desktop\simplegameplugin\simplegameplugin\_gameplugin\sources\mygame.h(11) : fatal error C1083: Cannot open include file: 'MEngine.h': No such file or directory
1>Generating Code...
1>Build log was saved at "file://c:\Users\Rodolfo\Desktop\SimpleGamePlugin\SimpleGamePlugin\_GamePlugin\_VisualCPP\Debug\BuildLog.htm"
1>Game - 3 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
And I put the MEngine.h in the folder. What's the problem?
11 2011-04-19 23:03:16
Re: plans for the future (9 replies, posted in General)
there will be more tutorials or maybe video tutorials?
12 2011-04-16 12:40:46
Re: Jumping (5 replies, posted in Scripting)
Hello,
Simply make jump only avaible when Feet is colliding with something, like this :
-- Jump
if isKeyPressed("SPACE") then
if (coll > 1) then
addCentralForce(Player, {0, 0, 15}, "local")
end
end
Thank you Vegas, now it's ok!
13 2011-04-15 23:13:27
Topic: Jumping (5 replies, posted in Scripting)
Hello guys, I'm trying to make the sheep of YoFrankie demo jump, but isn't working.
if isKeyPressed("SPACE") then
addCentralForce(Player, {0, 0, 5}, "local")
end
If I hold the key I got a infinite jump. How I fix that? Thanks!