Search the Community
Showing results for tags 'assets'.
The search index is currently processing. Current results may not be complete.
-
Hi I am currently working on a relativly huge project including about 1000 models and you can image that I dont want to adjust the model settings (like normal calculation, scale & physics shape) for every single one by hand, especially as they all need the same settings. It is very time consuming repetitive work. I know Leadwerks does not support such a thing, but maybe you have an idea or can help me working out something to do this. The only idea I had so far is copying the .meta file of a model I set up already and then overwrite all the other .meta files with this file, but this does not work unforunately.
-
Hey guys, I just purchased the full version of Leadwerks cause it was on sale on Steam, however I am looking at the assets that the install came with and I can't shake the feeling that I am missing some? For instance, in the tutorial about modeling an animation, it shows a "Fan" asset that I am assuming is located somewhere in the model library which I cannot find. What is the standard asset library that is supposed to come with Leadwerks? And where can I find some of these "lost" models and prefabs? Thanks in advance!
-
Hi, i have created a Project from the Marble Game Template for a Test in MS Visual C++ 2013, here my steps: main.cpp if (ext=="zip" || ext=="pak") { Leadwerks::Package::Load(file,"strongpassword"); } Ok after the changes in main.cpp i have compiled the solution and the Game runs in the Projectfolder, now i have create a folder "MarbleGame" with the MarbleGame.exe, lua51.dll and the steam_api.dll from the Projectfolder, the Assets are in seperated protected ZIP Archives like this: Fonts.zip Maps.zip Materials.zip Models.zip Scripts.zip Shaders.zip Sound.zip In the Archives are not the Basefolders (eg in Maps.zip is only the File "start.map" without any folders). And now the MarbleGame.exe doesnt run and output the Message: Whats wrong, please?
-
Just a small update and an information why everything is progressing so slowly with my tools. Unfortunatly (well, not really) I'm currently full of work with my daytime job (project deadlines, new features, etc.) that I'm currently don't have much time to do some private programming. This weekend I have some freetime i will spend to fix some bugs with the batch texture converter and coninue with my work on the asset builder. Hopefully I'm able to post some progress soon.
-
After uploading my first lua snippet i'm continuing my task to develope useful tools for Leadwerks Engine. What tools you may ask? The first, a batch texture converter is ready since a long time, but needs some tweaking here and there. A beta was previously published but i want to get this tool out of the beta and will release a finished version the next days. The next one is to finish my milkshape exporter (animations still doesn't work) but the rest is faster and less buggy. The main tool I'm currently developing is a small helper which i call "Asset Helper". What does this exactly mean? Well everyone who ever have bought a model pack from one of the modelshops around the web may know this problem. You download it and want to play with it in the Leadwerks Editor. Unfortunatly in most cases this doesn't work at first. You need to: -convert the model to the gmf format -create correct material files -create lua scripts -give proper names to have a good structures view in the Editor -and some things more / depends on the pack What does my tool do? In a first version of my tool I tried to do the above steps completely automatically with just a parameters given at startup, but this aproach fails as expected. It was working with some modelpacks but mostly it fails. So my new approach is a semi-automatic tool: First it will scan and analyse a given directory recursivly and collects all needed data like available models, are there already GMF models or do we need to convert from fbx. It collects every texture it found and like the GenMat tool it will try to find proper texture pairs to build material files. In a last prestep it will scan the converted meshes and get the needed materials or marks missing materials. The next step is done by the user: Choose which models to pack into the asset library. Assign missing textures, rename them etc. . You will also be able to choose a scale value for every single model or choose a scale for all models. The analyser will also attach a basic lua file to each model so you have proper dialogs in the editor. The last step will be to choose an asset name, a package name (optional) and a password (also optional). After a click on start the whole process will start and you will get a nice pak file or a directory structure which you only need to copy into your Game folder. I hope that I have a small Update next time, maybe a screenshot. See ya, klepto2