Jump to content

Ultra Software Company Blog

  • entries
    185
  • comments
    1,247
  • views
    563,937

Contributors to this blog

About this blog

Entries in this blog

Halloween Game Tournament

Fall is in the air, which means evil spirits, good beer, and the annual Leadwerks Halloween Game Tournament.   WHEN: The tournament will start Thursday, October 8, and end Thursday, November 5th at 11:59 P.M. (Pacific Standard Time).   HOW TO PARTICIPATE: Publish your Halloween-or-other-themed game to Steam Workshop or upload it to the games database before the deadline. You can work as a team or individually. Use blogs to share your work and get feedback as you build your game. If you need

Admin

Admin

View Your Sales in Leadwerks Marketplace

You can now view detailed sales records of your game assets in Leadwerks Marketplace. First, log into your Leadwerks account and navigate to the Leadwerks Marketplace main page. In the bottom-right, below the categories, a link to your paid files will appear. Here you can see a list of all your paid items: When you click on an item, you can see a list of people who have purchased it, along with sales dates. If you wish to give a free license to any member for any

Josh

Josh

Welcome to the Leadwerks.com dedicated server

Leadwerks.com is now hosted on our own dedicated server located in Chicago, Illinois. It was found that this location gave the best overall results for our worldwide user base. We tested the new server in advance for a couple of days, and transferred the database right before switching the DNS, so no data should have been lost. Please submit a bug report if you experience any problems.   The Leadwerks server has a 500 gb secondary hard drive where site backups are automatically saved to, in

Admin

Admin

AMD Releases Driver 15.3 beta for Leadwerks

AMD has released a new driver which fixes a compatibility problem with Leadwerks. You can download the driver from their site here: http://support.amd.com/en-us/kb-articles/Pages/latest-catalyst-windows-beta.aspx   Resolved Issues: [412702] Screens may blank out when enabling a 3x1 SLS with 3 HDMI monitors [411847] Leadwerks : Project Manager crashes with a "Pure Virtual Function Call" error [413076] Second Life : Rigged mesh objects are not rendered correctly when hardware skinning

Admin

Admin

Pump-Action Captain Launches on Steam

Congratulations to Type Advantage for the release of Pump-Action Captain on Steam. This title began as a Kickstarter project clearing 170% of their modest $500 goal. The team used that momentum to fuel a successful Greenlight campaign, gaining approval in just ten days. Today marks the release of the game as an "Early Preview" title, which means it's a playable work in progress. You can play it now for just $4.19.   From the store page:   Be sure to support your fellow Leadwerkers. Buy

Admin

Admin

Leadwerks Engine Evaluation Kit 2.3 released

Finally, the evaluation kit for Leadwerks Engine 2.3 is released. Get it here. The evaluation kit allows saving and script editing for a period of 30 days. C/C++ programming is not possible with the evaluation kit. An NVidia GEForce 7000 or ATI Radeon 2000 series graphics card is required. An NVidia GEForce 8800 or ATI Radeon 3870 graphics card is recommended.

Josh

Josh

Version 4.5 Updated

An update for Leadwerks Game Engine 4.5 has been pushed out on Steam. The following fixes have been made: View projection for Oculus Rift VR headset is fixed. Added VR.AButton, VR.BButton, VR.GripAxis for improved compatibility with Oculus Touch controllers. Fixed terrain collision bug. Added missing Workshop toolbar icons on Linux. Fixed script editor not opening on Linux. Fixed LoadAnimation bug. Fixed missing fall damage on player controller.

Admin

Admin

Four New Texture Packs Released in Workshop Store

Today we've got four new texture packs available for purchase in the Workshop Store.   The Blood Decals pack provides 30 hand-painted textures for spatters, drips, and puddles of human, animal, or alien blood. This is perfect for adding atmosphere and a sense of foreboding to an otherwise ordinary scene. You can even create trails of blood going down hallways and around corners.     Another creepy addition is the Spiderweb Materials pack. Create a sprite and use these materials to inst

Admin

Admin

You did it! Native game development is coming to Linux

In just three weeks, the Linux community has successfully funded the development of Leadwerks for Linux. This means we're going to bring Leadwerks 3.1 to Linux, with native support for developing Linux games...so Linux games can now be completely free from Windows. Greenlight It's been an amazing few weeks. During this time, we also successfully completed our Greenlight campaign to make Leadwerks available on Steam and take advantage of features like the Steam Workshop. You can see from th

Admin

Admin

Three New Model Packs available in the Workshop Store

