May 18, 2015

how to make the compound bow

Windows 10 preview vs Apple Bootcamp

Installed Windows 10 tech preview on Bootcamp partition (MBPR 15' 2014). Got random freezes as response for trivial actions.
Windows Log contains numerous errors "Event 129, storahci - Reset to device ..."

Cure: disable PCI-e Link State Power management in "Power Options". (link)

Or you may use only high performance power profile.

Apr 1, 2015

Connect to NodeJS Socket.IO server from Unity3d using WebSocketSharp

It wont work out of the box. So no connections with simple

using (var ws = new WebSocket ("ws://127.0.0.1")) {
ws.Connect();
};

Socket.IO clients hides much of inner details. So when you using plain WebSocket client you need to provide some additional params like this:

using (var ws = new WebSocket ("ws://127.0.0.1/socket.io/?EIO=3&transport=websocket&b64=1")) {
ws.Connect();
};

Nov 10, 2014

Cool scripts for ndk developers

http://android-developers.blogspot.ru/2014/11/utilities-for-cc-android-developers.html?m=1

Mar 23, 2013

My contribution to OpenCOLLADA 3dsmax export


  • near/far attenuation
  • affect specular/diffuse
  • shadow map size
  • hidden lights now not exported
  • primary/secondary visibility node params
  • shadow cast node params


  • https://github.com/KhronosGroup/OpenCOLLADA/pull/161#issuecomment-15343540