Shh, just pretend they're extra special content made especially for the modding communityjuho wrote:LOL. I totally forgot I did those lanterns
[DONE] Grimrock Model Tookit
Re: [WIP] Grimrock Model Tookit
Re: [WIP] Grimrock Model Tookit
Oh, yeah... So... you're welcome community!Bek wrote:Shh, just pretend they're extra special content made especially for the modding community
Follow me on Twitter: @JuhoMakingStuff
Re: [WIP] Grimrock Model Tookit
I also found the wall_fountain.model
I turned it into an alcove since it doesn't make water. =D
I turned it into an alcove since it doesn't make water. =D
Code: Select all
defineObject{
name = "wall_fountain",
class = "Alcove",
anchorPos = vec(0, 1.0, -0.2),
targetPos = vec(0, 1.0, -0.2),
targetSize = vec(0.3, 0.3, 0.3),
model = "assets/models/env/wall_fountain.fbx",
placement = "wall",
replacesWall = false,
editorIcon = 92,
}
"I'm okay with being referred to as a goddess."
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
- Message me to join in!
- djoldgames
- Posts: 107
- Joined: Fri Mar 23, 2012 11:28 pm
- Contact:
Re: [WIP] Grimrock Model Tookit
Yup, and these your models (lantern, funtain) still contains some strange nodes like Cube, Camera and Directional Lightjuho wrote:LOL. I totally forgot I did those lanterns
(use blender for modeling?)
[MAP] Interactive Maps of Isle Nex - using Google maps technology
[MOD] Eye of the Beholder: Waterdeep Sewers - recreation for Grimrock
www.oldgames.sk
[MOD] Eye of the Beholder: Waterdeep Sewers - recreation for Grimrock
www.oldgames.sk
Re: [WIP] Grimrock Model Tookit
Modo puts a camera and a directional light in to the scenes by default (they can of course be deleted though).djoldgames wrote:Yup, and these your models (lantern, funtain) still contains some strange nodes like Cube, Camera and Directional Lightjuho wrote:LOL. I totally forgot I did those lanterns
(use blender for modeling?)
Steven Seagal of gaming industry
- JohnWordsworth
- Posts: 1397
- Joined: Fri Sep 14, 2012 4:19 pm
- Location: Devon, United Kingdom
- Contact:
Re: [WIP] Grimrock Model Tookit
Back from a couple of awesome days at the Eurogamer Expo playing Halo 4, Hitman Absolution and Gears of War Judgement. Have made some tweaks to GMT this morning that should fix a bunch of issues with importing/exporting custom models through the OBJ format. There were issues loading normals and texture coordinates that should be resolved now. Main changes in version 0.1.0.6 include:
Download Page | Direct Download
- UV coordinates are flipped so textures applied to the OBJ file should just work (as long as they are converted to DDS format with MipMaps).
- There were problems importing/exporting normals which I believe to be resolved now.
- All debug information is written to console.log in the same folder that the application exists. This is deleted whenever the app restarts. While it will have a minor impact on performance, it should help me debug any crashing errors much easier. If you have any problems, please send this file (or it's contents) to me!
- Added an about box with a link to this post and the download page.
- This build really should add auto-updating through ClickOnce, so when 0.1.0.7 comes out, it should download automagically.
Download Page | Direct Download
My Grimrock Projects Page with links to the Grimrock Model Toolkit, GrimFBX, Atlas Toolkit, QuickBar, NoteBook and the Oriental Weapons Pack.
Re: [WIP] Grimrock Model Tookit
that looks great, can't wait to use stuff like this in dungeons, have some truly new and unique items and furniture
Finished Dungeons - complete mods to play
- Geistertanz
- Posts: 10
- Joined: Wed Sep 19, 2012 11:04 am
- Location: NRW, Germany
Re: [WIP] Grimrock Model Tookit
Works like a charm!
Here is my WIP-shop alcove. As I am using the old Dungeon Master shop keeper as a placeholder until I find a better and free alternative, here is what I did:
1)
Open "assets/model/env/dungeon_wall_alcove.model" with the Model Tool Kit.
2)
Replace the "brick_ceiling01" material (that's the back of the alcove) with "alcove_shop_keeper".
3)
Save the model as "YOURMOD/mod_assets/model/env/dungeon_wall_shop.model".
4)
Add a new objekt in your mod's "objects.lua".
5)
Define a new material in your "materials.lua".
6)
Copy the following existing textures
Edit the new textures to your liking. Be aware that the alcove is displayed upside down and the only displayed part is the rectangle in the middle. If you use Paint.net, be sure to save the texture as "DXT5 interpolated alpha" and check both the mipmaps and the alpha box at the bottom of the screen.
Here is my WIP-shop alcove. As I am using the old Dungeon Master shop keeper as a placeholder until I find a better and free alternative, here is what I did:
1)
Open "assets/model/env/dungeon_wall_alcove.model" with the Model Tool Kit.
2)
Replace the "brick_ceiling01" material (that's the back of the alcove) with "alcove_shop_keeper".
3)
Save the model as "YOURMOD/mod_assets/model/env/dungeon_wall_shop.model".
4)
Add a new objekt in your mod's "objects.lua".
Code: Select all
cloneObject{
name = "dungeon_shop",
baseObject = "dungeon_alcove",
model = "mod_assets/models/env/dungeon_wall_shop.fbx",
}
Define a new material in your "materials.lua".
Code: Select all
defineMaterial{
name = "alcove_shop_keeper",
diffuseMap = "mod_assets/textures/env/alcove_shop_keeper_dif.tga",
specularMap = "mod_assets/textures/env/alcove_shop_keeper_spec.tga",
normalMap = "mod_assets/textures/env/alcove_shop_keeper_normal.tga",
doubleSided = false,
lighting = true,
alphaTest = false,
blendMode = "Opaque",
textureAddressMode = "Wrap",
glossiness = 20,
depthBias = 0,
}
Copy the following existing textures
- dungeon_ceiling_dif.dds
dungeon_ceiling_normal.dds
dungeon_ceiling_spec.dds
- alcove_shop_keeper_dif.dds
alcove_shop_keeper_normal.dds
alcove_shop_keeper_spec.dds
Edit the new textures to your liking. Be aware that the alcove is displayed upside down and the only displayed part is the rectangle in the middle. If you use Paint.net, be sure to save the texture as "DXT5 interpolated alpha" and check both the mipmaps and the alpha box at the bottom of the screen.
Re: [WIP] Grimrock Model Tookit
This time it didn't throw an error but I couldn't see my imported .obj. No idea what I'm doing wrong.
It says "No file loaded" in the bottom left corner.
It says "No file loaded" in the bottom left corner.
- JohnWordsworth
- Posts: 1397
- Joined: Fri Sep 14, 2012 4:19 pm
- Location: Devon, United Kingdom
- Contact:
Re: [WIP] Grimrock Model Tookit
@komag: Yeah, from what I've seen already on the forums, I can't wait to play some of the mods we start seeing at some point!
@djoldgames: Haha, that's a great idea - and it looks awesome the way he's just sitting there behind the alcove. I know it's unlikely, but it would be awesome if Almost Human added a dialog box option to the Lua scripting, where you could define up to X buttons and have them feedback to the Lua function. Then you could have a simple but full on shop!
@Tomm: Hmm, a couple of suggestions.
1. Are you using the latest version of Blender and when you export to OBJ, I would expect the best results to come if you have ticked at least: Include Edges, Include Normals, Include UVs, Triangulate Faces in the Export panel.
2. When you have imported the model, if you go to "Tools -> Edit Node Transform Dialog" do you see any nodes? It might be that your model is just bigger than the viewport, and as the polygons will only render from outside - if the camera is essentially stuck inside the model - you will not see anything at all. However, the nodes "RootNode" and "MainObject" should appear in the Model Node dropdown. If you do see those, try changing the matrix for MainObject to...
Which will scale the model down.
3. If those fail, then there is still something strange going on with the import code. Do you have a console.log file in the folder into which you installed the Model Toolkit? If so, it would be great if you could send that over to me with the OBJ file that causes it to crash!
Edit: It will actually say "No file loaded" if you open a new document and click "Import OBJ". I guess I should be more explicit - that message at the bottom refers to the last .model file you opened. I'll tweak that to make it more logical in a future version!
@djoldgames: Haha, that's a great idea - and it looks awesome the way he's just sitting there behind the alcove. I know it's unlikely, but it would be awesome if Almost Human added a dialog box option to the Lua scripting, where you could define up to X buttons and have them feedback to the Lua function. Then you could have a simple but full on shop!
@Tomm: Hmm, a couple of suggestions.
1. Are you using the latest version of Blender and when you export to OBJ, I would expect the best results to come if you have ticked at least: Include Edges, Include Normals, Include UVs, Triangulate Faces in the Export panel.
2. When you have imported the model, if you go to "Tools -> Edit Node Transform Dialog" do you see any nodes? It might be that your model is just bigger than the viewport, and as the polygons will only render from outside - if the camera is essentially stuck inside the model - you will not see anything at all. However, the nodes "RootNode" and "MainObject" should appear in the Model Node dropdown. If you do see those, try changing the matrix for MainObject to...
Code: Select all
0.1 0 0 0
0 0.1 0 0
0 0 0.1 0
3. If those fail, then there is still something strange going on with the import code. Do you have a console.log file in the folder into which you installed the Model Toolkit? If so, it would be great if you could send that over to me with the OBJ file that causes it to crash!
Edit: It will actually say "No file loaded" if you open a new document and click "Import OBJ". I guess I should be more explicit - that message at the bottom refers to the last .model file you opened. I'll tweak that to make it more logical in a future version!
My Grimrock Projects Page with links to the Grimrock Model Toolkit, GrimFBX, Atlas Toolkit, QuickBar, NoteBook and the Oriental Weapons Pack.