当前位置: 首页>>代码示例>>C#>>正文


C# ConfigData.SetFrameMarker方法代码示例

本文整理汇总了C#中ConfigData.SetFrameMarker方法的典型用法代码示例。如果您正苦于以下问题:C# ConfigData.SetFrameMarker方法的具体用法?C# ConfigData.SetFrameMarker怎么用?C# ConfigData.SetFrameMarker使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ConfigData的用法示例。


在下文中一共展示了ConfigData.SetFrameMarker方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: fileToStruct


//.........这里部分代码省略.........
                            multiTargetPart.name = prtNameAttr;
                            multiTargetPart.rotation = prtRotation;
                            multiTargetPart.translation = prtTranslation;

                            // Since the XML Reader runs top down we can assume
                            // that the Virtual Button that has been found is
                            // part of the latest Image Target.
                            if (!configData.AddMultiTargetPart(multiTargetPart,
                                                               latestMTName))
                            {
                                Debug.LogWarning("Multi Target with name " +
                                                 latestMTName +
                                                 " could not be found. " +
                                                 "Multi Target Part " +
                                                 prtNameAttr +
                                                 "will not be added.");
                            }
                            break;

                        case "Marker":

                            // Parse name from config file
                            string fmNameAttr =
                                configReader.GetAttribute("name");
                            if (fmNameAttr == null)
                            {
                                Debug.LogWarning("Found Marker without name " +
                                                 "attribute in config.xml. " +
                                                 "Marker will be ignored.");
                                continue;
                            }

                            // Parse size from config file
                            Vector2 fmSize = Vector2.zero;
                            string[] fmSizeAttr =
                                configReader.GetAttribute("size").Split(' ');
                            if (fmSizeAttr != null)
                            {
                                if (!QCARUtilities.SizeFromStringArray(
                                    out fmSize, fmSizeAttr))
                                {
                                    Debug.LogWarning("Found illegal size " +
                                                     "attribute for Marker " +
                                                     fmNameAttr +
                                                     " in config.xml. Marker " +
                                                     "will be ignored.");
                                    continue;
                                }
                            }
                            else
                            {
                                Debug.LogWarning("Marker " + fmNameAttr +
                                                 " has no size attribute in " +
                                                 "config.xml. Marker will be " +
                                                 "ignored.");
                                continue;
                            }

                            // Parse id from config file
                            string fmIDAttr = configReader.GetAttribute("id");
                            if (fmIDAttr == null)
                            {
                                Debug.LogWarning("Marker " + fmNameAttr +
                                                 " has no id attribute in " +
                                                 "config.xml. Marker will be " +
                                                 "ignored.");
                                continue;
                            }
                            configReader.MoveToElement();

                            int fmID = int.Parse(fmIDAttr);
                            if (fmID < 0 ||
                                fmID >= QCARUtilities.GlobalVars.MAX_NUM_FRAME_MARKERS)
                            {
                                Debug.LogWarning("Found Marker " + fmNameAttr +
                                                 " with invalid id in " +
                                                 "config.xml. Marker will be " +
                                                 "ignored.");
                                continue;
                            }

                            ConfigData.FrameMarker fm =
                                new ConfigData.FrameMarker();

                            fm.name = fmNameAttr;
                            fm.size = fmSize;

                            configData.SetFrameMarker(fm, fmID);

                            break;

                        default:
                            break;
                    }
                }
            }
        }

        return true;
    }
开发者ID:NCSUMobiles,项目名称:AR-Tetris,代码行数:101,代码来源:ConfigParser.cs


注:本文中的ConfigData.SetFrameMarker方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。