Oh thank you! I'd never used irc before, what the channel you're using?

Hello guys, i would like to be part of this project, i'm modeler. Tell me if i can help. thanks!

3

(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

(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

(3 replies, posted in Editor)

Nice! Quite stylish.

Waiting for more updates.

6

(25 replies, posted in Showcase)

Great! If you need some help, tell us.

7

(59 replies, posted in General)

Can I use stencil map for maratis? One time I tried and my terrain was without texture...

8

(4 replies, posted in General)

You were right was just remove the second "\SimpleGamePlugin" of the path that worked. Thank you again.

9

(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

(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

(9 replies, posted in General)

there will be more tutorials or maybe video tutorials?

12

(5 replies, posted in Scripting)

Vegas wrote:

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

(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!