示例#1
0
    public static string arwGetARToolKitVersion()
    {
        StringBuilder sb = new StringBuilder(128);
        bool          ok;

        if (Application.platform == RuntimePlatform.IPhonePlayer)
        {
            ok = ARNativePluginStatic.arwGetARToolKitVersion(sb, sb.Capacity);
        }
        else
        {
            ok = ARNativePlugin.arwGetARToolKitVersion(sb, sb.Capacity);
        }
        if (ok)
        {
            return(sb.ToString());
        }
        else
        {
            return("unknown");
        }
    }