For reference, here’s the Visual Studio compiler versions used for the different versions of Softimage.
Softimage version | Visual C++ version |
---|---|
2013 and up | VC++ 2010 SP1 |
2012 | VC++ 2008 SP1 |
2011 | |
2010 | VC++ 2005 |
7.5 | |
7.01 |
For reference, here’s the Visual Studio compiler versions used for the different versions of Softimage.
Softimage version | Visual C++ version |
---|---|
2013 and up | VC++ 2010 SP1 |
2012 | VC++ 2008 SP1 |
2011 | |
2010 | VC++ 2005 |
7.5 | |
7.01 |
CValue out; CValueArray pick_args(2); pick_args[0] = L"Pick an object"; pick_args[1] = L"Pick an object"; Application().ExecuteCommand( L"PickObject", pick_args, out); CValueArray array = (const CValueArray &)out; LONG button = (LONG)array[0]; X3DObject pickedObject(array[2]); Application().LogMessage( pickedObject.GetFullName() );