add params
This commit is contained in:
parent
4bbd2d7bff
commit
11a4ef0515
@ -798,6 +798,13 @@ public abstract class BExpressionContext implements IByteArrayUnifier
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setVariableValue(String name, float value, boolean create ) {
|
||||||
|
Integer num = variableNumbers.get( name );
|
||||||
|
if ( num != null )
|
||||||
|
{
|
||||||
|
variableData[num.intValue()] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public float getVariableValue( String name, float defaultValue )
|
public float getVariableValue( String name, float defaultValue )
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user