mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-04-30 00:24:59 +00:00
8 lines
174 B
Plaintext
Executable File
8 lines
174 B
Plaintext
Executable File
void mx_geompropvalue_float(string geomprop, float defaultVal, output float result)
|
|
{
|
|
if (getattribute(geomprop, result) == 0)
|
|
{
|
|
result = defaultVal;
|
|
}
|
|
}
|