Ask a simple question, get a simple answer
Re: Ask a simple question, get a simple answer
What specifically does a builder do—exactly? [Aside from the obvious assumption.]
Re: Ask a simple question, get a simple answer
Controls how the wall and pillar objects are placed.
Grimrock 1 dungeon
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
Re: Ask a simple question, get a simple answer
Right... but that is the obvious assumption.
Re: Ask a simple question, get a simple answer
That's literally all it does.
Grimrock 1 dungeon
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
Re: Ask a simple question, get a simple answer
Is there a randomCeilingFacing setting? Don't remember if I asked this question already lol.
I mean I realize I could just create 4 duplicates of the same ceiling in different rotations but I don't want all that overhead.
I mean I realize I could just create 4 duplicates of the same ceiling in different rotations but I don't want all that overhead.
Re: Ask a simple question, get a simple answer
No, just randomFloorFacing.
Grimrock 1 dungeon
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
Re: Ask a simple question, get a simple answer
Anyone an idea how to move the camera vertically? I want to make a camera movement as if the party would ly on the floor end gets up.
Re: Ask a simple question, get a simple answer
You can't directly control the default camera, it's tied to the party. You need to make an object with a CameraComponent, set that CameraComponent as the camera with GameMode.setCamera(). Then you can control the location and rotation of that camera by changing the world position and world rotation of its parent object.
Note, however, that you won't be able to recreate the default camera's behaviour, if that's your goal. Also you probably don't want to use CameraComponent on levels with skyboxes as skyboxes behave very strangely with custom cameras for some reason.
Note, however, that you won't be able to recreate the default camera's behaviour, if that's your goal. Also you probably don't want to use CameraComponent on levels with skyboxes as skyboxes behave very strangely with custom cameras for some reason.
Grimrock 1 dungeon
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
Re: Ask a simple question, get a simple answer
No other camera component on levels with sky boxes? The skies seems to be very specially...
So then: forget it.
So then: forget it.