Difference between revisions of "MC-Basic:element.BLENDPROTECTED/zh-hans"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with "{{Languages}} {{MC-Basic |SHORT FORM= None |SYNTAX= ?<''element''>.BlendProtected |AVAILABILITY= 4.5.x and above |DESCRIPTION= Sets the protected part of the move that is guar...")
 
Line 1: Line 1:
 
{{Languages}}
 
{{Languages}}
{{MC-Basic
+
== 缩写 ==
|SHORT FORM=
 
 
None
 
None
|SYNTAX=
+
 
 +
== 格式 ==
 
?<''element''>.BlendProtected
 
?<''element''>.BlendProtected
|AVAILABILITY=
+
 
4.5.x and above
+
== 适用版本 ==
|DESCRIPTION=
+
4.5.x及以上
 +
 
 +
== 描述 ==
 
Sets the protected part of the move that is guaranteed not going to be blended.<br>
 
Sets the protected part of the move that is guaranteed not going to be blended.<br>
  
Line 25: Line 27:
 
{{Note | Accuracy of the path length depends on the velocity at the moment of blending. Error in the magnitude of <math>V \cdot T </math> should be expected!}}
 
{{Note | Accuracy of the path length depends on the velocity at the moment of blending. Error in the magnitude of <math>V \cdot T </math> should be expected!}}
  
|TYPE=
+
== 类型 ==
 
Double
 
Double
|RANGE=
+
 
 +
== 取值范围 ==
 
0-100
 
0-100
|UNITS=
+
 
 +
== 单位 ==
 
path length percentage
 
path length percentage
|DEFAULT=
+
 
 +
== 默认 ==
 
0
 
0
|SCOPE=
+
 
 +
== 使用范围 ==
 
Scope Configuration, Task or Terminal
 
Scope Configuration, Task or Terminal
|LIMITATIONS=
+
 
 +
== 限制 ==
 
Nodal-only
 
Nodal-only
|EXAMPLE=
+
 
 +
== 例子 ==
 
'''Axis''' <br>
 
'''Axis''' <br>
 
Move ''A1'' 10 BlendProtected=50 <br>
 
Move ''A1'' 10 BlendProtected=50 <br>
Line 43: Line 51:
 
'''Group''' <br>
 
'''Group''' <br>
 
Move ''G1'' (10,10) BlendProtected=50
 
Move ''G1'' (10,10) BlendProtected=50
|SEE ALSO=
+
 
 +
== 参考 ==
 
* [[MC-Basic:element.BLENDINGFACTOR| BLENDINGFACTOR ]]
 
* [[MC-Basic:element.BLENDINGFACTOR| BLENDINGFACTOR ]]
 
* [[MC-Basic:element.BLENDINGSTARTCONDITION| BlendingStartCondition ]]
 
* [[MC-Basic:element.BLENDINGSTARTCONDITION| BlendingStartCondition ]]
 
* [[MC-Basic:element.PROFILERTYPE| ProfilerType ]]
 
* [[MC-Basic:element.PROFILERTYPE| ProfilerType ]]
 
* [[Time Based Profile (Trapezoidal Acceleration)| Time Based Profile]]
 
* [[Time Based Profile (Trapezoidal Acceleration)| Time Based Profile]]
}}
 

Revision as of 08:27, 7 September 2017

语言: [[::MC-Basic:element.BLENDPROTECTED|English]]  • [[::MC-Basic:element.BLENDPROTECTED/zh-hans|中文(简体)‎]]

缩写

None

格式

?<element>.BlendProtected

适用版本

4.5.x及以上

描述

Sets the protected part of the move that is guaranteed not going to be blended.

Percentage of the current motion path (measured from the end) that is going to be executed completely separated from the previous or next motions.

Defines the smallest amount at the motion end that is not blended, which means that according to the blending conditions the un-blended part of the move can be longer but not shorter then the given percentage given in BlendProtected.


NOTE-Info.svgNOTE
Has a higher priority than the BlendingFactor.
If two motions of the same length that are blended together have Bfactor = 50 and the second motion has Bprotected = 60 the superposition of the two motions will start at 60% of the path of the first move. The last 40% of the first motion and the first 40% of the second motion will be super-posed, this means the last 60% of the second motion will be done separately.
NOTE-Info.svgNOTE
Setting any value > 0 means that the next movement will not be blended even though the BlendingFactor is defined, because the next movement will not have anything to be blended to.
NOTE-Info.svgNOTE
Applicable only with BlendingMethod=2 (SP blending) and time-based profile active (prftype=2).
In cases of non-SP blending or Sine-Acceleration profile, its value will be silently ignored (no error reported).
NOTE-Info.svgNOTE
Accuracy of the path length depends on the velocity at the moment of blending. Error in the magnitude of should be expected!

类型

Double

取值范围

0-100

单位

path length percentage

默认

0

使用范围

Scope Configuration, Task or Terminal

限制

Nodal-only

例子

Axis
Move A1 10 BlendProtected=50

Group
Move G1 (10,10) BlendProtected=50

参考