---
title: "getTime"
canonical: "https://help.vicon.com/space/ShogunPost121/1253736823/getTime"
format: markdown
---
# Description

Returns the current frame number or time in seconds.

The getTime command identifies the current time, in terms of frames or seconds.

## Functional area

Data retrieval

# Command syntax

## Syntax

> Macro (scroll-tablelayout)

|  |
| --- |
| `getTime [-s]` |

### Arguments

None

### Flags

> Macro (scroll-tablelayout)

| Name | Flag arguments | Argument type | Exclusive to | Comments |
| --- | --- | --- | --- | --- |
| `s` | 0 | — | — | Return the current time in seconds. Otherwise, time is returned as a frame number. |

## Return value

float

Returns the current scene time in seconds or frames.

> Macro (scroll-pagebreak)

## Examples

```plaintext
int $time = `getTime`;
print $time; 
// Identifies the current frame and saves the result to an
// integer variable.
  
float $time = `getTime`;
print $time; 
// Identifies the current frame and saves the result to a
// floating point variable.
```

# Additional information

## Related commands

- [animRange](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253737864)
- [fastForward](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253736984)
- [getAnimEnd](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253738102)
- [getPlayEnd](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253738077)
- [getPlayStart](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253737434)
- [play](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253737029)
- [playOptions](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253736691)
- [playRange](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253737114)
- [setRangesFollowActiveClip](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253736779)
- [setTime](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253737046)
- [step](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253737636)
- [stepKey](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253737885)
- [stop](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253737596)