114 lines
2.6 KiB
PHP
114 lines
2.6 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: proCore.proto
|
|
|
|
namespace Rv\Data\TriggerTransferRenderState;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.TriggerTransferRenderState.TimelineState</code>
|
|
*/
|
|
class TimelineState extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>bool active = 1;</code>
|
|
*/
|
|
protected $active = false;
|
|
/**
|
|
* Generated from protobuf field <code>float current_time = 2;</code>
|
|
*/
|
|
protected $current_time = 0.0;
|
|
/**
|
|
* Generated from protobuf field <code>int32 last_slide_index = 3;</code>
|
|
*/
|
|
protected $last_slide_index = 0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type bool $active
|
|
* @type float $current_time
|
|
* @type int $last_slide_index
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\ProCore::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool active = 1;</code>
|
|
* @return bool
|
|
*/
|
|
public function getActive()
|
|
{
|
|
return $this->active;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool active = 1;</code>
|
|
* @param bool $var
|
|
* @return $this
|
|
*/
|
|
public function setActive($var)
|
|
{
|
|
GPBUtil::checkBool($var);
|
|
$this->active = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>float current_time = 2;</code>
|
|
* @return float
|
|
*/
|
|
public function getCurrentTime()
|
|
{
|
|
return $this->current_time;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>float current_time = 2;</code>
|
|
* @param float $var
|
|
* @return $this
|
|
*/
|
|
public function setCurrentTime($var)
|
|
{
|
|
GPBUtil::checkFloat($var);
|
|
$this->current_time = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 last_slide_index = 3;</code>
|
|
* @return int
|
|
*/
|
|
public function getLastSlideIndex()
|
|
{
|
|
return $this->last_slide_index;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 last_slide_index = 3;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setLastSlideIndex($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->last_slide_index = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|