It is currently April 26th, 2024, 10:29 pm

How to divide update time of a single mesher

Get help with creating, editing & fixing problems with skins
gkmaz9
Posts: 67
Joined: August 26th, 2019, 10:42 am

How to divide update time of a single mesher

Post by gkmaz9 »

Hello. I ask a simple question.

Update = 1000
20 measurers and meters run every 1 second.
in those...
How can I make a single meter run every 0.1 seconds?
User avatar
jsmorley
Developer
Posts: 22631
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: How to divide update time of a single mesher

Post by jsmorley »

You can't think of it that way. Whatever Update is set to is the fastest that anything can be. Instead, you do it this way:

[Rainmeter]
Update=100
DefaultUpdateDivider=10

[NormalMeasureMeter]

[FastMeasureMeter]
UpdateDivider=1

[SlowMeasureMeter]
UpdateDivider=86400

https://docs.rainmeter.net/manual/skins/rainmeter-section/#DefaultUpdateDivider
gkmaz9
Posts: 67
Joined: August 26th, 2019, 10:42 am

Re: How to divide update time of a single mesher

Post by gkmaz9 »

jsmorley wrote: February 14th, 2020, 2:09 pm You can't think of it that way. Whatever Update is set to is the fastest that anything can be. Instead, you do it this way:

[Rainmeter]
Update=100
DefaultUpdateDivider=10

[NormalMeasureMeter]

[FastMeasureMeter]
UpdateDivider=1

[SlowMeasureMeter]
UpdateDivider=86400

https://docs.rainmeter.net/manual/skins/rainmeter-section/#DefaultUpdateDivider
You solved it in a simple way.
Thank you.