digital clockTime is what we in the USA used to call military time … 24 hour base time runs from 0 through 23
midnight 0 through 11 are AM Rule when (All) Attribute: game.clock.Hour ≥ 0 Attribute: game.clock.Hour < 12 --changeAttribute: whatever you use to show AM
noon 12 through 23 are PM Rule: when (All) Attribute: game.clock.Hour ≥ 12 Attribute: game.clock.Hour < 0 --changeAttribute: whatever you use to show PM
(oh dear, hope I got that right!)
great expressions to use with clock … in the iOSTime demo!
Comments
midnight 0 through 11 are AM
Rule when (All)
Attribute: game.clock.Hour ≥ 0
Attribute: game.clock.Hour < 12
--changeAttribute: whatever you use to show AM
noon 12 through 23 are PM
Rule: when (All)
Attribute: game.clock.Hour ≥ 12
Attribute: game.clock.Hour < 0
--changeAttribute: whatever you use to show PM
(oh dear, hope I got that right!)
great expressions to use with clock … in the iOSTime demo!
@};- MH