本文整理汇总了C#中Thalamus.Actions.SyncPoint类的典型用法代码示例。如果您正苦于以下问题:C# SyncPoint类的具体用法?C# SyncPoint怎么用?C# SyncPoint使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SyncPoint类属于Thalamus.Actions命名空间,在下文中一共展示了SyncPoint类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: Head
public Head(string id, string lexeme, int repetitions, double frequency, SyncPoint startTime, SyncPoint endTime)
: base(id, startTime, endTime)
{
this.Repetitions = repetitions;
this.Lexeme = lexeme;
this.Frequency = frequency;
}
开发者ID:emote-project,项目名称:Scenario1,代码行数:7,代码来源:Head.cs
示例2: Sound
public Sound(string id, string soundName, SyncPoint startTime, SyncPoint endTime, PlaybackMode playbackMode, float volume, float pitch)
: base(id, startTime, endTime)
{
this.Mode = playbackMode;
this.Volume = volume;
this.Pitch = pitch;
this.SoundName = soundName;
}
开发者ID:emote-project,项目名称:Scenario1,代码行数:8,代码来源:Sound.cs
示例3: Locomotion
public Locomotion(string id, SyncPoint startTime, SyncPoint endTime, String target) : base(id, startTime, endTime) {
IsXY = false;
Target = target;
string[] splits = target.Split(' ');
if (splits.Length == 3 && splits[0] == "xy")
{
try
{
X = float.Parse(splits[1], ifp);
Y = float.Parse(splits[2], ifp);
}
catch { }
}
else if (splits.Length == 4 && splits[0] == "xyt")
{
try
{
X = float.Parse(splits[1], ifp);
Y = float.Parse(splits[2], ifp);
Angle = float.Parse(splits[3], ifp);
}
catch { }
}
}
开发者ID:emote-project,项目名称:Scenario1,代码行数:24,代码来源:Locomotion.cs
示例4: PostureShift
public PostureShift(SyncPoint startTime, SyncPoint endTime) : this("PostureShift" + Counter++, startTime, endTime) { }
开发者ID:emote-project,项目名称:Scenario1,代码行数:1,代码来源:PostureShift.cs
示例5: BMLPointingToAction
private Actions.Pointing BMLPointingToAction(string id, Pointing pointing, string start, string end) {
if (id == null) id = "";
Actions.PointingMode mode = Actions.PointingMode.RightHand;
if (pointing.modeSpecified) mode = BMLPointingModeToPointingMode(pointing.mode);
string target = pointing.target;
Actions.SyncPoint startPoint = Actions.SyncPoint.Null;
if (start != null && start != "") startPoint = new Actions.SyncPoint(start);
Actions.SyncPoint endPoint = Actions.SyncPoint.Null;
if (end != null && end != "") endPoint = new Actions.SyncPoint(end);
return new Actions.Pointing(id, target, mode, startPoint, endPoint);
}
开发者ID:emote-project,项目名称:Scenario1,代码行数:13,代码来源:BehaviorManager.cs
示例6: BMLGazeShiftToAction
private Actions.GazeShift BMLGazeShiftToAction(string id, GazeShift gaze, string start, string end)
{
if (id == null) id = "";
Actions.Direction direction = Actions.Direction.Straight;
if (gaze.offsetdirectionSpecified) direction = BMLDirectionToDirection(gaze.offsetdirection);
float angle = 0;
if (gaze.offsetangleSpecified) angle = gaze.offsetangle;
float speed = 1;
if (gaze.speedSpecified) speed = gaze.speed;
Actions.GazeInfluence influence = BMLGazeInfluenceToGazeInfluence(gaze.influence);
Actions.SyncPoint startPoint = Actions.SyncPoint.Null;
if (start != null && start != "") startPoint = new Actions.SyncPoint(start);
Actions.SyncPoint endPoint = Actions.SyncPoint.Null;
if (end != null && end != "") endPoint = new Actions.SyncPoint(end);
string target = "";
if (gaze.target != null) target = gaze.target;
return new Actions.GazeShift(id, target, influence, angle, direction, speed, startPoint, endPoint);
}
开发者ID:emote-project,项目名称:Scenario1,代码行数:19,代码来源:BehaviorManager.cs
示例7: Gaze
public Gaze(double offsetAngle, SyncPoint startTime, SyncPoint endTime) : this("Gaze" + Counter++, "", GazeInfluence.Eyes, offsetAngle, Direction.Straight, 1.0f, startTime, endTime) { }
开发者ID:emote-project,项目名称:Scenario1,代码行数:1,代码来源:Gaze.cs
示例8: SetStart
public void SetStart(SyncPoint start)
{
if (start !=SyncPoint.Null) this.startTime = start;
}
开发者ID:emote-project,项目名称:Scenario1,代码行数:4,代码来源:Gaze.cs
示例9: SetEnd
public void SetEnd(SyncPoint end)
{
if (end != SyncPoint.Null) this.endTime = end;
}
开发者ID:emote-project,项目名称:Scenario1,代码行数:4,代码来源:Gaze.cs
示例10: BMLHeadToAction
private Actions.Head BMLHeadToAction(Head head)
{
string id = "";
if (head.id != null) id = head.id;
string lexeme = "";
if (head.lexemeSpecified) lexeme = head.lexeme.ToString();
Actions.SyncPoint startPoint = Actions.SyncPoint.Null;
if (head.start != null && head.start != "") startPoint = new Actions.SyncPoint(head.start);
Actions.SyncPoint endPoint = Actions.SyncPoint.Null;
if (head.end != null && head.end != "") endPoint = new Actions.SyncPoint(head.end);
return new Actions.Head(id, lexeme, head.repetition, startPoint, endPoint);
}
开发者ID:emote-project,项目名称:Scenario1,代码行数:15,代码来源:BehaviorManager.cs
注:本文中的Thalamus.Actions.SyncPoint类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论