Today we are releasing three new model packs in the Workshop Store.   The Candles Pack provides beautifully detailed candles and sconces to bring atmosphere to any horror game.     The Modern Furniture Pack includes numerous chairs, sofas, and a bar stool to populate any residential setting with.     The Old Wine Bottles Pack gives you a variety of bottles with two texture variations. Decorate your map with them or use them for target practice.     You can get these items by op

Admin

Admin

A look at C++11 Weak Pointers in Leadwerks 5

Previously, I talked a little bit about shared pointers in C++11.  These use automatic reference counting to track how many variables are pointing to an object.  When the object is no longer being used, it is automatically deleted.  This is similar to garbage collection, but doesn't involve the massive overhead of garbage-collected systems.  In fact, shared pointers simply automate something we were already doing with the Release() and AddRef() commands in Leadwerks 4. A weak pointer is lik

Josh

Josh

Leadwerks Software Now Offering Internships

Leadwerks Software is now offering internships through the Center for Entreprenuership at Sacramento State University. Internships are available for programming, 3D art, web development, and marketing.   Programming Internship Assist the development team with tools and core engine design. Work with game development team to create a sample Leadwerks3D game. Gain experience working in a professional software development environment. C++ and Lua experience are a plus but not required.

Admin

Admin

Leadwerks Engine 2.32 Released

Leadwerks Engine 2.32 is now available.   2.32 -"Render" Lua object function renamed to "Draw". -Added Draw entity callback. -Entity draw callback and Lua "Draw" object function will only be called at most once per frame. Perform animation in this function. -Entity LOD distance parameters changed for better performance. -LoadAnimation now works without exact hierarchy matches, so LOD meshes can all use the full-res animation. -Implemented entity octree with hierarchical culling and pick

Josh

Josh

Leadwerks Mailing List

We've created a mailing list so you can stay up to date with the latest happenings. Sign up here and we'll notify you when Leadwerks 3 is ready,

Josh

Josh

Rocks and Stones Model Pack Released

The Rocks and Stones Model Pack by Pure3D is now available here: http://leadwerks.com/werkspace/index.php?/page/products/_/assets/rocks-and-stones-pack-r1   You can also still get the Industrial Cargo Model Pack for the low introductory price of just $9.95 until Monday, September 6, before the price goes up: http://leadwerks.com/werkspace/index.php?/page/products/_/assets/industrial-cargo-model-pack-r8

Josh

Josh

C++11 Shared Pointers Make Leadwerks 5 Simpler

This shows the fundamental difference between shared pointers and manual reference counting. Leadwerks 4: void Material::SetTexture(Texture* texture, const int index) { if (this->texture[index] != texture) { if (this->texture[index]) this->texture[index]->Release(); this->texture[index] = texture; if (this->texture[index]) this->texture[index]->AddRef(); } } Leadwerks 5: void Material::SetTexture(shared_ptr<Texture> texture, const int index)

Josh

Josh

4.3 Update Available

An update to version 4.3 is now available on the default branch. This fixes it so the editor is not DPI-aware and will be scaled correctly if scaling on Windows is used. Some small shadow update bugs were fixed, and the animation shaders were improved.   If you are having trouble running your game from the editor in debug mode, you need to install the latest VC++ redistributable from Microsoft found here: https://www.microsoft.com/en-us/download/details.aspx?id=53587   The version distribut

Admin

Admin

New Kickstarter rewards added, with international shipping

I've added new rewards including international shipping for our T-Shirt and sticker, as well as an indie team and professional site license. A lot of people have been asking for international shipping for the T-shirt and sticker rewards, but I wanted to make sure I knew what the shipping would cost first. It's a good thing I checked because it costs $16.75 to ship. The good news is its a flat rate for any country, so I can rely on that cost when I price things. To sweeten the deal, I am incl

Josh

Josh

Leadwerks wants to put game development on Steam

Valve Software's Steam is a game distribution platform used by millions of gamers worldwide. What started as simply a way to buy and update games has evolved into a vast ecosystem with instant messaging between friends, game hubs featuring players' screenshots and video, and workshops for sharing user-generated content. Last fall, Valve added software titles to its lineup of products, and implemented Greenlight, a system that lets users vote directly on which titles should be sold on Steam.

Admin

Admin

Leadwerks.com launches new community features

Leadwerks.com now features a video gallery where our members can post movies of their games made with Leadwerks Engine. Instead of slowly uploading a huge video file, you can simply enter a YouTube video ID to submit movies. Check out some of the cool videos like Legos falling over to a techno soundtrack, fly through floating islands in Aerora, and of course there's Dave Lee's excellent Chernobyl Exclusion Zone.   We've also created a random rotating banner image in our website header. Lead

Josh

Josh

×
×
  • Create New...