|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
UberPOV has lengthy #version declarations such as the following:
#version unofficial patch 3.71;
#patch 0.99;
How do I store the version in a variable? For instance
#declare MyVersion = version;
Does that still work properly?
Mike
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Am 07.02.2018 um 02:32 schrieb Mike Horvath:
> UberPOV has lengthy #version declarations such as the following:
>
> #version unofficial patch 3.71;
> #patch 0.99;
>
> How do I store the version in a variable? For instance
>
> #declare MyVersion = version;
>
> Does that still work properly?
It should. Let me know if it doesn't.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 2/7/2018 3:57 PM, clipka wrote:
> Am 07.02.2018 um 02:32 schrieb Mike Horvath:
>> UberPOV has lengthy #version declarations such as the following:
>>
>> #version unofficial patch 3.71;
>> #patch 0.99;
>>
>> How do I store the version in a variable? For instance
>>
>> #declare MyVersion = version;
>>
>> Does that still work properly?
>
> It should. Let me know if it doesn't.
>
I just tried
#debug concat("\n\nMike's version: ", str(version, 0, -1), "\n\n")
And it outputted
Mike's version: 3.620000
Mike
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Am 09.02.2018 um 00:33 schrieb Mike Horvath:
> On 2/7/2018 3:57 PM, clipka wrote:
>> Am 07.02.2018 um 02:32 schrieb Mike Horvath:
>>> UberPOV has lengthy #version declarations such as the following:
>>>
>>> #version unofficial patch 3.71;
>>> #patch 0.99;
>>>
>>> How do I store the version in a variable? For instance
>>>
>>> #declare MyVersion = version;
>>>
>>> Does that still work properly?
>>
>> It should. Let me know if it doesn't.
>>
>
>
> I just tried
>
> #debug concat("\n\nMike's version: ", str(version, 0, -1), "\n\n")
>
> And it outputted
>
> Mike's version: 3.620000
Is that with or without the `#version unofficial patch 3.71;" ??
Because if you don't specify a `#version` statement nor `Version` INI
setting, 3.62 is the default you get.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 2/9/2018 6:51 AM, clipka wrote:
> Is that with or without the `#version unofficial patch 3.71;" ??
>
> Because if you don't specify a `#version` statement nor `Version` INI
> setting, 3.62 is the default you get.
>
Oops, you're right. If I set the version number first it reports 3.710000.
Mike
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |