當前位置: 首頁>>代碼示例>>C#>>正文


C# ConfigNode.GetStringValues方法代碼示例

本文整理匯總了C#中System.ConfigNode.GetStringValues方法的典型用法代碼示例。如果您正苦於以下問題:C# ConfigNode.GetStringValues方法的具體用法?C# ConfigNode.GetStringValues怎麽用?C# ConfigNode.GetStringValues使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.ConfigNode的用法示例。


在下文中一共展示了ConfigNode.GetStringValues方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: TextureData

 public TextureData(ConfigNode node)
 {
     meshNames = node.GetStringValues("mesh");
     shaderName = node.GetStringValue("shader");
     diffuseTextureName = node.GetStringValue("diffuseTexture");
     normalTextureName = node.GetStringValue("normalTexture");
     emissiveTextureName = node.GetStringValue("emissiveTexture");
 }
開發者ID:Joshg213,項目名稱:SSTULabs,代碼行數:8,代碼來源:TextureSet.cs

示例2: SSTUEngineMountDefinition

        public SSTUEngineMountDefinition(ConfigNode node)
        {
            mountName = node.GetStringValue("name");
            modelName = node.GetStringValue("modelName");
            invertModel = node.GetBoolValue("invertModel", invertModel);
            singleModel = node.GetBoolValue("singleModel", singleModel);
            verticalOffset = node.GetFloatValue("verticalOffset");
            height = node.GetFloatValue("height", height);
            fairingDisabled = node.GetBoolValue("fairingDisabled", fairingDisabled);
            fairingTopOffset = node.GetFloatValue("fairingTopOffset");
            mountMass = node.GetFloatValue("mass", mountMass);
            defaultDiameter = node.GetFloatValue("defaultDiameter", defaultDiameter);
            volume = node.GetFloatValue("volume", volume);
            rcsVerticalPosition = node.GetFloatValue("rcsVerticalPosition", rcsVerticalPosition);
            rcsHorizontalPosition = node.GetFloatValue("rcsHorizontalPosition", rcsHorizontalPosition);
            rcsVerticalRotation = node.GetFloatValue("rcsVerticalRotation");
            rcsHorizontalRotation = node.GetFloatValue("rcsHorizontalRotation");

            if (node.HasValue("node"))
            {
                String[] vals = node.GetStringValues("node");
                foreach (String val in vals) { nodePositions.Add(new AttachNodeData(val)); }
                if (invertModel) { foreach (AttachNodeData data in nodePositions) { data.invert(); } }
            }
        }
開發者ID:SixDasher,項目名稱:SSTULabs,代碼行數:25,代碼來源:EngineMount.cs

示例3: ModelSwitchGroup

 public ModelSwitchGroup(ConfigNode node, SSTUModelSwitch module)
 {
     this.owner = module;
     this.name = node.GetStringValue("name");
     this.defaultModel = node.GetStringValue("defaultModel", string.Empty);
     this.parentGroup = node.GetStringValue("parentGroup", string.Empty);
     this.parentNode = node.GetStringValue("parentNode", string.Empty);
     string[] nodeNames = node.GetStringValues("node");
     int len = nodeNames.Length;
     modelNodes = new ModelNode[len];
     for (int i = 0; i < len; i++)
     {
         modelNodes[i] = new ModelNode(nodeNames[i], this);
         nodeMap.Add(modelNodes[i].name, modelNodes[i]);
     }
 }
開發者ID:shadowmage45,項目名稱:SSTULabs,代碼行數:16,代碼來源:SSTUModelSwitch.cs

示例4: ModelTextureData

 public ModelTextureData(ConfigNode node)
 {
     diffuseTextureName = node.GetStringValue("diffuseTexture");
     normalTextureName = node.GetStringValue("normalTexture");
     meshNames = node.GetStringValues("mesh");
 }
開發者ID:Joshg213,項目名稱:SSTULabs,代碼行數:6,代碼來源:ModelData.cs

示例5: ModelSwitchData

 public ModelSwitchData(ConfigNode node, Part owner, ModelSwitchGroup group)
 {
     name = node.GetStringValue("name");
     modelName = node.GetStringValue("modelName", name);
     groupName = node.GetStringValue("group", groupName);
     containerIndex = node.GetIntValue("containerIndex", 0);
     moduleIDs = node.GetIntValues("managedModuleID", new int[] { });
     localPosition = node.GetVector3("localPosition", Vector3.zero);
     localRotation = node.GetVector3("localRotation", Vector3.zero);
     scale = node.GetFloatValue("scale", scale);
     nodes = ModelNodeData.load(node.GetStringValues("node"));
     suppressNode = nodes.Length > 0;
     modelDefinition = SSTUModelData.getModelDefinition(modelName);
     if (modelDefinition == null) { throw new NullReferenceException("Could not locate model data for name: " + modelName + " :: " + name); }
     this.part = owner;
     this.group = group;
     this.group.add(this);
 }
開發者ID:shadowmage45,項目名稱:SSTULabs,代碼行數:18,代碼來源:SSTUModelSwitch.cs


注:本文中的System.ConfigNode.GetStringValues方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。