Page 5 of 6

Re: Asset Pack V2

Posted: Sat Jul 23, 2016 1:28 pm
by Halluinoid
in the Monsters script?

it's empty, it says -- This file has been generated by Dungeon Editor 2.1.13

-- TODO: place your custom monster definitions here

Re: Asset Pack V2

Posted: Sat Jul 23, 2016 1:47 pm
by Halluinoid
okay I did as you said

Got the snail moving about in a LOG2 level which is quite surreal :D

but the snail has no textures

so I got the smail textures from the Asset pack, place them in the mod assest/ textures folder, snail still has no textures

Re: Asset Pack V2

Posted: Sat Jul 23, 2016 3:22 pm
by THOM
In LoG2 it is never enough just to place a file somewhere. You always have to define it for the game-engine.

In this case the texture-files are also included in the original pack. So you don't have to place them somewhere, you just have to define them.

Copy this into your materials-file:

Code: Select all

    defineMaterial{
       name = "snail",
       diffuseMap = "assets/textures/monsters/snail_dif.tga",
       specularMap = "assets/textures/monsters/snail_spec.tga",
       normalMap = "assets/textures/monsters/snail_normal.tga",
       doubleSided = false,
       lighting = true,
       alphaTest = false,
       blendMode = "Opaque",
       textureAddressMode = "Wrap",
       glossiness = 100,
       depthBias = 0,
    }


    defineMaterial{
       name = "snail_shell",
       diffuseMap = "assets/textures/monsters/snail_dif.tga",
       specularMap = "assets/textures/monsters/snail_spec.tga",
       normalMap = "assets/textures/monsters/snail_normal.tga",
       doubleSided = false,
       lighting = true,
       alphaTest = false,
       blendMode = "Opaque",
       textureAddressMode = "Wrap",
       glossiness = 40,
       depthBias = 0,
    }

Re: Asset Pack V2

Posted: Sat Jul 23, 2016 3:28 pm
by Isaac
Also... Don't use the normal map textures from LoG in LoG2; [wrong format].

*Besides, if it's in LoG2 already, you don't have to include it in your mod. ;)

** A minor snag with the snail (and perhaps other monsters), is that the animations sometimes clip through doors in LoG2.

Re: Asset Pack V2

Posted: Sat Jul 23, 2016 3:29 pm
by Halluinoid
wow, that did it

:D boy - I can't believe all the steps needed to correctly get that snail properly into LOG2, anyway thank you THOM :lol:

ok, cheers Isaac

Re: Asset Pack V2

Posted: Sat Jul 23, 2016 3:36 pm
by Isaac
The Goromorg is also possible; and the shield effect exists in LoG2. 8-)
Image

Re: Asset Pack V2

Posted: Sat Jul 23, 2016 7:12 pm
by zimberzimber
Isaac wrote:The Goromorg is also possible; and the shield effect exists in LoG2. 8-)
But their sound files are missing :(

Re: Asset Pack V2

Posted: Wed Apr 26, 2017 11:27 pm
by zimberzimber
Question about legal asset usage - Am I allowed to use LoG2 assets to render screenshots/movies in Blender that will be used only in a LoG2 mod?

Re: Asset Pack V2

Posted: Wed Aug 02, 2017 2:31 pm
by Xardas
I downloaded the assets pack recently and i imported the monsters from Log1, but couldn't manage to import the drainage tentacles. When i try to use them in the editor the game crashes immediately.
How can i use them in the editor?

Re: Asset Pack V2

Posted: Wed Aug 02, 2017 3:04 pm
by Isaac