Category: Extensions
Introducing the Daneel framework for CraftStudio
Since the Global Game Jam in January where I worked with others on HeartZ, I spent quite some times to built Daneel, a project that’s only the foundation for many things I have in mind for CraftStudio Daneel is a framework for CraftStudio that aims to sweeten and shorten the…
Efficiently C# to UnityScript conversion extension for Unity
I already talked back in June about my ambition to built extensions for Unity3D to convert from one scripting language to another. I am pleased to announce that the months of work have paid of as the first extension enters its beta stage today ! Indeed, the C# to UnityScript…
Lua’s table library extension
While working on some scripting tutorials for CraftStudio, I needed to extends Lua’s built-in table library which is surprisingly poor (compared to .Net collections manipulation capabilities, for instance). Hopefully, Lua allows us to extend any object easily. I have implemented a few classic but useful functions that I think are…
Convertor scripts for Unity
You may know it, Unity allows to code in three scripting languages : C#, UnityScript and Boo. C# is the language invented by Microsoft for it’s .Net framework, that’s why it is popular and powerful. UnityScript (US) is a language invented by the Unity’s developers. It’s syntax is close to…