blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f15ff3a5cbe27501a5a0f445c90a54e338044d62 | 27f18a2edb4db47af9de7875ea85be8caba2f161 | /backpack/backpackwidget.cpp | 9f9e78cda26562c4adc41ade90557adf33dc8412 | [
"Apache-2.0"
] | permissive | Qt-Widgets/Qt-Timeline-Widget | b8298e47abb04288e798dbb3352a2b325385d646 | cedc12f74243fb98bad16caba2bce0fa1c514373 | refs/heads/master | 2022-02-04T15:04:42.816401 | 2022-01-10T17:08:28 | 2022-01-10T17:08:28 | 247,776,852 | 5 | 1 | null | 2022-01-10T17:08:29 | 2020-03-16T17:26:27 | C++ | UTF-8 | C++ | false | false | 10,240 | cpp | backpackwidget.cpp | #include "backpackwidget.h"
BackpackWidget::BackpackWidget(QWidget *parent) : QWidget(parent)
{
initView();
}
void BackpackWidget::setTimeline(TimelineWidget *timeline)
{
this->timeline = timeline;
connect(timeline, SIGNAL(targetItemsChanged()), this, SLOT(autoRefreshTimeline()));
}
void BackpackWidget::initView()
{
bps_combo = new QComboBox(this);
list_widget = new QListWidget(this);
refresh_btn = new QPushButton("刷新", this);
QVBoxLayout* layout = new QVBoxLayout(this);
layout->setMargin(0);
layout->addWidget(bps_combo);
layout->addWidget(list_widget);
layout->addWidget(refresh_btn);
setLayout(layout);
bps_combo->setFocusPolicy(Qt::NoFocus);
list_widget->setFocusPolicy(Qt::NoFocus);
refresh_btn->setFocusPolicy(Qt::NoFocus);
/*connect(bps_combo, &QComboBox::currentTextChanged, this, [=](QString name){
if (bps_combo->count() == 0)
return ;
current_backpack = name;
refreshThings();
});*/
connect(bps_combo, SIGNAL(activated(const QString&)), this, SLOT(slotComboChanged(const QString&)));
connect(list_widget, &QListWidget::itemActivated, this, [=](QListWidgetItem *item){
int row = list_widget->row(item);
auto indexes = backpacks.value(current_backpack).at(row).indexes;
is_focusing_item = true;
timeline->selectItems(indexes);
is_focusing_item = false;
});
connect(refresh_btn, SIGNAL(clicked()), this, SLOT(refreshTimeline()));
}
void BackpackWidget::keyPressEvent(QKeyEvent *event)
{
auto key = event->key();
auto modifier = event->modifiers();
if (modifier == Qt::NoModifier && (key == Qt::Key_F5 || key == Qt::Key_Refresh))
{
refreshTimeline();
return ;
}
QWidget::keyPressEvent(event);
}
void BackpackWidget::autoRefreshTimeline()
{
if (auto_refresh && !is_focusing_item)
refreshTimeline();
}
/**
* 根据当前点击的那些行,获取对应的背包
*/
void BackpackWidget::refreshTimeline()
{
backpacks.clear();
// ==== 获取选中行 ====
auto indexes = timeline->selectedIndexes();
QList<int> watched_indexes;
// 若是没选,则遍历全部
if (indexes.size() == 0)
{
int size = timeline->count();
for (int i = 0; i < size; i++)
watched_indexes.append(i);
}
// 若是单选,则选中当前行及上面
else if (indexes.size() == 1)
{
int size = indexes.first();
for (int i = 0; i <= size; i++)
watched_indexes.append(i);
}
// 若是多选,则只查看选中的那些行
else
{
watched_indexes = indexes;
}
// ==== 构建背包正则 ====
/* 格式:
* +物品
* -物品
* *等级=3级
* @背包-物品
* @仓库+物品
* @主角*等级=3
*/
QRegularExpression addDelRe("^(@(.*))?([\\+\\-])(.+)"); // 物品加减
QRegularExpression attrRe("^(@(.*))?\\*(.+?)([\\+\\-=])(.*)"); // 属性加减
QRegularExpression numUnitRe("^(-?\\d{1,8})\\s?(.*)$"); // 带单位的数字
auto getBackpack = [&](QString name) {
if (!backpacks.contains(name))
backpacks.insert(name, QList<TimeThing>{});
return &backpacks[name];
};
// ==== 顺序遍历背包 ====
for (int i = 0; i < watched_indexes.size(); i++)
{
auto bucket = timeline->at(watched_indexes.at(i));
auto time = bucket->getTime();
auto texts = bucket->getTexts();
foreach (auto text, texts)
{
QRegularExpressionMatch match;
// @背包+物品 -物品
if (text.indexOf(addDelRe, 0, &match) > -1)
{
auto rsts = match.capturedTexts();
QString bp = rsts.at(2); // 背包名字(可空)
QString op = rsts.at(3);
QString name = rsts.at(4); // 物品名字
if (op == "+") // +物品
{
TimeThing thing;
thing.name = name;
thing.indexes << watched_indexes.at(i);
getBackpack(bp)->append(thing);
}
else if(op == "-") // -物品
{
auto things = getBackpack(bp);
for (int j = 0; j < things->size(); j++)
{
if (things->at(j).name == name)
{
things->removeAt(j);
break;
}
}
}
}
// @背包*物品=属性 @背包*物品+数值 *物品-数值
else if (text.indexOf(attrRe, 0, &match) > -1)
{
auto rsts = match.capturedTexts();
QString bp = rsts.at(2);
QString name = rsts.at(3);
QString op = rsts.at(4);
QString value = rsts.at(5);
// 查找或创建
auto things = getBackpack(bp);
TimeThing* thing = nullptr;
for (int j = 0; j < things->size(); j++)
{
if (things->at(j).name == name)
{
thing = &(*things)[j];
break;
}
}
if (thing == nullptr) // 不存在这个物品,创建
{
TimeThing newThing;
newThing.name = name;
things->append(newThing);
thing = &(*things)[things->size()-1];
}
thing->indexes << watched_indexes.at(i);
// 修改属性
if (op == "=" || (thing->value.isEmpty() && op == "+")) // (空)物品=属性
{
thing->value = value;
}
else if (thing->value.isEmpty() && op == "-") // 空物品,负数
{
thing->value = "-" + value;
}
else if (op == "+" || op == "-")
{
QRegularExpressionMatch match2;
if (thing->value.indexOf(numUnitRe, 0, &match2) == -1)
continue;
auto texts = match2.capturedTexts();
QString num = texts.at(1); // 数值
QString unit = texts.at(2); // 单位
if (num.isEmpty())
num = "0";
if (value.indexOf(numUnitRe, 0, &match2) == -1)
continue;
texts = match2.capturedTexts();
QString num2 = texts.at(1); // 数值
QString unit2 = texts.at(2); // 单位
if (num2.isEmpty())
continue;
qint64 iNum = num.toLongLong();
qint64 iNum2 = num2.toLongLong();
// 要确保单位一样
if (unit != unit2)
{
if (unit2.endsWith(unit))
{
while (!unit2.isEmpty())
{
QString ch = unit2.mid(0, 1);
if (ch == "十")
iNum2 *= 10;
else if (ch == "百")
iNum2 *= 100;
else if (ch == "千")
iNum2 *= 1000;
else if (ch == "万")
iNum2 *= 10000;
else if (ch == "亿")
iNum2 *= 100000000;
else if (ch == "兆")
iNum2 *= 10000000000;
else
break;
unit2 = unit2.right(unit2.length()-1);
if (unit2 == unit) // 已经转换完成
break;
}
if (unit2 != unit && !unit2.isEmpty()) // 未知转换
continue;
}
else if (!unit.isEmpty() && unit2.isEmpty())
unit2 = unit; // 默认单位
else // 无法转换
continue;
}
if (op == "+") // 物品+数值
{
iNum += iNum2;
}
else if (op == "-") // 物品-数值
{
iNum -= iNum2;
}
thing->value = QString("%1%2").arg(iNum).arg(unit);
}
}
}
}
// ==== 内容显示至视图 ====
bps_combo->clear();
bps_combo->addItems(backpacks.keys()); // 会触发currentChanged信号
if (backpacks.contains(current_backpack))
bps_combo->setCurrentText(current_backpack);
else
bps_combo->setCurrentText(current_backpack = "");
refreshThings();
/*QString max_name = "";
int max_count = 0;
for (auto i = backpacks.begin(); i != backpacks.end(); i++)
{
if (i.value().size() > max_count)
{
max_count = i.value().size();
max_name = i.key();
}
}
current_backpack = max_name;*/
}
void BackpackWidget::refreshThings()
{
list_widget->clear();
auto things = backpacks.value(current_backpack);
foreach (auto thing, things) {
QString text = thing.name;
if (!thing.value.isEmpty())
text += ":" + thing.value;
new QListWidgetItem(text, list_widget);
}
}
void BackpackWidget::slotComboChanged(const QString &name)
{
if (bps_combo->count() == 0)
return ;
current_backpack = name;
refreshThings();
}
|
9fed6a4923b6d8a47c09d2de585857f0de738d1d | 157c466d9577b48400bd00bf4f3c4d7a48f71e20 | /Source/ProjectR/Table/InAppPurchaseTableInfo.h | c0ad89e93e934c93b25bb6d513c91c1ff962dae9 | [] | no_license | SeungyulOh/OverlordSource | 55015d357297393c7315c798f6813a9daba28b15 | 2e2339183bf847663d8f1722ed0f932fed6c7516 | refs/heads/master | 2020-04-19T16:00:25.346619 | 2019-01-30T06:41:12 | 2019-01-30T06:41:12 | 168,291,223 | 8 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,162 | h | InAppPurchaseTableInfo.h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "Network/PacketDataEnum.h"
#include "SharedConstants/GlobalConstants.h"
#include "InAppPurchaseTableInfo.generated.h"
/**
*
*/
USTRUCT(BlueprintType)
struct PROJECTR_API FInAppPurchaseTableInfo : public FTableRowBase
{
GENERATED_USTRUCT_BODY()
public:
//UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = InAppPurchaseTableInfo)
//FName productId;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = InAppPurchaseTableInfo)
FName MIX_KEY;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = InAppPurchaseTableInfo)
FName System;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = InAppPurchaseTableInfo)
FName RewardKey;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = InAppPurchaseTableInfo)
FName SystemMailId;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = InAppPurchaseTableInfo)
float Price;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = InAppPurchaseTableInfo)
FName Currency;
//UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = InAppPurchaseTableInfo)
//FName title;
};
|
307e1670b774cc7dbe80efb8252e63dcfc3ad4a0 | ff3b513ffe0925bba25cf0af4c62ea846388339b | /VereEngine/GameObjectsProcess.h | 115d557471474219a2b6cd7aaf9ba79d889a8029 | [
"Zlib",
"MIT"
] | permissive | VereWolf/VereEngine | 9b311796fbd2c4919040c8ce93a1272a42713e80 | 6b5453554cef1ef5d5dbf58206806198a3beec35 | refs/heads/master | 2021-07-18T13:32:31.815101 | 2017-12-24T21:15:08 | 2017-12-24T21:15:08 | 94,897,016 | 4 | 1 | null | 2017-11-22T13:09:45 | 2017-06-20T13:55:34 | C++ | UTF-8 | C++ | false | false | 465 | h | GameObjectsProcess.h | #pragma once
#include "pch.h"
class GameObjectsProcess
{
public:
void GiveObject(int id) { m_queue.GiveElement(id); }
int TakeObject();
void NewFrame() { m_curentProcessObjects = 0; }
void SetMaxObjectsInFrame(int n) { m_maxProcessObjects = n; }
int GetMaxObjectsInFrame() { return m_maxProcessObjects; }
int GetSize() { return m_queue.GetSize(); }
private:
VereQueue<int> m_queue;
int m_maxProcessObjects;
int m_curentProcessObjects;
}; |
af2d45ea784f943bb0d96571c30bf758de606960 | 7eeae9fa87b4738896d6da779a5550f85fda1f4c | /List/List.h | d392b9ad2aeb1a9edb503acd9f390bd3e87550c4 | [] | no_license | don2101/data_structure | 997b122bbb4ab4b0b57653bdf9674dce6c365ff4 | ab1bbc71c32a2145923afecf1253807d271e0696 | refs/heads/master | 2020-04-24T02:27:35.772166 | 2019-04-01T10:56:33 | 2019-04-01T10:56:33 | 171,637,256 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,136 | h | List.h | //
// Created by student on 2019-02-20.
//
#ifndef APS_ARRAYLIST_H
#define APS_ARRAYLIST_H
#include <cstdio>
#include "listNode.h"
#include "dListNode.h"
class ArrayList {
private :
int *arrayList;
int size;
int top;
public :
ArrayList(int size = 10);
~ArrayList();
void insert(int number);
void insert(int number, int position);
int deleteItem(int position);
int peek(int position);
void resize(int newSize);
};
class LinkedList {
private:
Node* head;
int size;
public:
LinkedList();
~LinkedList();
void insertFirst(int number);
void insertLast(int number);
void insert(int number);
void insert(int number, int position);
int deleteItem(int position);
int deleteItem();
int peek(int position);
bool isEmpty();
};
class DoublyList {
private:
Dnode* head;
Dnode* tail;
int size;
public:
DoublyList();
~DoublyList();
void insertFront(int number);
void insertBack(int number);
int deleteFront();
int deleteBack();
int peekFront();
int peekBack();
bool isEmpty();
};
#endif //APS_ARRAYLIST_H
|
d8b673cdc6f0d901d8e333e7316742a26ad306c2 | a1f43e71a1c6c8f5978228187bed0f645757fca2 | /include/Defines.h | b8a5a05575cd9a103c8679fa8d0160eea0dc6ab9 | [] | no_license | aglobus/csgo-vtablehook | 4454b3ace3798dba3048f64abbead95412a398bd | ff2be51b8189fda2459677501c20237e261e4cd0 | refs/heads/master | 2021-04-12T10:55:53.299670 | 2018-03-25T21:40:26 | 2018-03-25T21:40:26 | 126,742,648 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 10,135 | h | Defines.h | #pragma once
#include <stdlib.h>
#include <unistd.h>
#include <dlfcn.h>
#include <string.h>
#include <inttypes.h>
#include <pthread.h>
#include <unordered_map>
#include <iostream>
#include "Vector.h"
#define LIBRARY_ADDRESS_BY_HANDLE(dlhandle) ((NULL == dlhandle) ? NULL : (void*)*(size_t const*)(dlhandle))
typedef void * (*CreateInterface)(const char *pInterface, int *pReturnCode);
template <typename F> inline F __attribute__ ((always_inline)) callVirtualFunc(void *pClassBase, int index) {
return (F)((long*)*(long**)pClassBase)[index];
}
enum PlayerBones {
pelvis = 0,
spine_0,
spine_1,
spine_2,
spine_3,
neck_0,
head_0,
clavicle_L,
arm_upper_L,
arm_lower_L,
hand_L
};
struct hitboxset {
int nameindex;
int numhitboxes;
int hitboxindex;
};
template<typename T>
inline T ReadPtr(const void *base, int o)
{
return *(T *)((char *)base + o);
}
template<typename T>
inline T WritePtr(void *base, int o, T v)
{
return *(T *)((char *)base + o) = v;
}
template<typename T>
inline T *MakePtr(void *base, int o)
{
return (T *)((char *)base + o);
}
class matrix3x4_t {
public:
matrix3x4_t() {}
matrix3x4_t(
float m00, float m01, float m02, float m03,
float m10, float m11, float m12, float m13,
float m20, float m21, float m22, float m23 ) {
m_flMatVal[0][0] = m00; m_flMatVal[0][1] = m01; m_flMatVal[0][2] = m02;
m_flMatVal[0][3] = m03;
m_flMatVal[1][0] = m10; m_flMatVal[1][1] = m11; m_flMatVal[1][2]
= m12; m_flMatVal[1][3] = m13;
m_flMatVal[2][0] = m20; m_flMatVal[2][1] = m21;
m_flMatVal[2][2] = m22; m_flMatVal[2][3] = m23;
}
//-----------------------------------------------------------------------------
// Creates a matrix where the X axis = forward // the Y axis = left, and the Z axis = up
//-----------------------------------------------------------------------------
void Init( const Vector& xAxis, const Vector& yAxis, const Vector& zAxis, const Vector &vecOrigin) {
m_flMatVal[0][0] = xAxis.x;
m_flMatVal[0][1] = yAxis.x;
m_flMatVal[0][2] = zAxis.x;
m_flMatVal[0][3] = vecOrigin.x;
m_flMatVal[1][0] = xAxis.y;
m_flMatVal[1][1] = yAxis.y;
m_flMatVal[1][2] = zAxis.y;
m_flMatVal[1][3] = vecOrigin.y;
m_flMatVal[2][0] = xAxis.z;
m_flMatVal[2][1] = yAxis.z;
m_flMatVal[2][2] = zAxis.z;
m_flMatVal[2][3] = vecOrigin.z;
}
//-----------------------------------------------------------------------------
// Creates a matrix where the X axis = forward
// the Y axis = left, and the Z axis = up
//-----------------------------------------------------------------------------
matrix3x4_t( const Vector& xAxis, const Vector& yAxis, const Vector& zAxis, const Vector &vecOrigin)
{
Init( xAxis, yAxis, zAxis, vecOrigin);
}
inline void SetOrigin( Vector const & p) {
m_flMatVal[0][3] = p.x;
m_flMatVal[1][3] = p.y;
m_flMatVal[2][3] = p.z;
}
inline void Invalidate( void) {
for( int i = 0; i < 3; i++) {
for( int j = 0; j < 4; j++) {
m_flMatVal[i][j] = std::numeric_limits<float>::infinity();;
}
}
}
float *operator[]( int i) {
return m_flMatVal[i];
}
const float *operator[]( int i) const {
return m_flMatVal[i];
}
float *Base() {
return &m_flMatVal[0][0];
}
const float *Base() const {
return &m_flMatVal[0][0];
}
float m_flMatVal[3][4];
};
typedef Vector QAngle;
class VMatrix {
public:
VMatrix();
VMatrix(
vec_t m00, vec_t m01, vec_t m02, vec_t m03,
vec_t m10, vec_t m11, vec_t m12, vec_t m13,
vec_t m20, vec_t m21, vec_t m22, vec_t m23,
vec_t m30, vec_t m31, vec_t m32, vec_t m33
);
// Creates a matrix where the X axis = forward
// the Y axis = left, and the Z axis = up
VMatrix( const Vector& forward, const Vector& left, const Vector& up );
// Construct from a 3x4 matrix
VMatrix( const matrix3x4_t& matrix3x4 );
// Set the values in the matrix.
void Init(
vec_t m00, vec_t m01, vec_t m02, vec_t m03,
vec_t m10, vec_t m11, vec_t m12, vec_t m13,
vec_t m20, vec_t m21, vec_t m22, vec_t m23,
vec_t m30, vec_t m31, vec_t m32, vec_t m33
);
// Initialize from a 3x4
void Init( const matrix3x4_t& matrix3x4 );
// array access
inline float* operator[]( int i ) {
return m[i];
}
inline const float* operator[]( int i ) const {
return m[i];
}
// Get a pointer to m[0][0]
inline float *Base() {
return &m[0][0];
}
inline const float *Base() const {
return &m[0][0];
}
void SetLeft( const Vector &vLeft );
void SetUp( const Vector &vUp );
void SetForward( const Vector &vForward );
void GetBasisVectors( Vector &vForward, Vector &vLeft, Vector &vUp ) const;
void SetBasisVectors( const Vector &vForward, const Vector &vLeft, const Vector &vUp );
// Get/set the translation.
Vector & GetTranslation( Vector &vTrans ) const;
void SetTranslation( const Vector &vTrans );
void PreTranslate( const Vector &vTrans );
void PostTranslate( const Vector &vTrans );
matrix3x4_t& As3x4();
const matrix3x4_t& As3x4() const;
void CopyFrom3x4( const matrix3x4_t &m3x4 );
void Set3x4( matrix3x4_t& matrix3x4 ) const;
bool operator==(const VMatrix& src) const;
bool operator!=(const VMatrix& src) const { return !(*this == src); }
// Access the basis vectors.
Vector GetLeft() const;
Vector GetUp() const;
Vector GetForward() const;
Vector GetTranslation() const;
// Matrix->vector operations.
public:
// Multiply by a 3D vector (same as operator*).
void V3Mul( const Vector &vIn, Vector &vOut ) const;
// Multiply by a 4D vector.
//void V4Mul( const Vector4D &vIn, Vector4D &vOut ) const;
// Applies the rotation (ignores translation in the matrix). (This just calls VMul3x3).
Vector ApplyRotation( const Vector &vVec ) const;
// Multiply by a vector (divides by w, assumes input w is 1).
Vector operator*(const Vector &vVec) const;
// Multiply by the upper 3x3 part of the matrix (ie: only apply rotation).
Vector VMul3x3( const Vector &vVec ) const;
// Apply the inverse (transposed) rotation (only works on pure rotation matrix)
Vector VMul3x3Transpose( const Vector &vVec ) const;
// Multiply by the upper 3 rows.
Vector VMul4x3( const Vector &vVec ) const;
// Apply the inverse (transposed) transformation (only works on pure rotation/translation)
Vector VMul4x3Transpose( const Vector &vVec ) const;
// Matrix->plane operations.
//public:
// Transform the plane. The matrix can only contain translation and rotation.
//void TransformPlane( const VPlane &inPlane, VPlane &outPlane ) const;
// Just calls TransformPlane and returns the result.
//VPlane operator*(const VPlane &thePlane) const;
// Matrix->matrix operations.
public:
VMatrix& operator=(const VMatrix &mOther);
// Multiply two matrices (out = this * vm).
void MatrixMul( const VMatrix &vm, VMatrix &out ) const;
// Add two matrices.
const VMatrix& operator+=(const VMatrix &other);
// Just calls MatrixMul and returns the result.
VMatrix operator*(const VMatrix &mOther) const;
// Add/Subtract two matrices.
VMatrix operator+(const VMatrix &other) const;
VMatrix operator-(const VMatrix &other) const;
// Negation.
VMatrix operator-() const;
// Return inverse matrix. Be careful because the results are undefined
// if the matrix doesn't have an inverse (ie: InverseGeneral returns false).
VMatrix operator~() const;
// Matrix operations.
public:
// Set to identity.
void Identity();
bool IsIdentity() const;
// Setup a matrix for origin and angles.
void SetupMatrixOrgAngles( const Vector &origin, const QAngle &vAngles );
// General inverse. This may fail so check the return!
bool InverseGeneral( VMatrix &vInverse ) const;
// Does a fast inverse, assuming the matrix only contains translation and rotation.
void InverseTR( VMatrix &mRet ) const;
// Usually used for debug checks. Returns true if the upper 3x3 contains
// unit vectors and they are all orthogonal.
bool IsRotationMatrix() const;
// This calls the other InverseTR and returns the result.
VMatrix InverseTR() const;
// Get the scale of the matrix's basis vectors.
Vector GetScale() const;
// (Fast) multiply by a scaling matrix setup from vScale.
VMatrix Scale( const Vector &vScale );
// Normalize the basis vectors.
VMatrix NormalizeBasisVectors() const;
// Transpose.
VMatrix Transpose() const;
// Transpose upper-left 3x3.
VMatrix Transpose3x3() const;
public:
// The matrix.
vec_t m[4][4];
};
/*
class CUserCmd
{
public:
virtual ~CUserCmd() { };
int command_number; // 0x04 For matching server and client commands for debugging
int tick_count; // 0x08 the tick the client created this command
Vector viewangles; // 0x0C Player instantaneous view angles.
Vector aimdirection; // 0x18
float forwardmove; // 0x24
float sidemove; // 0x28
float upmove; // 0x2C
int buttons; // 0x30 Attack button states
char impulse; // 0x34
int weaponselect; // 0x38 Current weapon id
int weaponsubtype; // 0x3C
int random_seed; // 0x40 For shared random functions
short mousedx; // 0x44 mouse accum in x from create move
short mousedy; // 0x46 mouse accum in y from create move
bool hasbeenpredicted; // 0x48 Client only, tracks whether we've predicted this command at least once
char pad_0x4C[0x18]; // 0x4C Current sizeof( usercmd ) = 100 = 0x64
};
*/
class CUserCmd
{
public:
virtual ~CUserCmd(){}; //Destructor
int command_number; //4
int tick_count; //8
Vector viewangles; //C
float forwardmove; //18
float sidemove; //1C
float upmove; //20
int buttons; //24
uint8_t impulse; //28
int weaponselect; //2C
int weaponsubtype; //30
int random_seed; //34
short mousedx; //38
short mousedy; //3A
bool hasbeenpredicted; //3C;
};
|
b219fc7510557ade0be203a7480c7d3973637886 | 483255eebf46a12460a9349fdfb78a5e7d1c1048 | /developers/SobolevEvolutionProblem/mastersolution/sobolevevolutionproblem.h | fa26c225832ff846fd33be3680355d02245826be | [
"MIT"
] | permissive | erickschulz/NPDECODES | 5460331cb4c608ff922658c9beb1e31b4b6c9b2e | 47b4fe6d60640a10bfe0ed085d67a3ccdadac831 | refs/heads/master | 2023-05-03T09:46:22.047387 | 2023-05-01T07:27:10 | 2023-05-01T07:27:10 | 184,058,364 | 32 | 64 | MIT | 2023-04-28T14:58:23 | 2019-04-29T11:28:34 | C++ | UTF-8 | C++ | false | false | 7,722 | h | sobolevevolutionproblem.h | /**
* @ file
* @ brief NPDE homework about Sobolev evolution problems
* @ author Ralf Hiptmair
* @ date July 2021
* @ copyright Developed at SAM, ETH Zurich
*/
#include <lf/assemble/assemble.h>
#include <lf/base/base.h>
#include <lf/fe/fe.h>
#include <lf/geometry/geometry.h>
#include <lf/mesh/mesh.h>
#include <lf/uscalfe/uscalfe.h>
#include <Eigen/Core>
#include <Eigen/Sparse>
#include <iostream>
namespace SobolevEVP {
/**
* @brief This function enforces Dirichlet zero boundary conditions on the
* Galerkin stiffness and mass matrices
*
* This function first annihilates all selected rows and columns of a matrix in
* triplet format. Then the corresponding diagonal entries are set to 1, thus
* preserving the invertibilty of the matrix
*
* @param selectvals The predicate identifying selecting the rows and columns to
* be set to zero
* @param A matrix in LehrFEM++ internal triplet format. Will be modified!
*/
template <typename SCALAR, typename SELECTOR>
void dropMatrixRowsColumns(SELECTOR &&selectvals,
lf::assemble::COOMatrix<SCALAR> &A) {
const lf::assemble::size_type N(A.cols());
LF_ASSERT_MSG(A.rows() == N, "Matrix must be square!");
// Set the selected rows and columns to zero
A.setZero(
[&selectvals](lf::assemble::gdof_idx_t i, lf::assemble::gdof_idx_t j) {
return (selectvals(i) || selectvals(j));
});
// Set the diagonal entries of zeroed out rows and columns to 1
for (lf::assemble::gdof_idx_t dofnum = 0; dofnum < N; ++dofnum) {
const auto selval{selectvals(dofnum)};
if (selval) {
A.AddToEntry(dofnum, dofnum, 1.0);
}
}
}
/**
* @brief Assemble Galerkin matrix for scalar linear pure diffusion problem,
* piecewise linear finite-element space, and homogeneous Dirichlet boundary
* conditions.
*
* @tparam MESHFUNCTION a LehrFEM++ MeshFunction compatible type.
* @param fe_space_p A description of the used Lagrangian finite element space
* @param mf_coeff A MeshFunction object providing the diffusion coefficient.
*/
template <typename SCALAR, typename MESHFUNCTION>
Eigen::SparseMatrix<SCALAR> getFEMatrixDirichlet(
std::shared_ptr<const lf::fe::ScalarFESpace<SCALAR>> fe_space_p,
const MESHFUNCTION &mf_coeff) {
// Step I: Building of full Galerkin matrix
// Obtain local-to-global index mapper
const lf::assemble::DofHandler &dofh{fe_space_p->LocGlobMap()};
// Provider object for element matrices
lf::fe::DiffusionElementMatrixProvider<double, MESHFUNCTION> elmat_builder(
fe_space_p, mf_coeff);
// Object for sparse matrix to be filled by cell-oriented assembly
const int N_dofs = dofh.NumDofs();
lf::assemble::COOMatrix<double> A(N_dofs, N_dofs);
// Invoke cell-oriented assembly of the finite-element Galerkin matrix
lf::assemble::AssembleMatrixLocally(0, dofh, dofh, elmat_builder, A);
// Step II: Take into account Dirichlet boundary conditions
// The underlying finite-element mesh
std::shared_ptr<const lf::mesh::Mesh> mesh_p{fe_space_p->Mesh()};
// Obtain predicate selecting edges on the boundary
lf::mesh::utils::CodimMeshDataSet<bool> bd_ed_flags{
lf::mesh::utils::flagEntitiesOnBoundary(mesh_p, 1)};
// Boundary flags for actual degrees of freedom
std::vector<bool> bd_dof_flags(N_dofs, false);
// Visit all edges of the mesh, retrieve associated dofs and mark them as
// lying on the boundary
using gdof_idx_t = lf::assemble::gdof_idx_t;
for (const lf::mesh::Entity *edge : mesh_p->Entities(1)) {
if (bd_ed_flags(*edge)) {
// Fetch all dof indices associated with the current edge
nonstd::span<const gdof_idx_t> ed_dof_idx{dofh.GlobalDofIndices(*edge)};
for (const gdof_idx_t dof_idx : ed_dof_idx) {
LF_ASSERT_MSG(dof_idx < dofh.NumDofs(),
"Dof idx exceeds vector length!");
bd_dof_flags[dof_idx] = true;
}
}
}
// Finally set to zero all non-diagonal entries associated with dofs on the
// boundary
dropMatrixRowsColumns(
[&bd_dof_flags](gdof_idx_t idx) -> bool { return bd_dof_flags[idx]; }, A);
// Assembly completed: Convert COO matrix A into CRS format using Eigen's
// internal conversion routines.
Eigen::SparseMatrix<double> A_crs = A.makeSparse();
return A_crs;
}
/**
* @brief Explicit RK-SSM for MOL for Sobolev evolution problem
*
* @tparam MESHFUNCTION_BETA mesh function type for passing coefficient beta
* @tparam MESHFUNCTION_ALPHA mesh function type for passing coefficient alpha
* @param fe_space_p pointer to underlying Lagrangian finite element space
* @param beta coefficient beta wrapper into a MeshFunction object
* @param alpha coefficient beta wrapper into a MeshFunction object
* @param mu0 coefficient vector for initial data
* @param T final time
* @param A Butcher matrix for explicit RK-SSM, only strict lower triangle is
* used.
* @param b weight vector for RK-SSM
* @M number of timesteps
*/
/* SAM_LISTING_BEGIN_7 */
template <typename MESHFUNCTION_BETA, typename MESHFUNCTION_ALPHA>
Eigen::VectorXd solveRKSobEvl(
std::shared_ptr<const lf::fe::ScalarFESpace<double>> fe_space_p,
const MESHFUNCTION_BETA &beta, const MESHFUNCTION_ALPHA &alpha,
const Eigen::VectorXd &mu0, double T, const Eigen::MatrixXd &RK_Mat,
const Eigen::VectorXd &b, unsigned int M) {
LF_ASSERT_MSG(mu0.size() == (fe_space_p->LocGlobMap()).NumDofs(),
"Wrong length of coefficient vector");
// Build Galerkin matrices taking into account homogeneous Dirichlet boundary
// conditions
Eigen::SparseMatrix<double> B =
getFEMatrixDirichlet<double, MESHFUNCTION_BETA>(fe_space_p, beta);
Eigen::SparseMatrix<double> A =
getFEMatrixDirichlet<double, MESHFUNCTION_ALPHA>(fe_space_p, alpha);
Eigen::VectorXd muj(mu0); // current state vector
#if SOLUTION
// LU-decompose B outside timestepping loop, which is important for efficient
// implementation
Eigen::SparseLU<Eigen::SparseMatrix<double>> solver;
solver.compute(B);
LF_VERIFY_MSG(solver.info() == Eigen::Success, "LU decomposition failed");
int s = RK_Mat.cols(); // Number of stages
LF_ASSERT_MSG(s == RK_Mat.rows(), "Butcher matrix must be square!");
LF_ASSERT_MSG(s == b.size(), "s weights required!");
// timestep size
double tau = T / M;
// Main timestepping loop
Eigen::VectorXd mu_next(mu0.size()); // next state vector
Eigen::VectorXd tmp(mu0.size()); // Summation vector
std::vector<Eigen::VectorXd> incs(s, mu_next); // RK increments
// The r.h.s. vector field for MOL ODE in standard form
// Invoking solver.solve() amounts to the application of the
// inverse of the matrix B.
auto Vf = [&solver, &A](const Eigen::VectorXd &y) -> Eigen::VectorXd {
const Eigen::VectorXd fy = -solver.solve(A * y);
LF_VERIFY_MSG(solver.info() == Eigen::Success, "Solving LSE failed");
return fy;
};
for (int k = 0; k < M; ++k) {
// First increment vector
incs[0] = Vf(muj);
// Compute increments successively, which is possible for an explicit RK-SSM
// Simultaneous assemble next state vector
mu_next = muj + (tau * b[0]) * incs[0];
for (int i = 1; i < s; ++i) {
// Weighted sum of already computed increments
tmp.setZero();
for (int j = 0; j < i; ++j) {
tmp += RK_Mat(i, j) * incs[j];
}
incs[i] = Vf(muj + tau * tmp);
// Update state by weighed sum of increments
mu_next += (tau * b[i]) * incs[i];
}
// Efficient way to set current state to new state
std::swap(muj, mu_next);
}
#else
//====================
// Your code goes here
//====================
#endif
return muj;
}
/* SAM_LISTING_END_7 */
} // namespace SobolevEVP
|
118fab17611d917a38f964b01060b4aae9ab9323 | 1833a52e816f9354b519cc0509ac2dcb71a76248 | /installer.cpp | d804e4b2b1534a5ec49380bab1e2d821c1091153 | [] | no_license | Blue-Shark9/smarttech | a784b0f060c17c9434804b7698eef6d0c3b7518c | ca00915b5a04eed0a5bec33fe68357187abda489 | refs/heads/master | 2020-05-05T05:57:35.216407 | 2019-04-06T00:12:00 | 2019-04-06T00:12:00 | 179,770,392 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 941 | cpp | installer.cpp | #include "installer.h"
#include "ui_installer.h"
#include "options.h"
#include <QScreen>
#include <QMessageBox>
Installer::Installer(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::Installer)
{
ui->setupUi(this);
}
Installer::~Installer()
{
delete ui;
}
void Installer::on_btnInstall_clicked()
{
install();
}
void Installer::on_btnOption_clicked()
{
/* close current installer window */
this->close();
/* show the option window */
Options* optionWnd = new Options();
optionWnd->setWindowFlags(Qt::Window | Qt::FramelessWindowHint);
optionWnd->move(optionWnd->pos() + (QGuiApplication::primaryScreen()->geometry().center() - optionWnd->geometry().center()));
optionWnd->show();
}
void Installer::on_btnClose_clicked()
{
QApplication::quit();
}
void Installer::install()
{
QMessageBox msgbox;
msgbox.setText("Installation done.");
msgbox.exec();
this->close();
}
|
3c5425d14b46603d2c5a996707ba694814046e83 | 1c46dc08cf3d96e02bee0b0a41b4492aacebaf43 | /draw_map.cpp | 6cc50101a829d70ec1adc23528d0e57421df44de | [] | no_license | BurhanMuhyiddin/RRT_RRT_STAR_ALGORITHM_V2 | 53114e0fa6fbdcf5144ebacaf0710c66d12dd343 | 82a6d5036a24740ab93a23fafbeb3364e72a8f7d | refs/heads/master | 2022-11-06T05:29:51.139918 | 2020-06-17T07:11:16 | 2020-06-17T07:11:16 | 271,303,947 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,998 | cpp | draw_map.cpp | #include <iostream>
#include <vector>
#include <gl/glut.h>
#include <gl/GLU.h>
#include <gl/GL.h>
#include <string.h>
#include "draw_map.h"
#include "window_parameters.h"
#include "auxiliary_functions.h"
using namespace std;
extern bool isDrawMap;
extern vector < vector<int> > nodes;
unsigned int map[Y_MAX][X_MAX] = { 0 };
extern int parent[Y_MAX][X_MAX];
extern int theLastPointX;
extern int theLastPointY;
void visualizeNodes()
{
glPointSize(3);
glColor3f(0.5, 0.75, 0.12);
for (int i = 0; i < nodes.size(); i++)
{
glBegin(GL_POINTS);
glVertex2f(nodes[i][0], nodes[i][1]);
glEnd();
}
}
void visualizeConnectionsBetweenNodes()
{
for (int i = 0; i < X_MAX; i++)
{
for (int j = 0; j < Y_MAX; j++)
{
if (parent[j][i] != INF)
{
int pX = d1IndexToD2Index(parent[j][i])[0]; int pY = d1IndexToD2Index(parent[j][i])[1];
int cX = i; int cY = j;
drawLine(pX, pY, cX, cY, 0.5, 0.5, 0.5, 0.5);
}
}
}
}
void visualizeFinalPath()
{
int tempX = 0, tempY = 0;
int tempIndex = parent[theLastPointY][theLastPointX];
int* tmp = d1IndexToD2Index(tempIndex);
tempX = tmp[0]; tempY = tmp[1];
drawLine(theLastPointX, theLastPointY, tempX, tempY, 0.5, 0.0, 0.8, 1.5);
while (tempIndex != INF)
{
tempIndex = parent[tempY][tempX];
if (tempIndex == INF) break;
int temp1X = tempX, temp1Y = tempY;
tmp = d1IndexToD2Index(tempIndex);
tempX = tmp[0]; tempY = tmp[1];
drawLine(temp1X, temp1Y, tempX, tempY, 0.5, 0.0, 0.8, 1.5);
}
}
void drawLine(int x1, int y1, int x2, int y2, float r, float g, float b, float lineThickness)
{
glColor3f(r, g, b);
glLineWidth(lineThickness);
glBegin(GL_LINES);
glVertex2i(x1, y1);
glVertex2i(x2, y2);
glEnd();
}
void loadMapNone()
{
emptyMap();
// TOP
for (int i = 0; i < X_MAX; i++)
{
map[0][i] = 1;
}
// BOTTOM
for (int i = 0; i < X_MAX; i++)
{
map[Y_MAX - 1][i] = 1;
}
// LEFT
for (int i = 0; i < Y_MAX; i++)
{
map[i][0] = 1;
}
// RIGHT
for (int i = 0; i < Y_MAX; i++)
{
map[i][X_MAX - 1] = 1;
}
isDrawMap = true;
}
void loadMapSparse()
{
emptyMap();
loadMapNone();
int temp = (X_MAX - 2*BARRIER_THICKNESS - 3*MARGIN) / 2;
// Left Top Square
for (int i = BARRIER_THICKNESS+MARGIN; i < BARRIER_THICKNESS + MARGIN + temp; i++)
{
for (int j = BARRIER_THICKNESS + MARGIN; j < BARRIER_THICKNESS + MARGIN + temp; j++)
{
map[j][i] = 1;
}
}
// Left Bottom Square
for (int i = BARRIER_THICKNESS + MARGIN; i < BARRIER_THICKNESS + MARGIN + temp; i++)
{
for (int j = BARRIER_THICKNESS + 2*MARGIN + temp; j < Y_MAX - BARRIER_THICKNESS - MARGIN; j++)
{
map[j][i] = 1;
}
}
// Right Top Square
for (int i = BARRIER_THICKNESS + 2*MARGIN +temp; i < X_MAX - BARRIER_THICKNESS - MARGIN; i++)
{
for (int j = BARRIER_THICKNESS + MARGIN; j < BARRIER_THICKNESS + MARGIN + temp; j++)
{
map[j][i] = 1;
}
}
// Right Bottom Square
for (int i = BARRIER_THICKNESS + 2*MARGIN +temp; i < X_MAX - BARRIER_THICKNESS - MARGIN; i++)
{
for (int j = BARRIER_THICKNESS + 2 * MARGIN + temp; j < Y_MAX - BARRIER_THICKNESS - MARGIN; j++)
{
map[j][i] = 1;
}
}
isDrawMap = true;
}
void loadNarrowPassage()
{
emptyMap();
loadMapNone();
// First column of passage
for (int i = BARRIER_THICKNESS-1; i < BARRIER_THICKNESS + 37; i++)
{
map[i][BARRIER_THICKNESS + PASSAGE_MARGIN] = 1;
}
for (int i = BARRIER_THICKNESS+37+NARROW_GATE; i <= Y_MAX - BARRIER_THICKNESS; i++)
{
map[i][BARRIER_THICKNESS + PASSAGE_MARGIN] = 1;
}
//Second column of passage
for (int i = BARRIER_THICKNESS - 1; i < BARRIER_THICKNESS + 15; i++)
{
map[i][X_MAX - BARRIER_THICKNESS - PASSAGE_MARGIN] = 1;
}
for (int i = BARRIER_THICKNESS + 15 + LARGE_GATE; i <= Y_MAX - BARRIER_THICKNESS; i++)
{
map[i][X_MAX - BARRIER_THICKNESS - PASSAGE_MARGIN] = 1;
}
isDrawMap = true;
}
void loadConcave()
{
emptyMap();
loadMapNone();
for (int i = BARRIER_THICKNESS + CONCAVE_MARGIN; i < X_MAX - BARRIER_THICKNESS - CONCAVE_MARGIN; i++)
{
map[BARRIER_THICKNESS + CONCAVE_MARGIN][i] = 1;
}
for (int i = BARRIER_THICKNESS + CONCAVE_MARGIN; i < X_MAX - BARRIER_THICKNESS - CONCAVE_MARGIN; i++)
{
map[BARRIER_THICKNESS + CONCAVE_MARGIN + 12][i] = 1;
}
for (int i = BARRIER_THICKNESS + CONCAVE_MARGIN; i < Y_MAX -1 - 2*BARRIER_THICKNESS - CONCAVE_MARGIN; i++)
{
map[i][X_MAX - BARRIER_THICKNESS - CONCAVE_MARGIN] = 1;
}
isDrawMap = true;
}
void emptyMap()
{
for (int i = 0; i < X_MAX; i++)
{
for (int j = 0; j < Y_MAX; j++)
map[j][i] = 0;
}
}
void drawMap()
{
for (int i = 0; i < Y_MAX; i++)
{
for (int j = 0; j < X_MAX; j++)
{
if (map[i][j] == 1)
{
glColor3f(1.0, 0.0, 0.0);
glRectd(j, i, j + 1, i + 1);
}
else if (map[i][j] == 5)
{
glColor3f(1.0, 1.0, 0.0);
glRectd(j, i, j + 1, i + 1);
}
else if (map[i][j] == 6)
{
glColor3f(0.0, 1.0, 0.0);
glRectd(j, i, j + 1, i + 1);
}
else if (map[i][j] == 7)
{
glColor3f(0.0, 0.9, 0.3);
glRectd(j, i, j + 1, i + 1);
}
}
}
}
|
1e7de09fa8b268d0517623886c77b53c1d3eb4e6 | 63a3882b75dd3d41b744d88b531a73b29c4349a6 | /doc/demos/YourEngine/src/main.cpp | 1a7f09782bbe7c8b129d40e51724c661cd2eb39c | [
"MIT"
] | permissive | fredericjoanis/Argorha-Pathfinding | e3b735b5fc5338cf5110badf2cee88bc055fecf9 | c4f9e6e19ceb9a18417893935838070e436d66c7 | refs/heads/master | 2020-05-19T07:43:26.012937 | 2014-11-08T13:19:16 | 2014-11-08T13:19:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,659 | cpp | main.cpp | #include "YourEnginePrePathfindingPhysic.h"
#include "YourEnginePathData.h"
#include "Pre/PathfindingPreCompute.h"
#include "PathfindingAStar.h"
#include "Path/PathfindingPathCardinalSpline.h"
int main()
{
// The zone where the pathfinding will be calculated
Pathfinding::Math::AxisAlignedBox zone( -1000, -100, -1200, 1300, 500, 1000 );
Pathfinding::Pre::Compute compute;
YourEnginePath::PrePathfindingPhysic phys;
YourEnginePath::PathData* pathData = new YourEnginePath::PathData();
Pathfinding::Actor* pathActor = new Pathfinding::Actor(pathData, Pathfinding::Math::AxisAlignedBox( 0.f, 0.f, 0.f, 30.f, 50.f, 30.f));
// Calculate all sectors and portals.
compute.generateSectorsAndPortals(&phys, pathActor, &zone, 0 );
// Then you can search a path. In this demo, it's empty, so the A* will return nada.
Pathfinding::Math::Vector3 m_startPos( 0.f, 0.f, 0.f);
Pathfinding::Math::Vector3 m_endPos( 10.f, 0.f, 10.f);
Pathfinding::AStar AStar;
std::vector<Pathfinding::Math::Vector3> pathPoints;
std::vector<Pathfinding::AStarNode> AStarNodes;
AStarNodes = AStar.getPath(m_startPos, m_endPos, pathActor->getData(), 0 );
// Make a cardinal spline out of the points returned by the A*
Pathfinding::Path::InterpolatePathData interpolateData;
interpolateData.waypoints = &AStarNodes;
interpolateData.nbPoints = 15;
interpolateData.data = pathActor->getData();
interpolateData.hLevel = 0;
Pathfinding::Path::CardinalSpline cardinalPath;
pathPoints = cardinalPath.interpolateFromWaypoints( &interpolateData );
delete pathData;
delete pathActor;
} |
ad5621a3f06191c5298f444abe5f084f1c3dcefc | 9b2fa8edf2dc5a7e5cf74e4865619d086f6699ad | /WitFX.MT4.Wrapper/Stdafx.h | 6ccbb8d8a0f022751741e45cd6235632c2e7900e | [] | no_license | rebider/ArenaFManagerAPI | 4e8a9abe8148ba401ca26ac6e89be86b65057cd3 | f62e602c159313c39885c64d288d8c3c5b8219f6 | refs/heads/master | 2020-06-19T23:30:32.641140 | 2018-12-11T23:46:37 | 2018-12-11T23:46:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 692 | h | Stdafx.h | // stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently,
// but are changed infrequently
#pragma once
#define WINVER 0x0501
#define _WIN32_IE 0x0600
#include <Windows.h>
#pragma comment(lib,"ws2_32.lib")
#include "MT4ManagerAPI.h"
#include <msclr\marshal.h>
#include <msclr\marshal_windows.h>
#include <msclr\marshal_cppstd.h>
using namespace msclr::interop;
using namespace System;
using namespace System::Collections::Generic;
using namespace System::Runtime::InteropServices;
using namespace System::Threading;
#define MANAGED WitFX::MT4::
#define NATIVE ::
#define ExceptionHandler Action<Exception^>^
|
37e7f26c330d5e739e8c08ee4b8ecc6b266e51c2 | 5713b91dc763d497d2139e7467a9711df17dd98b | /source/vulkan/vulkan_impl_command_list_immediate.cpp | 8ec859b81b227dd3f5cc412ab1c8619c774031ce | [
"BSD-3-Clause",
"MIT"
] | permissive | crosire/reshade | f627a3323debef97ecd02b5d0eeec2a0e0dc32b9 | 9782cea39bcd0d8ae37a38798737f235ce680a5b | refs/heads/main | 2023-09-01T06:50:48.074855 | 2023-08-20T13:09:53 | 2023-08-20T13:09:53 | 61,246,596 | 3,611 | 694 | BSD-3-Clause | 2023-09-14T19:11:04 | 2016-06-15T23:02:16 | C++ | UTF-8 | C++ | false | false | 6,713 | cpp | vulkan_impl_command_list_immediate.cpp | /*
* Copyright (C) 2021 Patrick Mours
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "dll_log.hpp"
#include "vulkan_impl_device.hpp"
#include "vulkan_impl_command_list_immediate.hpp"
#define vk _device_impl->_dispatch_table
reshade::vulkan::command_list_immediate_impl::command_list_immediate_impl(device_impl *device, uint32_t queue_family_index, VkQueue queue) :
command_list_impl(device, VK_NULL_HANDLE),
_parent_queue(queue)
{
{ VkCommandPoolCreateInfo create_info { VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO };
create_info.flags = VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT;
create_info.queueFamilyIndex = queue_family_index;
if (vk.CreateCommandPool(_device_impl->_orig, &create_info, nullptr, &_cmd_pool) != VK_SUCCESS)
return;
}
{ VkCommandBufferAllocateInfo alloc_info { VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO };
alloc_info.commandPool = _cmd_pool;
alloc_info.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY;
alloc_info.commandBufferCount = NUM_COMMAND_FRAMES;
if (vk.AllocateCommandBuffers(_device_impl->_orig, &alloc_info, _cmd_buffers) != VK_SUCCESS)
return;
}
for (uint32_t i = 0; i < NUM_COMMAND_FRAMES; ++i)
{
// The validation layers expect the loader to have set the dispatch pointer, but this does not happen when calling down the layer chain from here, so fix it
*reinterpret_cast<void **>(_cmd_buffers[i]) = *reinterpret_cast<void **>(device->_orig);
if (vk.SetDebugUtilsObjectNameEXT != nullptr)
{
std::string debug_name = "ReShade immediate command list";
debug_name += " (" + std::to_string(i) + ')';
VkDebugUtilsObjectNameInfoEXT name_info { VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT };
name_info.objectType = VK_OBJECT_TYPE_COMMAND_BUFFER;
name_info.objectHandle = (uint64_t)_cmd_buffers[i];
name_info.pObjectName = debug_name.c_str();
vk.SetDebugUtilsObjectNameEXT(_device_impl->_orig, &name_info);
}
VkFenceCreateInfo create_info { VK_STRUCTURE_TYPE_FENCE_CREATE_INFO };
create_info.flags = VK_FENCE_CREATE_SIGNALED_BIT; // Create signaled so waiting on it when no commands where submitted succeeds
if (vk.CreateFence(_device_impl->_orig, &create_info, nullptr, &_cmd_fences[i]) != VK_SUCCESS)
return;
VkSemaphoreCreateInfo sem_create_info { VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO };
if (vk.CreateSemaphore(_device_impl->_orig, &sem_create_info, nullptr, &_cmd_semaphores[i]) != VK_SUCCESS)
return;
}
// Command buffer is in an invalid state after creation, so reset it to begin
VkCommandBufferBeginInfo begin_info { VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO };
begin_info.flags = VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT;
if (vk.BeginCommandBuffer(_cmd_buffers[_cmd_index], &begin_info) != VK_SUCCESS)
return;
// Command buffer is now in the recording state
_orig = _cmd_buffers[_cmd_index];
}
reshade::vulkan::command_list_immediate_impl::~command_list_immediate_impl()
{
for (VkFence fence : _cmd_fences)
vk.DestroyFence(_device_impl->_orig, fence, nullptr);
for (VkSemaphore semaphore : _cmd_semaphores)
vk.DestroySemaphore(_device_impl->_orig, semaphore, nullptr);
vk.FreeCommandBuffers(_device_impl->_orig, _cmd_pool, NUM_COMMAND_FRAMES, _cmd_buffers);
vk.DestroyCommandPool(_device_impl->_orig, _cmd_pool, nullptr);
// Signal to 'command_list_impl' destructor that this is an immediate command list
_orig = VK_NULL_HANDLE;
}
bool reshade::vulkan::command_list_immediate_impl::flush(VkSemaphore *wait_semaphores, uint32_t &num_wait_semaphores)
{
if (!_has_commands)
return true;
_has_commands = false;
assert(_orig != VK_NULL_HANDLE);
VkCommandBufferBeginInfo begin_info { VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO };
begin_info.flags = VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT;
// Submit all asynchronous commands in one batch to the current queue
if (vk.EndCommandBuffer(_orig) != VK_SUCCESS)
{
LOG(ERROR) << "Failed to close immediate command list!";
// Have to reset the command buffer when closing it was unsuccessfull
vk.BeginCommandBuffer(_orig, &begin_info);
return false;
}
VkSubmitInfo submit_info { VK_STRUCTURE_TYPE_SUBMIT_INFO };
submit_info.commandBufferCount = 1;
submit_info.pCommandBuffers = &_orig;
temp_mem<VkPipelineStageFlags> wait_stages(num_wait_semaphores);
std::fill_n(wait_stages.p, num_wait_semaphores, VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT);
if (num_wait_semaphores != 0)
{
submit_info.waitSemaphoreCount = num_wait_semaphores;
submit_info.pWaitSemaphores = wait_semaphores;
submit_info.pWaitDstStageMask = wait_stages.p;
submit_info.signalSemaphoreCount = 1;
submit_info.pSignalSemaphores = &_cmd_semaphores[_cmd_index];
}
// Only reset fence before an actual submit which can signal it again
vk.ResetFences(_device_impl->_orig, 1, &_cmd_fences[_cmd_index]);
if (vk.QueueSubmit(_parent_queue, 1, &submit_info, _cmd_fences[_cmd_index]) != VK_SUCCESS)
{
LOG(ERROR) << "Failed to submit immediate command list!";
// Have to reset the command buffer when submitting it was unsuccessfull
vk.BeginCommandBuffer(_orig, &begin_info);
return false;
}
// Only signal and wait on a semaphore if the submit this flush is executed in originally did
if (num_wait_semaphores != 0)
{
// This queue submit now waits on the requested wait semaphores
// The next queue submit should therefore wait on the semaphore that was signaled by this submit
wait_semaphores[0] = _cmd_semaphores[_cmd_index];
num_wait_semaphores = 1;
}
// Continue with next command buffer now that the current one was submitted
_cmd_index = (_cmd_index + 1) % NUM_COMMAND_FRAMES;
// Make sure the next command buffer has finished executing before reusing it this frame
if (vk.GetFenceStatus(_device_impl->_orig, _cmd_fences[_cmd_index]) == VK_NOT_READY)
{
vk.WaitForFences(_device_impl->_orig, 1, &_cmd_fences[_cmd_index], VK_TRUE, UINT64_MAX);
}
// Command buffer is now ready for a reset
if (vk.BeginCommandBuffer(_cmd_buffers[_cmd_index], &begin_info) != VK_SUCCESS)
return false;
// Command buffer is now in the recording state
_orig = _cmd_buffers[_cmd_index];
return true;
}
bool reshade::vulkan::command_list_immediate_impl::flush_and_wait()
{
if (!_has_commands)
return true;
// Index is updated during flush below, so keep track of the current one to wait on
const uint32_t cmd_index_to_wait_on = _cmd_index;
uint32_t num_wait_semaphores = 0; // No semaphores to wait on
if (!flush(nullptr, num_wait_semaphores))
return false;
// Wait for the submitted work to finish and reset fence again for next use
return vk.WaitForFences(_device_impl->_orig, 1, &_cmd_fences[cmd_index_to_wait_on], VK_TRUE, UINT64_MAX) == VK_SUCCESS;
}
|
d1fcfcfa8d03e75e4e2d3546ebe8f3bc3bebd09f | e8ed3c743980a74946a9b35ba3efa3f37b2d0d53 | /app/src/main/cpp/visualizer/window.cpp | 781cfc87b3a5f186e4b0dc38965d0b455be1541f | [] | no_license | pj567/FFmpegAndroid | df37b644ea576c1a22958067f5d03cc7ad1256c9 | 1a9f81ec2fef9d34f3b99424b969dcd4afe198c5 | refs/heads/master | 2023-03-15T14:52:15.616384 | 2022-10-25T09:59:18 | 2022-10-25T09:59:18 | 557,616,877 | 1 | 0 | null | 2022-10-26T01:49:11 | 2022-10-26T01:49:10 | null | UTF-8 | C++ | false | false | 6,880 | cpp | window.cpp | /*****************************************************************************
* window.c : Implementation of FFT window routines
*****************************************************************************
* Copyright (C) 2014 Ronald Wright
*
* Author: Ronald Wright <logiconcepts819@gmail.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include <math.h>
#include "window.h"
#include <assert.h>
/* Flat top window coefficients */
#define FT_A0 1.000f
#define FT_A1 1.930f
#define FT_A2 1.290f
#define FT_A3 0.388f
#define FT_A4 0.028f
/* Blackman-Harris window coefficients */
#define BH_A0 0.35875f
#define BH_A1 0.48829f
#define BH_A2 0.14128f
#define BH_A3 0.01168f
/* Window functions supported by VLC. These are the typical window types used
* in spectrum analyzers. */
#define NB_WINDOWS 5
static const char * const window_list[NB_WINDOWS] = {
"none", "hann", "flattop", "blackmanharris", "kaiser",
};
/*
* The modified Bessel function I0(x). See Chapter 6 of the "Numerical Recipes
* in C: The Art of Scientific Computing" book at
* http://www.aip.de/groups/soe/local/numres/bookcpdf/c6-6.pdf
*/
static float bessi0(float x)
{
float ax, ans;
double y; /* Accumulate polynomials in double precision. */
if( ( ax = fabsf( x ) ) < 3.75f ) /* Polynomial fit. */
{
y = x / 3.75;
y *= y;
ans = (float) (1.0 + y * ( 3.5156229 + y * ( 3.0899424 + y * ( 1.2067492
+ y * ( 0.2659732 + y * ( 0.360768e-1
+ y * 0.45813e-2 ) ) ) ) ) );
}
else
{
y = 3.75 / ax;
ans = (float) ( ( exp( ax ) / sqrt( ax ) ) * ( 0.39894228 + y * ( 0.1328592e-1
+ y * ( 0.225319e-2 + y * ( -0.157565e-2 + y * ( 0.916281e-2
+ y * ( -0.2057706e-1 + y * ( 0.2635537e-1 + y * ( -0.1647633e-1
+ y * 0.392377e-2 ) ) ) ) ) ) ) ) );
}
return ans;
}
/*
* Obtain the window type from the window type variable.
*/
void window_get_param(window_param * p_param)
{
/* Fetch Kaiser parameter */
p_param->f_kaiser_alpha = 1.0f;
/* Fetch window type */
char * psz_preset = "hann";
if( !psz_preset )
{
goto no_preset;
}
for( int i = 0; i < NB_WINDOWS; i++ )
{
if( !strcasecmp( psz_preset, window_list[i] ) )
{
p_param->wind_type = (window_type) i;
return;
}
}
no_preset:
p_param->wind_type = NONE;
}
/*
* Initialization routine - sets up a lookup table for scaling a sample of data
* by window data. If the lookup table is successfully allocated, its memory
* location and its specified size are stored at the specified memory location
* of the internal context.
* Returns true if initialization succeeded and returns false otherwise.
* The internal context should be freed when it is finished with, by
* window_close().
*/
bool window_init(int i_buffer_size, window_param * p_param, window_context * p_ctx)
{
float * pf_table = NULL;
int i_buffer_size_minus_1 = i_buffer_size - 1;
window_type wind_type = p_param->wind_type;
if( wind_type != HANN && wind_type != FLATTOP
&& wind_type != BLACKMANHARRIS
&& wind_type != KAISER )
{
/* Assume a rectangular window (i.e. no window) */
i_buffer_size = 0;
goto exit;
}
pf_table = (float * )malloc( i_buffer_size * sizeof(*pf_table));
if( !pf_table )
{
/* Memory allocation failed */
return false;
}
switch( wind_type )
{
case HANN:
/* Hann window */
for( int i = 0; i < i_buffer_size; i++ )
{
float f_val = (float) i / (float) i_buffer_size_minus_1;
pf_table[i] = 0.5f - 0.5f * cosf( 2.0f * (float) M_PI * f_val );
}
break;
case FLATTOP:
/* Flat top window */
for( int i = 0; i < i_buffer_size; i++ )
{
float f_val = (float) i / (float) i_buffer_size_minus_1;
pf_table[i] = FT_A0
- FT_A1 * cosf( 2.0f * (float) M_PI * f_val )
+ FT_A2 * cosf( 4.0f * (float) M_PI * f_val )
- FT_A3 * cosf( 6.0f * (float) M_PI * f_val )
+ FT_A4 * cosf( 8.0f * (float) M_PI * f_val );
}
break;
case BLACKMANHARRIS:
/* Blackman-Harris window */
for( int i = 0; i < i_buffer_size; i++ )
{
float f_val = (float) i / (float) i_buffer_size_minus_1;
pf_table[i] = BH_A0
- BH_A1 * cosf( 2.0f * (float) M_PI * f_val )
+ BH_A2 * cosf( 4.0f * (float) M_PI * f_val )
- BH_A3 * cosf( 6.0f * (float) M_PI * f_val );
}
break;
case KAISER:
{
/* Kaiser window */
float f_pialph = (float) M_PI * p_param->f_kaiser_alpha;
float f_bessi0_pialph = bessi0( f_pialph );
for( int i = 0; i < i_buffer_size; i++ )
{
float f_val = (float) i / (float) i_buffer_size_minus_1;
float f_term_to_square = 2.0f * f_val - 1.0f;
float f_sqd_term = f_term_to_square * f_term_to_square;
float f_sqr_term = sqrtf( 1.0f - f_sqd_term );
pf_table[i] = bessi0( f_pialph * f_sqr_term ) / f_bessi0_pialph;
}
break;
}
default:
/* We should not reach here */
break;
}
exit:
p_ctx->pf_window_table = pf_table;
p_ctx->i_buffer_size = i_buffer_size;
return true;
}
/*
* Perform an in-place scaling of the input buffer by the window data
* referenced from the specified context.
*/
void window_scale_in_place(int16_t * p_buffer, window_context * p_ctx)
{
for(int i = 0; i < p_ctx->i_buffer_size; i++)
{
p_buffer[i] *= p_ctx->pf_window_table[i];
}
}
/*
* Free the context.
*/
void window_close(window_context * p_ctx)
{
if(p_ctx->pf_window_table)
{
free(p_ctx->pf_window_table);
p_ctx->pf_window_table = NULL;
p_ctx->i_buffer_size = 0;
}
}
|
c06bfca68e835878ac533c5bb9611c324f6e1da0 | c51248dd4272a9c2bb5e2eaa42016059c28486a1 | /JiuduOJ/JiuduOJ/题目1082:代理服务器.cpp | c79dd78f3000ce0a904d8921b3b88b99b7194933 | [] | no_license | hhyvs111/JiuduOJ | 700b14ae4d79eda316efb0bf11c6a143fbca861e | b0e4108f551d894e8f1618b5fdf387afba40bbfb | refs/heads/master | 2020-06-26T04:50:15.828664 | 2017-07-14T00:15:39 | 2017-07-14T00:15:39 | 97,003,076 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 682 | cpp | 题目1082:代理服务器.cpp | #include<cstdio>
#include<string>
using namespace std;
#define maxn 1000
int main()
{
int n,m;
char str1[maxn][maxn],str2[maxn][maxn];
while(scanf("%d",&n)==1)
{
for(int i = 0 ; i < n;i++)
scanf("%s",str1[i]);
scanf("%d",&m);
for(int i = 0 ; i < m;i++)
scanf("%s",str2[i]);
int ans;
int j = 0;
for(int i = 0;i < m;i++)
{
if(strcmp(str1[j],str[i])) //如果代理服务器相同
{
j++;
i--;
}
}
// for(int i = 0 ; i < n;i++)
// printf("%s\n",str1[i]);
}
return 0;
}
|
82d721ddfba6b0e9e47fad4b21db8affd93e48d3 | bed3ac926beac0f4e0293303d7b2a6031ee476c9 | /Modules/Core/Common/src/itkNumericTraitsPointPixel.cxx | 537b88ffb9dfa70836e95a3b8c23dfeb33b4e1ba | [
"IJG",
"Zlib",
"LicenseRef-scancode-proprietary-license",
"SMLNJ",
"BSD-3-Clause",
"BSD-4.3TAHOE",
"LicenseRef-scancode-free-unknown",
"Spencer-86",
"LicenseRef-scancode-llnl",
"FSFUL",
"Libpng",
"libtiff",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-hdf5",
"MIT",
"NTP",
"LicenseRef-scancode-mit-old-style",
"GPL-1.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"MPL-2.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
] | permissive | InsightSoftwareConsortium/ITK | ed9dbbc5b8b3f7511f007c0fc0eebb3ad37b88eb | 3eb8fd7cdfbc5ac2d0c2e5e776848a4cbab3d7e1 | refs/heads/master | 2023-08-31T17:21:47.754304 | 2023-08-31T00:58:51 | 2023-08-31T14:12:21 | 800,928 | 1,229 | 656 | Apache-2.0 | 2023-09-14T17:54:00 | 2010-07-27T15:48:04 | C++ | UTF-8 | C++ | false | false | 1,806 | cxx | itkNumericTraitsPointPixel.cxx | /*=========================================================================
*
* Copyright NumFOCUS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include "itkNumericTraitsPointPixel.h"
namespace itk
{
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, char);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, unsigned char);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, signed char);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, short);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, unsigned short);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, int);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, unsigned int);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, long);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, unsigned long);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, float);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, double);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, long double);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, long long);
itkStaticNumericTraitsGenericArrayDimensionsMacro(Point, unsigned long long);
} // end namespace itk
|
35e7bdc81b0ceec52f6faefa23a022cb7dd08eb1 | effd78dfe4775d73c695dcd896d9369037eaaa7c | /src/resourcemodel.cpp | af4d46575d0ed6c1142863a8e7446a1b8e19f570 | [] | no_license | freeserf/fsstudio | 88961da7c55d6e14056c028c942b967c206f24ff | 61d7755f175feca41eab5a4cad42a17d5af4e8d4 | refs/heads/master | 2021-01-19T08:30:30.559968 | 2020-05-10T22:00:36 | 2020-05-10T22:00:36 | 87,639,712 | 2 | 2 | null | 2020-05-10T22:00:37 | 2017-04-08T14:28:51 | C++ | UTF-8 | C++ | false | false | 3,883 | cpp | resourcemodel.cpp | /*
* resourcemodel.cpp - FSSResourceModel implementation
*
* Copyright (C) 2016 Wicked_Digger <wicked_digger@mail.ru>
*
* This file is part of FSStudio.
*
* FSStudio is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* FSStudio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with FSStudio. If not, see <http://www.gnu.org/licenses/>.
*/
#include "src/resourcemodel.h"
#include "src/data.h"
FSSResourceModel::FSSResourceModel(QObject *parent)
: QAbstractItemModel(parent) {
}
QVariant
FSSResourceModel::headerData(int section,
Qt::Orientation /*orientation*/,
int role) const {
QVariant result = QVariant();
switch (role) {
case Qt::DisplayRole: {
switch (section) {
case 0: {
result = "Resource";
break;
}
case 1: {
result = "Type";
break;
}
}
break;
}
default:
return QVariant();
}
return result;
}
QModelIndex
FSSResourceModel::index(int row, int column,
const QModelIndex &parent) const {
if (parent.isValid()) {
return createIndex(row, column,
((row+1) << 16) |
(parent.internalId() & 0xFF));
} else {
return createIndex(row, column, row+1);
}
}
QModelIndex
FSSResourceModel::parent(const QModelIndex &index) const {
int sub_row = index.internalId() >> 16;
if (sub_row == 0) {
return QModelIndex();
}
int row = (index.internalId() & 0xFF);
return createIndex(row-1, 0, row);
}
int
FSSResourceModel::rowCount(const QModelIndex &parent) const {
if (!parent.isValid()) {
return static_cast<int>(Data::AssetCursor);
}
QModelIndex p = parent.parent();
if (!p.isValid()) {
return Data::get_resource_count((Data::Resource)(parent.row() + 1));
}
return 0;
}
int
FSSResourceModel::columnCount(const QModelIndex & /*parent*/) const {
return 2;
}
QString
FSSResourceModel::getResName(int res) const {
Data::Resource rclass = (Data::Resource)res;
std::string name = Data::get_resource_name(rclass);
return QString::fromLatin1(name.c_str());
}
QString
FSSResourceModel::getResTypeName(int res) const {
const char *types[] = { "unknown", "sprite", "animation",
"sound", "music", "palette" };
Data::Resource rclass = (Data::Resource)res;
const char *name = types[Data::get_resource_type(rclass)];
return QString::fromLatin1(name);
}
QVariant
FSSResourceModel::data(const QModelIndex &index, int role) const {
QVariant result = QVariant();
QModelIndex parent = index.parent();
if (!parent.isValid()) {
switch (role) {
case Qt::DisplayRole: {
switch (index.column()) {
case 0: {
result = getResName(index.row() + 1);
break;
}
case 1: {
result = getResTypeName(index.row() + 1);
break;
}
}
break;
}
default:
return QVariant();
}
return result;
}
switch (role) {
case Qt::DisplayRole: {
switch (index.column()) {
case 0: {
result = QVariant(QString::number(index.row()));
break;
}
case 1: {
result = getResTypeName(index.parent().row() + 1);
break;
}
}
break;
}
default:
return QVariant();
}
return result;
}
|
c2f898d6f60faccb427f23451e68adaa133a895f | 89f1b76f21bff215377aac26077a8c38c01bda89 | /src/cpp/main.std.stl.NN.layers.vararg.cpp | 5bb4e188b9ce18a151fe241ba4b9d12ed7372d3d | [
"BSD-2-Clause"
] | permissive | rgr19/Boost_OpenMPI_GoogleTests_Examples | 5f26b8c1b2e9da1a3a2fdf2f90924ad7eb86db4d | 86613be270e433f25f6d5b9b8e6f3be4c2d0e889 | refs/heads/master | 2020-06-22T05:52:12.724754 | 2019-07-18T20:05:21 | 2019-07-18T20:05:21 | 197,649,652 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,358 | cpp | main.std.stl.NN.layers.vararg.cpp | #include <vector>
#include <iostream>
#include <map>
#include <cstring>
#include <list>
#include <memory>
#include <chrono>
#include <thread>
#include <cassert>
#include <csignal>
#include <cmath>
#include <variant>
#include <random>
#include <algorithm>
#include <numeric>
#include <iterator>
#include <fstream>
#include <time.h>
#define RESOURCES_DATA_PATH (std::string) "resources/data"
#ifdef WITH_BOOST
#include <boost/python.hpp>
#include <boost/python/numpy.hpp>
namespace py = boost::python;
namespace np = boost::python::numpy;
#endif
#include "MUtil.h"
#include "DGen.hpp"
#include "NNet.hpp"
#include "CEng.hpp"
#include "tests.hpp"
int main() {
#ifdef WITH_BOOST
Py_Initialize();
boost::python::numpy::initialize();
#endif
dgen_tests();
std::cout << "LOAD MNIST" << std::endl;
#define IN_T float
#define HL_T float
auto datain = DGen::LoadMnist<DEBUG0>("data");
constexpr size_t INPUT_LAYER = datain.get_pattern_size();
constexpr size_t OUTPUT_LAYER = datain.get_labels_size();
constexpr size_t B = datain.get_train_batch_size();
constexpr size_t mB = 1000;
{
TIME_START
//auto xtrainBegin = mnist->begin<DGen::data_e::TRAIN_IMG>();
//auto xtrainEnd = mnist->end<DGen::data_e::TRAIN_IMG>();
//auto f = std::accumulate(xtrainBegin, xtrainEnd, 0.f, [&](MNIST_IN_t in, MNIST_IN_t &x) {return in + x;});
//std::cout << "sum = " << f / double{256} << std::endl;
TIME_CHECK
}
std::srand(0);
auto layersMaker = NNet::LayersMaker<IN_T, HL_T, B, mB, INPUT_LAYER, 20, OUTPUT_LAYER>();
auto layers = layersMaker.alloc<DEBUG1>();
auto datagen = DGen::Datagen<HL_T, DGen::RANDOM_NORMAL>();
auto engine = CEng::Engine();
auto network = NNet::Network(layersMaker, layers, engine, datain, datagen);
network.print();
network.init<DEBUG1>();
network.compute<DEBUG2>();
TIME_START
for (int i = 0; i < 10000000; i++) {
network.compute<DEBUG0>();
}
TIME_CHECK
/* auto start = clock();
size_t o = 0;
for (size_t i = 0; i < 1000; i++) {
o += 1;
compute<DEBUG0, Layers_t, I, shapeNN...>(1, layersWrap, enginePtr);
}
std::cout << "Took " << clock() - start << " ms" << std::endl;
std::cout << o << std::endl;
*/
//auto * lh = (LayerHidden<int, 100, 100, mB> * ) layersWrap.layersTraining[1];
//lh->V;
//layersWrap->print();
std::cout << "Done." << std::endl;
return 0;
}
|
62a8cf4bde83a1884da7cacfae0e3e0273ccb2c8 | f0cc1d09a4b32487454dbfee55e275210907e64b | /StreetDesigner/VBORoadGraph.cpp | 14b9de8ee27a756448509a75b1da5f6ec8b5dc79 | [] | no_license | gnishida/StreetDesigner | ace8833d6c93f80a4b759fb6d5064ac9f78b6d8c | 16d7797bec38bcb2c9e0b8b02d9f6cae2744c5ca | refs/heads/master | 2021-01-21T07:54:07.224618 | 2014-05-11T23:47:33 | 2014-05-11T23:47:33 | 17,576,760 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,202 | cpp | VBORoadGraph.cpp | /************************************************************************************************
*
* @desc Class containing the road graph
* @author igarciad
*
************************************************************************************************/
#include "VBORoadGraph.h"
#include "VBORenderManager.h"
#include "polygon_3D.h"
#include "global.h"
void VBORoadGraph::clearVBORoadGraph(VBORenderManager& rendManager){
rendManager.removeStaticGeometry("3d_roads");
}//
void VBORoadGraph::updateRoadGraph(VBORenderManager& rendManager,RoadGraph &roadGraph){
//////////////////////////////////////////
// LINES QUADS
clearVBORoadGraph(rendManager);
RoadEdgeIter ei, eiEnd;
QVector3D p0,p1;
int numEdges=0;
std::vector<Vertex> vertROAD;
std::vector<Vertex> vertINT;
QVector3D a0,a1,a2,a3;
float width=3.5f;
BBox3D roadBB;
for(boost::tie(ei, eiEnd) = boost::edges(roadGraph.graph);
ei != eiEnd; ++ei)
{
if (!roadGraph.graph[*ei]->valid) continue;
numEdges++;
/*QVector3D col;
if( roadGraph.graph[*ei].numberOfLanes==LC::misctools::Global::global()->cuda_arterial_numLanes){//.isArterial() ){
glLineWidth(5.0f);
col=QVector3D(1.0f, 0.99f, 0.54f);//yellow
} else {
glLineWidth(2.0f);
col=QVector3D(0.9f, 0.9f, 0.9f);//white
}*/
RoadEdge* edge = roadGraph.graph[*ei];
p0 = edge->polyLine.front();//roadGraph.graph[boost::source(*ei, roadGraph.graph)].pt;
p1 = edge->polyLine.back();//roadGraph.graph[boost::target(*ei, roadGraph.graph)].pt;
p0.setZ(1.0f);
p1.setZ(1.0f);
roadBB.addPoint(p0);
QVector3D dir=(p1-p0);//.normalized();
float length=dir.length();
dir/=length;
QVector3D per=(QVector3D::crossProduct(dir,QVector3D(0,0,1.0f)).normalized());
int numSeg=0;
const float intersectionClearance=3.5f;
/// no room for one line
if(length<2.0f*intersectionClearance){//no real line
a0=QVector3D(p0.x()+per.x()*width, p0.y()+per.y()*width, p0.z());
a1=QVector3D(p1.x()+per.x()*width, p1.y()+per.y()*width, p0.z());
a2=QVector3D(p1.x()-per.x()*width, p1.y()-per.y()*width, p0.z());
a3=QVector3D(p0.x()-per.x()*width, p0.y()-per.y()*width, p0.z());
vertINT.push_back(Vertex(a0,QVector3D(),QVector3D(0,0,1.0f),a0));
vertINT.push_back(Vertex(a1,QVector3D(),QVector3D(0,0,1.0f),a1));
vertINT.push_back(Vertex(a2,QVector3D(),QVector3D(0,0,1.0f),a2));
vertINT.push_back(Vertex(a3,QVector3D(),QVector3D(0,0,1.0f),a3));
}else{
QVector3D p0_,p1_;
// START
p0_=p0;
p1_=p0+dir*intersectionClearance;
a0=QVector3D(p0_.x()+per.x()*width, p0_.y()+per.y()*width, p0_.z());
a1=QVector3D(p1_.x()+per.x()*width, p1_.y()+per.y()*width, p0_.z());
a2=QVector3D(p1_.x()-per.x()*width, p1_.y()-per.y()*width, p0_.z());
a3=QVector3D(p0_.x()-per.x()*width, p0_.y()-per.y()*width, p0_.z());
vertINT.push_back(Vertex(a0,QVector3D(),QVector3D(0,0,1.0f),a0));
vertINT.push_back(Vertex(a1,QVector3D(),QVector3D(0,0,1.0f),a1));
vertINT.push_back(Vertex(a2,QVector3D(),QVector3D(0,0,1.0f),a2));
vertINT.push_back(Vertex(a3,QVector3D(),QVector3D(0,0,1.0f),a3));
// MIDDLE
float middLenght=length-2.0f*intersectionClearance;
float const maxSegmentLeng=5.0f;
float segmentLeng;
if(middLenght>2*maxSegmentLeng){
int numSegments=ceil(length/5.0f);
float lengthMoved=0;
float dW=(2*width);
for(int nS=0;nS<numSegments;nS++){
segmentLeng=std::min(maxSegmentLeng,middLenght);
a0=a1;
a3=a2;
a1=a1+dir*(segmentLeng);
a2=a2+dir*(segmentLeng);
vertROAD.push_back(Vertex(a0,QVector3D(),QVector3D(0,0,1.0f),QVector3D(0,lengthMoved/dW,0.0f)));
vertROAD.push_back(Vertex(a1,QVector3D(),QVector3D(0,0,1.0f),QVector3D(0,(segmentLeng+lengthMoved)/dW,0)));
vertROAD.push_back(Vertex(a2,QVector3D(),QVector3D(0,0,1.0f),QVector3D(1.0f,(segmentLeng+lengthMoved)/dW,0)));
vertROAD.push_back(Vertex(a3,QVector3D(),QVector3D(0,0,1.0f),QVector3D(1.0f,lengthMoved/dW,0)));
lengthMoved+=segmentLeng;
middLenght-=segmentLeng;
}
}else{
// JUST ONE MIDDLE SEGMENT
a0=a1;
a3=a2;
a1=a1+dir*(middLenght);
a2=a2+dir*(middLenght);
vertROAD.push_back(Vertex(a0,QVector3D(),QVector3D(0,0,1.0f),QVector3D(0,0.0f,0)));
vertROAD.push_back(Vertex(a1,QVector3D(),QVector3D(0,0,1.0f),QVector3D(0,middLenght/(2*width),0)));
vertROAD.push_back(Vertex(a2,QVector3D(),QVector3D(0,0,1.0f),QVector3D(1.0f,middLenght/(2*width),0)));
vertROAD.push_back(Vertex(a3,QVector3D(),QVector3D(0,0,1.0f),QVector3D(1.0f,0.0f,0)));
}
// END
a0=a1;
a3=a2;
a1=a1+dir*intersectionClearance;
a2=a2+dir*intersectionClearance;
vertINT.push_back(Vertex(a0,QVector3D(),QVector3D(0,0,1.0f),a0));
vertINT.push_back(Vertex(a1,QVector3D(),QVector3D(0,0,1.0f),a1));
vertINT.push_back(Vertex(a2,QVector3D(),QVector3D(0,0,1.0f),a2));
vertINT.push_back(Vertex(a3,QVector3D(),QVector3D(0,0,1.0f),a3));
}
}
// add all geometry
if(G::global()["3d_render_mode"]==0){//normal
rendManager.addStaticGeometry("3d_roads",vertINT,"../data/textures/street_1.png",GL_QUADS, 2);//|LC::mode_AdaptTerrain);
rendManager.addStaticGeometry("3d_roads",vertROAD,"../data/textures/street_0.png",GL_QUADS,2);//|LC::mode_AdaptTerrain);
}
if(G::global()["3d_render_mode"]==1){//hatch
rendManager.addStaticGeometry("3d_roads",vertINT,"../data/textures/street_1b.png",GL_QUADS, 2);//|LC::mode_AdaptTerrain);
rendManager.addStaticGeometry("3d_roads",vertROAD,"../data/textures/street_0b.png",GL_QUADS,2);//|LC::mode_AdaptTerrain);
// add bbox
/*std::vector<Vertex> vertBB;
vertBB.push_back(Vertex(QVector3D(roadBB.minPt.x(),roadBB.minPt.y(),0),QVector3D(0.9f,0.9f,0.9f),QVector3D(0,0,1.0f),a0));
vertBB.push_back(Vertex(QVector3D(roadBB.maxPt.x(),roadBB.minPt.y(),0),QVector3D(0.9f,0.9f,0.9f),QVector3D(0,0,1.0f),a3));
vertBB.push_back(Vertex(QVector3D(roadBB.maxPt.x(),roadBB.maxPt.y(),0),QVector3D(0.9f,0.9f,0.9f),QVector3D(0,0,1.0f),a2));
vertBB.push_back(Vertex(QVector3D(roadBB.minPt.x(),roadBB.maxPt.y(),0),QVector3D(0.9f,0.9f,0.9f),QVector3D(0,0,1.0f),a1));
rendManager.addStaticGeometry("3d_roads",vertBB,"",GL_QUADS,1);//|LC::mode_AdaptTerrain);*/
std::vector<QVector3D> vertBB;
vertBB.push_back(QVector3D(roadBB.minPt.x(),roadBB.minPt.y(),0));
vertBB.push_back(QVector3D(roadBB.maxPt.x(),roadBB.minPt.y(),0));
vertBB.push_back(QVector3D(roadBB.maxPt.x(),roadBB.maxPt.y(),0));
vertBB.push_back(QVector3D(roadBB.minPt.x(),roadBB.maxPt.y(),0));
//rendManager.addStaticGeometry2("3d_roads",vertBB,0,false,"hatching_array",GL_QUADS,10|mode_TexArray,QVector3D(1.0f,1.0f,1.0f),QVector3D(0,0,0));
//rendManager.addStaticGeometry2("3d_roads",vertBB,0,false,"hatching_array",GL_QUADS,11|mode_TexArray|mode_Lighting,QVector3D(1.0f,1.0f,1.0f),QVector3D(0,0,0));
//rendManager.addStaticGeometry2("3d_roads",vertBB,0,false,"hatching_array",GL_QUADS,11|mode_TexArray|mode_Lighting,QVector3D(1.0f/(roadBB.maxPt.x()-roadBB.minPt.x()),1.0f/(roadBB.maxPt.y()-roadBB.minPt.y()),1.0f),QVector3D(0,0,0));
rendManager.addStaticGeometry2("3d_roads",vertBB,0,false,"hatching_array",GL_QUADS,11|mode_TexArray|mode_Lighting,QVector3D(1.0f/(5.0f),1.0f/(5.0f),1.0f),QVector3D(0,0,0));
//rendManager.addStaticGeometry2("3d_roads",vertBB,0,false,"../data/textures/LC/hatch/h6b.png",GL_QUADS,2,QVector3D(1.0f,1.0f,1.0f),QVector3D(0,0,0));
}
}//
void VBORoadGraph::renderRoadGraphLines(VBORenderManager& rendManager){
/*//glLineWidth(6.0f);
glLineWidth(6.0f);
GLuint vao;
glGenVertexArrays(1,&vao);
glBindVertexArray(vao);
//
if(line_wasModified==true){// it was modified
if(linesVBO!=INT_MAX){//it was already created--> remove
glDeleteVertexArrays(1, &linesVBO);
}
glGenVertexArrays(1,&linesVBO);
glBindBuffer(GL_ARRAY_BUFFER,linesVBO);
glBufferData(GL_ARRAY_BUFFER,sizeof(Vertex)*line_Vert.size(),line_Vert.data(),GL_STATIC_DRAW);
line_wasModified=false;
}else{
glBindBuffer(GL_ARRAY_BUFFER,linesVBO);
}
glUniform1i (glGetUniformLocation (rendManager.program, "terrain_tex"), 7);//tex0: 0
glUniform4f (glGetUniformLocation (rendManager.program, "terrain_size"),
rendManager.vboTerrain.terrainLayer.minPos.x(),
rendManager.vboTerrain.terrainLayer.minPos.y(),
(rendManager.vboTerrain.terrainLayer.maxPos.x()-rendManager.vboTerrain.terrainLayer.minPos.x()),
(rendManager.vboTerrain.terrainLayer.maxPos.y()-rendManager.vboTerrain.terrainLayer.minPos.y())
);//tex0: 0
glEnableVertexAttribArray(0);
glVertexAttribPointer(0,3,GL_FLOAT,GL_FALSE,sizeof(Vertex),0);
glEnableVertexAttribArray(1);
VBOUtil::check_gl_error("aa editionMode");
glVertexAttribPointer(1,3,GL_FLOAT,GL_FALSE,sizeof(Vertex),(void*)(3*sizeof(float)));
glEnableVertexAttribArray(2);
glVertexAttribPointer(2,3,GL_FLOAT,GL_FALSE,sizeof(Vertex),(void*)(6*sizeof(float)));
glEnableVertexAttribArray(3);
glVertexAttribPointer(3,3,GL_FLOAT,GL_FALSE,sizeof(Vertex),(void*)(9*sizeof(float)));
glUniform1i (glGetUniformLocation (rendManager.program, "mode"), 1|LC::mode_AdaptTerrain);//MODE: color
//RendUtil::enableAttributesInShader(programId);
glDrawArrays(GL_LINES,0,line_Vert.size());
glBindBuffer(GL_ARRAY_BUFFER,0);
glBindVertexArray(0);
glDeleteVertexArrays(1,&vao);*/
}//
|
e94f3ca736aed023d99a13a441afb9b564e38159 | 3c1f6ad876191f4abba4fb1ffbdc3180e3647de8 | /pbase.h | 131345420dcebbd82b42a548da6ee7d3d850ee43 | [] | no_license | bigtit/ps3checker | 0add3ddc4ec41360edc5e409dbb298fe4f37b1f7 | 61e866330569274caae14aa8bbe5a6cd552cfd9c | refs/heads/master | 2020-03-29T14:25:11.548702 | 2015-06-23T13:01:08 | 2015-06-23T13:01:08 | 37,535,158 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 124 | h | pbase.h | #include <iostream>
#include <vector>
#include <algorithm>
namespace pbase{
bool swap_bytes(std::vector<char>& pdata);
}
|
bfe7e6db05e9a1f1ea4a8888fa86e1b75bce19fa | a7454b0d4dddec98a4fd41ca2b2dfda1401e3302 | /raspi/src/rotary_inc.cpp | a90281bbffc98f694138a59640c102138b6ff132 | [
"MIT"
] | permissive | robocon-akashi-bteam/basic_utility | 7049f106ceb670514749bc2c3dda4949df5369b6 | bb77a4014fbbb7c067431be6de92d2f900c69cc9 | refs/heads/master | 2020-07-08T04:23:31.430577 | 2019-09-03T15:54:35 | 2019-09-03T15:54:35 | 203,563,671 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,422 | cpp | rotary_inc.cpp | #include "../include/pigpiod.hpp"
#include "../include/rotary_inc.hpp"
#include <pigpiod_if2.h>
#include <ros/console.h>
using ros::Pigpiod;
using ros::RotaryInc;
RotaryInc::RotaryInc(int user_A, int user_B, int multiplier) {
pin_A_ = user_A;
pin_B_ = user_B;
gpio_handle_ = Pigpiod::gpio().checkHandle();
Pigpiod::gpio().set(pin_A_, ros::IN, ros::PULL_UP);
Pigpiod::gpio().set(pin_B_, ros::IN, ros::PULL_UP);
set_watchdog(gpio_handle_, pin_A_, 0);
set_watchdog(gpio_handle_, pin_B_, 0);
switch (multiplier) {
case 2:
id_A_ = callback_ex(gpio_handle_, pin_A_, EITHER_EDGE, rotaryTwo, this);
id_B_ = callback_ex(gpio_handle_, pin_B_, EITHER_EDGE, rotaryTwo, this);
break;
case 4:
id_A_ = callback_ex(gpio_handle_, pin_A_, EITHER_EDGE, rotaryFour, this);
id_B_ = callback_ex(gpio_handle_, pin_B_, EITHER_EDGE, rotaryFour, this);
break;
default:
id_A_ = callback_ex(gpio_handle_, pin_A_, EITHER_EDGE, rotary, this);
id_B_ = callback_ex(gpio_handle_, pin_B_, EITHER_EDGE, rotary, this);
break;
}
}
RotaryInc::RotaryInc(int user_A, int user_B, int multiplier, int user_Z) {
RotaryInc(user_A, user_B, multiplier);
pin_Z_ = user_Z;
Pigpiod::gpio().set(pin_Z_, ros::IN, ros::PULL_UP);
set_watchdog(gpio_handle_, pin_Z_, 0);
id_Z_ = callback_ex(gpio_handle_, pin_Z_, RISING_EDGE, rotaryZ, this);
}
int RotaryInc::get() { return pulse_; }
int RotaryInc::angle() { return position_; }
int RotaryInc::diff() {
diff_pulse_ = pulse_ - prev_pulse_;
prev_pulse_ = pulse_;
return diff_pulse_;
}
void RotaryInc::rotary(int pi, unsigned int gpio, unsigned int edge,
uint32_t tick, void *userdata) {
RotaryInc *regist = (RotaryInc *)userdata;
if (gpio == regist->pin_A_) {
regist->now_A_ = edge;
if (edge) {
regist->now_B_ ? ++(regist->pulse_) : --(regist->pulse_);
regist->now_B_ ? ++(regist->position_) : --(regist->position_);
}
} else if (gpio == regist->pin_B_) {
regist->now_B_ = edge;
}
}
void RotaryInc::rotaryTwo(int pi, unsigned int gpio, unsigned int edge,
uint32_t tick, void *userdata) {
RotaryInc *regist = (RotaryInc *)userdata;
if (gpio == regist->pin_A_) {
regist->now_A_ = edge;
if (edge) {
regist->now_B_ ? ++(regist->pulse_) : --(regist->pulse_);
} else {
regist->now_B_ ? --(regist->pulse_) : ++(regist->pulse_);
}
} else {
regist->now_B_ = edge;
}
}
void RotaryInc::rotaryFour(int pi, unsigned int gpio, unsigned int edge,
uint32_t tick, void *userdata) {
RotaryInc *regist = (RotaryInc *)userdata;
if (gpio == regist->pin_A_) {
regist->now_A_ = edge;
if (edge) {
regist->now_B_ ? ++(regist->pulse_) : --(regist->pulse_);
} else {
regist->now_B_ ? --(regist->pulse_) : ++(regist->pulse_);
}
} else {
regist->now_B_ = edge;
if (edge) {
regist->now_B_ ? ++(regist->pulse_) : --(regist->pulse_);
} else {
regist->now_B_ ? --(regist->pulse_) : ++(regist->pulse_);
}
}
}
void RotaryInc::rotaryZ(int pi, unsigned int gpio, unsigned int edge,
uint32_t tick, void *userdata) {
RotaryInc *regist = (RotaryInc *)userdata;
if (gpio == regist->pin_Z_) {
regist->position_ = 0;
}
}
RotaryInc::~RotaryInc() {
callback_cancel(id_A_);
callback_cancel(id_B_);
callback_cancel(id_Z_);
}
|
0bf92cad13e08df1b94cf123539826b6ce1c0d59 | f98bd6952f669f648d3d3f18c027f29e73ea192a | /leetcode-67.cpp | 6dafd933688226c987db53281840e09c52dd49fa | [] | no_license | breastcover/LeetCdoe | 5aa63f632b1e35c1e0e5c74c1f858e4f14a81c95 | 81e2b692dfa177044957cd8a0ab70363e5e5e2dc | refs/heads/master | 2021-06-17T16:56:56.450246 | 2020-11-01T13:56:06 | 2020-11-01T13:56:06 | 144,120,922 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 371 | cpp | leetcode-67.cpp | class Solution {
public:
string addBinary(string a, string b) {
int n=a.size()-1,m=b.size()-1;
int carry=0;
string s="";
while(n>=0||m>=0||carry==1)
{
carry+=n>=0?a[n--]-'0':0;
carry+=m>=0?b[m--]-'0':0;
s=to_string(carry%2)+s;
carry=carry/2;
}
return s;
}
};
|
20adb3d539205fb5c0bb7140294a1efe57fd891b | 092dd56a1bf9357466c05d0f5aedf240cec1a27b | /libsrc/pylith/problems/Problem.cc | de1380ee376f87c242134e688fef66999f26dc17 | [
"MIT"
] | permissive | rwalkerlewis/pylith | cef02d5543e99a3e778a1c530967e6b5f1d5dcba | c5f872c6afff004a06311d36ac078133a30abd99 | refs/heads/main | 2023-08-24T18:27:30.877550 | 2023-06-21T22:03:01 | 2023-06-21T22:03:01 | 154,047,591 | 0 | 0 | MIT | 2018-10-21T20:05:59 | 2018-10-21T20:05:59 | null | UTF-8 | C++ | false | false | 25,272 | cc | Problem.cc | // -*- C++ -*-
//
// ======================================================================
//
// Brad T. Aagaard, U.S. Geological Survey
// Charles A. Williams, GNS Science
// Matthew G. Knepley, University at Buffalo
//
// This code was developed as part of the Computational Infrastructure
// for Geodynamics (http://geodynamics.org).
//
// Copyright (c) 2010-2022 University of California, Davis
//
// See LICENSE.md for license information.
//
// ======================================================================
//
#include <portinfo>
#include "Problem.hh" // implementation of class methods
#include "pylith/feassemble/IntegrationData.hh" // HOLDSA IntegrationData
#include "pylith/topology/Mesh.hh" // USES Mesh
#include "pylith/topology/Field.hh" // HASA Field
#include "pylith/topology/FieldOps.hh" // USES FieldOps
#include "pylith/materials/Material.hh" // USES Material
#include "pylith/faults/FaultCohesive.hh" // USES FaultCohesive
#include "pylith/bc/BoundaryCondition.hh" // USES BoundaryCondition
#include "pylith/feassemble/Integrator.hh" // USES Integrator
#include "pylith/feassemble/IntegratorDomain.hh" // USES IntegratorDomain
#include "pylith/feassemble/IntegratorInterface.hh" // USES IntegratorInterface
#include "pylith/feassemble/Constraint.hh" // USES Constraint
#include "pylith/problems/ObserversSoln.hh" // USES ObserversSoln
#include "pylith/topology/MeshOps.hh" // USES MeshOps
#include "pylith/topology/CoordsVisitor.hh" // USES CoordsVisitor::optimizeClosure()
#include "spatialdata/units/Nondimensional.hh" // USES Nondimensional
#include "spatialdata/spatialdb/GravityField.hh" // USES GravityField
#include "pylith/utils/error.hh" // USES PYLITH_CHECK_ERROR
#include "pylith/utils/journals.hh" // USES PYLITH_COMPONENT_*
#include <cassert> // USES assert()
#include <typeinfo> // USES typeid()
// ------------------------------------------------------------------------------------------------
namespace pylith {
namespace problems {
class _Problem {
public:
/** Create null space for solution subfield.
*
* @param[inout] solution Solution field.
* @param[in] subfieldName Name of solution subfield with null space.
*/
static
void createNullSpace(const pylith::topology::Field* solution,
const char* subfieldName);
/** Set data needed to integrate domain faces on interior interface.
*
* @param[inout] solution Solution field.
* @param[in] integrators Array of integrators for problem.
*/
static
void setInterfaceData(const pylith::topology::Field* solution,
std::vector<pylith::feassemble::Integrator*>& integrators);
/** Get subset of integrators matching template type T.
*
* @param[in] Array of integrators for problem
* @returns Array of integrators of type T.
*/
template<class T> static std::vector<T*> subset(const std::vector<pylith::feassemble::Integrator*>& integrators);
};
}
}
// ------------------------------------------------------------------------------------------------
// Constructor
pylith::problems::Problem::Problem() :
_integrationData(new pylith::feassemble::IntegrationData),
_normalizer(NULL),
_gravityField(NULL),
_observers(new pylith::problems::ObserversSoln),
_formulation(pylith::problems::Physics::QUASISTATIC),
_solverType(LINEAR),
_petscDefaults(pylith::utils::PetscDefaults::SOLVER | pylith::utils::PetscDefaults::TESTING) {}
// ------------------------------------------------------------------------------------------------
// Destructor
pylith::problems::Problem::~Problem(void) {
deallocate();
} // destructor
// ------------------------------------------------------------------------------------------------
// Deallocate PETSc and local data structures.
void
pylith::problems::Problem::deallocate(void) {
PYLITH_METHOD_BEGIN;
const size_t numIntegrators = _integrators.size();
for (size_t i = 0; i < numIntegrators; ++i) {
delete _integrators[i];_integrators[i] = NULL;
} // for
const size_t numConstraints = _constraints.size();
for (size_t i = 0; i < numConstraints; ++i) {
delete _constraints[i];_constraints[i] = NULL;
} // for
delete _integrationData;_integrationData = NULL;
delete _normalizer;_normalizer = NULL;
_gravityField = NULL; // Held by Python. :KLUDGE: :TODO: Use shared pointer.
delete _observers;_observers = NULL;
pylith::topology::FieldOps::deallocate();
PYLITH_METHOD_END;
} // deallocate
// ------------------------------------------------------------------------------------------------
// Set formulation for solving equation.
void
pylith::problems::Problem::setFormulation(const pylith::problems::Physics::FormulationEnum value) {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("setFormulation(value="<<value<<")");
_formulation = value;
PYLITH_METHOD_END;
} // setFormulation
// ------------------------------------------------------------------------------------------------
// Get formulation for solving equation.
pylith::problems::Physics::FormulationEnum
pylith::problems::Problem::getFormulation(void) const {
return _formulation;
} // getFormulation
// ------------------------------------------------------------------------------------------------
// Set problem type.
void
pylith::problems::Problem::setSolverType(const SolverTypeEnum value) {
PYLITH_COMPONENT_DEBUG("Problem::setSolverType(value="<<value<<")");
_solverType = value;
} // setSolverType
// ------------------------------------------------------------------------------------------------
// Get problem type.
pylith::problems::Problem::SolverTypeEnum
pylith::problems::Problem::getSolverType(void) const {
return _solverType;
} // getSolverType
// ------------------------------------------------------------------------------------------------
// Specify whether to set defaults for PETSc solver appropriate for problem.
void
pylith::problems::Problem::setPetscDefaults(const int flags) {
_petscDefaults = flags;
} // setPetscDefaults
// ------------------------------------------------------------------------------------------------
// Set manager of scales used to nondimensionalize problem.
void
pylith::problems::Problem::setNormalizer(const spatialdata::units::Nondimensional& dim) {
PYLITH_COMPONENT_DEBUG("Problem::setNormalizer(dim="<<typeid(dim).name()<<")");
if (!_normalizer) {
_normalizer = new spatialdata::units::Nondimensional(dim);
} else {
*_normalizer = dim;
} // if/else
} // setNormalizer
// ------------------------------------------------------------------------------------------------
// Set gravity field.
void
pylith::problems::Problem::setGravityField(spatialdata::spatialdb::GravityField* const g) {
PYLITH_COMPONENT_DEBUG("Problem::setGravityField(g="<<typeid(g).name()<<")");
_gravityField = g;
} // setGravityField
// ----------------------------------------------------------------------
// Register observer to receive notifications.
void
pylith::problems::Problem::registerObserver(pylith::problems::ObserverSoln* observer) {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("registerObserver(observer="<<typeid(observer).name()<<")");
assert(_observers);
assert(_normalizer);
_observers->registerObserver(observer);
_observers->setTimeScale(_normalizer->getTimeScale());
PYLITH_METHOD_END;
} // registerObserver
// ----------------------------------------------------------------------
// Remove observer from receiving notifications.
void
pylith::problems::Problem::removeObserver(pylith::problems::ObserverSoln* observer) {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("removeObserver(observer="<<typeid(observer).name()<<")");
assert(_observers);
_observers->removeObserver(observer);
PYLITH_METHOD_END;
} // removeObserver
// ------------------------------------------------------------------------------------------------
// Set solution field.
void
pylith::problems::Problem::setSolution(pylith::topology::Field* field) {
PYLITH_COMPONENT_DEBUG("Problem::setSolution(field="<<typeid(*field).name()<<")");
assert(_integrationData);
_integrationData->setField(pylith::feassemble::IntegrationData::solution, field);
} // setSolution
// ------------------------------------------------------------------------------------------------
// Get solution field.
const pylith::topology::Field*
pylith::problems::Problem::getSolution(void) const {
PYLITH_METHOD_BEGIN;
assert(_integrationData);
pylith::topology::Field* solution = NULL;
if (_integrationData->hasField(pylith::feassemble::IntegrationData::solution)) {
solution = _integrationData->getField(pylith::feassemble::IntegrationData::solution);
} // if
PYLITH_METHOD_RETURN(solution);
} // getSolution
// ------------------------------------------------------------------------------------------------
// Get time derivative solution field.
const pylith::topology::Field*
pylith::problems::Problem::getSolutionDot(void) const {
assert(_integrationData);
pylith::topology::Field* solutionDot = NULL;
if (_integrationData->hasField(pylith::feassemble::IntegrationData::solution_dot)) {
solutionDot = _integrationData->getField(pylith::feassemble::IntegrationData::solution_dot);
} // if
PYLITH_METHOD_RETURN(solutionDot);
} // getSolutionDot
// ------------------------------------------------------------------------------------------------
// Set materials.
void
pylith::problems::Problem::setMaterials(pylith::materials::Material* materials[],
const int numMaterials) {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("Problem::setMaterials("<<materials<<", numMaterials="<<numMaterials<<")");
assert( (!materials && 0 == numMaterials) || (materials && 0 < numMaterials) );
_materials.resize(numMaterials);
for (int i = 0; i < numMaterials; ++i) {
_materials[i] = materials[i];
} // for
PYLITH_METHOD_END;
} // setMaterials
// ------------------------------------------------------------------------------------------------
// Set boundary conditions.
void
pylith::problems::Problem::setBoundaryConditions(pylith::bc::BoundaryCondition* bc[],
const int numBC) {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("Problem::setBoundaryConditions("<<bc<<", numBC="<<numBC<<")");
assert( (!bc && 0 == numBC) || (bc && 0 < numBC) );
_bc.resize(numBC);
for (int i = 0; i < numBC; ++i) {
_bc[i] = bc[i];
} // for
PYLITH_METHOD_END;
} // setBoundaryConditions
// ------------------------------------------------------------------------------------------------
// Set materials.
void
pylith::problems::Problem::setInterfaces(pylith::faults::FaultCohesive* interfaces[],
const int numInterfaces) {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("Problem::setInterfaces("<<interfaces<<", numInterfaces="<<numInterfaces<<")");
assert( (!interfaces && 0 == numInterfaces) || (interfaces && 0 < numInterfaces) );
_interfaces.resize(numInterfaces);
for (int i = 0; i < numInterfaces; ++i) {
_interfaces[i] = interfaces[i];
} // for
PYLITH_METHOD_END;
} // setInterfaces
// ----------------------------------------------------------------------
// Do minimal initialization.
void
pylith::problems::Problem::preinitialize(const pylith::topology::Mesh& mesh) {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("Problem::preinitialzie(mesh="<<typeid(mesh).name()<<")");
assert(_normalizer);
const size_t numMaterials = _materials.size();
for (size_t i = 0; i < numMaterials; ++i) {
assert(_materials[i]);
_materials[i]->setNormalizer(*_normalizer);
_materials[i]->setGravityField(_gravityField);
_materials[i]->setFormulation(_formulation);
} // for
const size_t numInterfaces = _interfaces.size();
for (size_t i = 0; i < numInterfaces; ++i) {
assert(_interfaces[i]);
_interfaces[i]->setNormalizer(*_normalizer);
_interfaces[i]->setFormulation(_formulation);
} // for
const size_t numBC = _bc.size();
for (size_t i = 0; i < numBC; ++i) {
assert(_bc[i]);
_bc[i]->setNormalizer(*_normalizer);
_bc[i]->setFormulation(_formulation);
} // for
PYLITH_METHOD_END;
} // preinitialize
// ----------------------------------------------------------------------
// Verify configuration.
void
pylith::problems::Problem::verifyConfiguration(void) const {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("Problem::verifyConfiguration(void)");
assert(_integrationData);
const pylith::topology::Field* solution = _integrationData->getField("solution");
assert(solution);
// Check to make sure materials are compatible with the solution.
const size_t numMaterials = _materials.size();
for (size_t i = 0; i < numMaterials; ++i) {
assert(_materials[i]);
_materials[i]->verifyConfiguration(*solution);
} // for
// Check to make sure interfaces are compatible with the solution.
const size_t numInterfaces = _interfaces.size();
for (size_t i = 0; i < numInterfaces; ++i) {
assert(_interfaces[i]);
_interfaces[i]->verifyConfiguration(*solution);
} // for
// Check to make sure boundary conditions are compatible with the solution.
const size_t numBC = _bc.size();
for (size_t i = 0; i < numBC; ++i) {
assert(_bc[i]);
_bc[i]->verifyConfiguration(*solution);
} // for
_checkMaterialLabels();
assert(_observers);
_observers->verifyObservers(*solution);
PYLITH_METHOD_END;
} // verifyConfiguration
// ----------------------------------------------------------------------
// Initialize.
void
pylith::problems::Problem::initialize(void) {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("Problem::initialize()");
assert(_integrationData);
pylith::topology::Field* solution = _integrationData->getField("solution");
assert(solution);
// Initialize solution field.
PetscErrorCode err = DMSetFromOptions(solution->getDM());PYLITH_CHECK_ERROR(err);
_setupSolution();
pylith::topology::CoordsVisitor::optimizeClosure(solution->getDM());
// Initialize integrators.
_createIntegrators();
const size_t numIntegrators = _integrators.size();
for (size_t i = 0; i < numIntegrators; ++i) {
assert(_integrators[i]);
_integrators[i]->initialize(*solution);
} // for
// Initialize constraints.
_createConstraints();
const size_t numConstraints = _constraints.size();
for (size_t i = 0; i < numConstraints; ++i) {
assert(_constraints[i]);
_constraints[i]->initialize(*solution);
} // for
solution->allocate();
solution->createGlobalVector();
solution->createOutputVector();
switch (_formulation) {
case pylith::problems::Physics::DYNAMIC:
case pylith::problems::Physics::DYNAMIC_IMEX:
break;
case pylith::problems::Physics::QUASISTATIC:
_Problem::createNullSpace(solution, "displacement");
break;
default:
PYLITH_COMPONENT_LOGICERROR("Unknown formulation '"<<_formulation<<".");
} // switch
_Problem::setInterfaceData(solution, _integrators);
pythia::journal::debug_t debug(PyreComponent::getName());
if (debug.state()) {
PYLITH_COMPONENT_DEBUG("Displaying solution field layout");
solution->view("Solution field", pylith::topology::Field::VIEW_LAYOUT);
} // if
PYLITH_METHOD_END;
} // initialize
// ------------------------------------------------------------------------------------------------
// Check material and interface ids.
void
pylith::problems::Problem::_checkMaterialLabels(void) const {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("Problem::_checkMaterialLabels()");
const size_t numMaterials = _materials.size();
const size_t numInterfaces = _interfaces.size();
pylith::int_array labelValues(numMaterials + numInterfaces);
size_t count = 0;
for (size_t i = 0; i < numMaterials; ++i) {
assert(_materials[i]);
labelValues[count++] = _materials[i]->getLabelValue();
} // for
for (size_t i = 0; i < numInterfaces; ++i) {
assert(_interfaces[i]);
labelValues[count++] = _interfaces[i]->getCohesiveLabelValue();
} // for
assert(_integrationData);
const pylith::topology::Field* solution = _integrationData->getField("solution");
assert(solution);
pylith::topology::MeshOps::checkMaterialLabels(solution->getMesh(), labelValues);
PYLITH_METHOD_END;
} // _checkMaterialLabels
// ------------------------------------------------------------------------------------------------
// Create array of integrators from materials, interfaces, and boundary conditions.
void
pylith::problems::Problem::_createIntegrators(void) {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("Problem::_createIntegrators()");
const size_t numMaterials = _materials.size();
const size_t numInterfaces = _interfaces.size();
const size_t numBC = _bc.size();
const size_t maxSize = numMaterials + numInterfaces + numBC;
_integrators.resize(maxSize);
size_t count = 0;
assert(_integrationData);
const pylith::topology::Field* solution = _integrationData->getField("solution");
assert(solution);
for (size_t i = 0; i < numMaterials; ++i) {
assert(_materials[i]);
pylith::feassemble::Integrator* integrator = _materials[i]->createIntegrator(*solution);
assert(count < maxSize);
if (integrator) { _integrators[count++] = integrator;}
} // for
for (size_t i = 0; i < numInterfaces; ++i) {
assert(_interfaces[i]);
pylith::feassemble::Integrator* integrator = _interfaces[i]->createIntegrator(*solution, _materials);
assert(count < maxSize);
if (integrator) { _integrators[count++] = integrator;}
} // for
// Check to make sure boundary conditions are compatible with the solution.
for (size_t i = 0; i < numBC; ++i) {
assert(_bc[i]);
pylith::feassemble::Integrator* integrator = _bc[i]->createIntegrator(*solution);
assert(count < maxSize);
if (integrator) { _integrators[count++] = integrator;}
} // for
_integrators.resize(count);
PYLITH_METHOD_END;
} // _createIntegrators
// ------------------------------------------------------------------------------------------------
// Create array of constraints from materials, interfaces, and boundary conditions.
void
pylith::problems::Problem::_createConstraints(void) {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("Problem::_createConstraints()");
const size_t numMaterials = _materials.size();
const size_t numInterfaces = _interfaces.size();
const size_t numBC = _bc.size();
assert(_integrationData);
const pylith::topology::Field* solution = _integrationData->getField("solution");
assert(solution);
_constraints.resize(0); // insure we start with an empty array.
for (size_t i = 0; i < numMaterials; ++i) {
assert(_materials[i]);
std::vector<pylith::feassemble::Constraint*> constraints = _materials[i]->createConstraints(*solution);
_constraints.insert(_constraints.end(), constraints.begin(), constraints.end());
} // for
for (size_t i = 0; i < numInterfaces; ++i) {
assert(_interfaces[i]);
std::vector<pylith::feassemble::Constraint*> constraints = _interfaces[i]->createConstraints(*solution);
_constraints.insert(_constraints.end(), constraints.begin(), constraints.end());
} // for
for (size_t i = 0; i < numBC; ++i) {
assert(_bc[i]);
std::vector<pylith::feassemble::Constraint*> constraints = _bc[i]->createConstraints(*solution);
_constraints.insert(_constraints.end(), constraints.begin(), constraints.end());
} // for
PYLITH_METHOD_END;
} // _createConstraints
// ------------------------------------------------------------------------------------------------
// Setup solution subfields and discretization.
void
pylith::problems::Problem::_setupSolution(void) {
PYLITH_METHOD_BEGIN;
PYLITH_COMPONENT_DEBUG("Problem::_setupSolution()");
assert(_integrationData);
pylith::topology::Field* solution = _integrationData->getField("solution");
assert(solution);
solution->subfieldsSetup();
solution->createDiscretization();
// Mark fault fields as implicit.
const pylith::string_vector& subfieldNames = solution->getSubfieldNames();
for (size_t i = 0; i < subfieldNames.size(); ++i) {
const pylith::topology::Field::SubfieldInfo& subfieldInfo = solution->getSubfieldInfo(subfieldNames[i].c_str());
if (subfieldInfo.fe.isFaultOnly) {
PetscErrorCode err;
PetscDS ds = NULL;
PetscInt cStart = 0, cEnd = 0;
PetscDM dmSoln = solution->getDM();assert(dmSoln);
err = DMPlexGetHeightStratum(dmSoln, 0, &cStart, &cEnd);PYLITH_CHECK_ERROR(err);
PetscInt cell = cStart;
bool found = false;
for (; cell < cEnd; ++cell) {
if (pylith::topology::MeshOps::isCohesiveCell(dmSoln, cell)) {
found = true;
break;
} // if
} // for
if (!found) {
continue;
} // if
err = DMGetCellDS(dmSoln, cell, &ds, NULL);PYLITH_CHECK_ERROR(err);
assert(ds);
err = PetscDSSetImplicit(ds, subfieldInfo.index, PETSC_TRUE);PYLITH_CHECK_ERROR(err);
} // if
} // for
PYLITH_METHOD_END;
} // _setupSolution
// ------------------------------------------------------------------------------------------------
// Create null space for solution subfield.
void
pylith::problems::_Problem::createNullSpace(const pylith::topology::Field* solution,
const char* subfieldName) {
PYLITH_METHOD_BEGIN;
assert(solution);
const int spaceDim = solution->getSpaceDim();
const PetscInt m = (spaceDim * (spaceDim + 1)) / 2;assert(m > 0 && m <= 6);
PetscErrorCode err = 0;
PetscInt numDofUnconstrained = 0;
err = PetscSectionGetConstrainedStorageSize(solution->getLocalSection(), &numDofUnconstrained);
if (m > numDofUnconstrained) {
PYLITH_METHOD_END;
} // if
const PetscDM dmSoln = solution->getDM();
const pylith::topology::Field::SubfieldInfo info = solution->getSubfieldInfo(subfieldName);
MatNullSpace nullSpace = NULL;
err = DMPlexCreateRigidBody(dmSoln, info.index, &nullSpace);PYLITH_CHECK_ERROR(err);
PetscObject field = NULL;
err = DMGetField(dmSoln, info.index, NULL, &field);PYLITH_CHECK_ERROR(err);
err = PetscObjectCompose(field, "nearnullspace", (PetscObject) nullSpace);PYLITH_CHECK_ERROR(err);
err = MatNullSpaceDestroy(&nullSpace);PYLITH_CHECK_ERROR(err);
PYLITH_METHOD_END;
} // createNullSpace
// ------------------------------------------------------------------------------------------------
// Set data needed to integrate domain faces on interior interface.
void
pylith::problems::_Problem::setInterfaceData(const pylith::topology::Field* solution,
std::vector<pylith::feassemble::Integrator*>& integrators) {
PYLITH_METHOD_BEGIN;
const std::vector<pylith::feassemble::IntegratorDomain*>& integratorsDomain =
subset<pylith::feassemble::IntegratorDomain>(integrators);
const std::vector<pylith::feassemble::IntegratorInterface*>& integratorsInterface =
subset<pylith::feassemble::IntegratorInterface>(integrators);
for (size_t i = 0; i < integratorsDomain.size(); ++i) {
integratorsDomain[i]->setInterfaceData(solution, integratorsInterface);
} // for
PYLITH_METHOD_END;
} // setInterfaceData
// ------------------------------------------------------------------------------------------------
// Get subset of integrators matching template type T.
template<class T>
std::vector<T*>
pylith::problems::_Problem::subset(const std::vector<pylith::feassemble::Integrator*>& integrators) {
// Count number of matches
size_t numFound = 0;
for (size_t i = 0; i < integrators.size(); ++i) {
if (dynamic_cast<T*>(integrators[i])) {
numFound++;
} // if/else
} // for
// Collect matches
std::vector<T*> matches(numFound);
size_t index = 0;
for (size_t i = 0; i < integrators.size(); ++i) {
T* integrator = dynamic_cast<T*>(integrators[i]);
if (integrator) {
matches[index++] = integrator;
} // if/else
} // for
return matches;
} // subset
// End of file
|
5e74ff3e561449c3d04615d0e641dfc943a7db97 | 5c6b490aed348659b40d23941d12fe705386ca84 | /AR furniture/iOS build/Classes/Native/Unity.XR.Interaction.Toolkit1.cpp | 90c42dd05f50db0d9156b9fa8f7628431bd4d0bf | [] | no_license | taekyunJason/05-2.AR_Furniture | ed075590345c9f096fee27046718cffaecbfefe8 | 29f667a646d2d8dbedb428162845947c35de86a7 | refs/heads/main | 2023-07-24T02:26:23.411033 | 2021-09-03T00:18:29 | 2021-09-03T00:18:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,319,056 | cpp | Unity.XR.Interaction.Toolkit1.cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
struct VirtualActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct VirtualActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtualActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtualActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R>
struct VirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtualFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtualFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
// System.Action`1<System.Int32>
struct Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs>
struct Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs>
struct Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs>
struct Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs>
struct Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>
struct Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7;
// System.Action`1<System.Object>
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875;
// System.Action`1<UnityEngine.XR.XRInputSubsystem>
struct Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext>
struct Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.AxisEventData>
struct Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData>
struct Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>
struct Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1;
// System.Action`2<System.Int32,System.Int32>
struct Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8;
// System.Action`2<System.Object,System.Object>
struct Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C;
// System.Action`2<UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>>
struct Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5;
// System.Comparison`1<System.Object>
struct Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645;
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult>
struct Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC;
// System.Comparison`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A;
// System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
// System.Collections.Generic.Dictionary`2<System.Object,System.Single>
struct Dictionary_2_t1E85CF9786F2C7C796C8CC2EB86ADA13A263ECAB;
// System.Collections.Generic.Dictionary`2<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,System.Single>
struct Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F;
// System.Collections.Generic.Dictionary`2<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.GameObject>
struct Dictionary_2_t97DBCD53B07D70E80A2A9BF985B5247F3F76A094;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler>
struct EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler>
struct EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDeselectHandler>
struct EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler>
struct EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler>
struct EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler>
struct EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler>
struct EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler>
struct EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler>
struct EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler>
struct EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler>
struct EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler>
struct EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerMoveHandler>
struct EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler>
struct EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler>
struct EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISelectHandler>
struct EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler>
struct EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler>
struct EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>
struct EventFunction_1_t297B5C47242D1B98BEC955E2804FA142B43E7927;
// System.Collections.Generic.HashSet`1<UnityEngine.Collider>
struct HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B;
// System.Collections.Generic.HashSet`1<System.Object>
struct HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885;
// System.Collections.Generic.HashSet`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782;
// System.Collections.Generic.HashSet`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>
struct HashSet_1_tC7E85EB40BBEE3F7DC60F565262B3118A20D3353;
// System.Collections.Generic.IComparer`1<UnityEngine.RaycastHit>
struct IComparer_1_t4029032A6ED22A873F128CBE44DE2F52D471C18F;
// System.Collections.Generic.IComparer`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>
struct IComparer_1_t7E07D208B31E386775BFFCA6C00905F7434F4B78;
// System.Collections.Generic.IEnumerable`1<UnityEngine.GameObject>
struct IEnumerable_1_t73E24A3585FE00B560A12D422A7066F996ACD0A0;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
// System.Collections.Generic.IEnumerable`1<UnityEngine.RaycastHit>
struct IEnumerable_1_t8BC83955BB4626ACDAB88E89CABC85C7E3BEF89D;
// System.Collections.Generic.IEnumerable`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct IEnumerable_1_t464F64F5A58C9DC1B34AFAD5D079F5176ED1537A;
// System.Collections.Generic.IEnumerable`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>
struct IEnumerable_1_t287BB0E5E8933AC201948E506E2114B2AF2571AD;
// System.Collections.Generic.IEnumerator`1<UnityEngine.RaycastHit>
struct IEnumerator_1_tBC69ED349ABDD7F22B3A9CBABBE3DA89E2E648C5;
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.Collider>
struct IEqualityComparer_1_t8B0F38FEDBDCD41E8338626B9114DF3410322BAD;
// System.Collections.Generic.IEqualityComparer`1<System.Object>
struct IEqualityComparer_1_t2CA7720C7ADCCDECD3B02E45878B4478619D5347;
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct IEqualityComparer_1_t08FFB2ECC83241CE72B572E272E5998CF10D20D7;
// System.Collections.Generic.IList`1<UnityEngine.UI.Graphic>
struct IList_1_t2238CF6AA19EFAD01A7B41136DDC843E17449487;
// System.Collections.Generic.IList`1<UnityEngine.RaycastHit>
struct IList_1_tA14E322084A8AB9634C6810B785AA33EBEA2DA71;
// System.Collections.Generic.IList`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>
struct IList_1_t9BE9FB858F247BE1CD763169A7A7F9B7FB4C4C03;
// UnityEngine.InputSystem.InputControl`1<UnityEngine.Vector2>
struct InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66;
// UnityEngine.InputSystem.InputProcessor`1<System.Single>
struct InputProcessor_1_tFE49B42CB371A9A2A3F29802695BD251947AD0B4;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector2>
struct InputProcessor_1_tD1A40E0E5825AAABC3416EC96E087FF6E6351DD2;
// System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct KeyCollection_t9ED22F75083E018400D95242720ED67405B216D9;
// System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,System.Single>
struct KeyCollection_tA54C7D44AD999AAF455DC641371F8B019EBED492;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>
struct List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F;
// System.Collections.Generic.List`1<UnityEngine.Collider>
struct List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>
struct List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3;
// System.Collections.Generic.List`1<UnityEngine.GameObject>
struct List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// System.Collections.Generic.List`1<UnityEngine.RaycastHit>
struct List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>
struct List_1_t8292C421BBB00D7661DC07462822936152BAB446;
// System.Collections.Generic.List`1<UnityEngine.Transform>
struct List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D;
// System.Collections.Generic.List`1<System.UInt64>
struct List_1_tB88E7361EE76DFB3EBB7FCD60CC59ACC3E48C284;
// System.Collections.Generic.List`1<UnityEngine.Vector3>
struct List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController>
struct List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct List_1_t02510C493B34D49F210C22C40442D863A08509CB;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>
struct List_1_tC6684CD164AA8009B3DC3C06499A47813321B877;
// System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem>
struct List_1_t90832B88D7207769654164CC28440CF594CC397D;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRInteractionManager>
struct List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>
struct List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRRayInteractor/SamplePoint>
struct List_1_tC0F6311D5ACC55EC4184D225E50673DBDAC555BD;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>
struct List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>
struct List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<System.Object>
struct RegistrationList_1_t99EE15A7482978101DC3214641F5003F17001659;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>
struct RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>
struct TweenRunner_1_t5BB0582F926E75E2FE795492679A6CF55A4B4BC4;
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.ActivateEventArgs>
struct UnityEvent_1_tEC38375A3667634400B758463CD6936646CE1ED8;
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.DeactivateEventArgs>
struct UnityEvent_1_tE847E7CEE2FFE0AFBB1D8E8F6D62843F7AF62E40;
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs>
struct UnityEvent_1_tF375C8038EBFFA6D72A05014787BE5CDB0A95008;
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs>
struct UnityEvent_1_t4B30B07A73CFB8205961561C2945408585355F26;
// UnityEngine.Events.UnityEvent`1<System.Object>
struct UnityEvent_1_t3CE03B42D5873C0C0E0692BEE72E1E6D5399F205;
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs>
struct UnityEvent_1_t8C99CC340A51BB1718EAC4102D4F90EE78F667F8;
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs>
struct UnityEvent_1_t6653C165067CA012C0771D17D5AF3506C58F446B;
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct UnityEvent_1_tD0BC7F894F453C8793ED59E99D035F8314FF379A;
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>
struct UnityEvent_1_tA1FEDF2DDBADC48134C49F2E20E0FC2BA29AA88D;
// System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct ValueCollection_t20E271ED065DA8068C16CB241D04D4A8AFFC2938;
// System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,System.Single>
struct ValueCollection_tF5122DF6C660356E4FED4204C7AFD3B3CA7B05EB;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext>[]
struct Action_1U5BU5D_tB846E6FE2326CCD34124D1E5D70117C9D33DEE76;
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>[]
struct EntryU5BU5D_t3A85807AB363884DD8C6FE714B79FF60C42037A1;
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,System.Single>[]
struct EntryU5BU5D_tF338294DD5887C9D6F75A61453E802C05D2D9EAF;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2>[]
struct InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91;
// UnityEngine.InputSystem.InputProcessor`1<System.Single>[]
struct InputProcessor_1U5BU5D_tFEE411B67EEAA6B997AF875A65D072993C8C809C;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector2>[]
struct InputProcessor_1U5BU5D_t5083205703ED9D1A4B8037E3BBE765389957231A;
// System.Collections.Generic.HashSet`1/Slot<UnityEngine.Collider>[]
struct SlotU5BU5D_tFD1ED8602EB3B39B776AC7E6675E844223612CFB;
// System.Collections.Generic.HashSet`1/Slot<System.Object>[]
struct SlotU5BU5D_tF596AD324082C553DB364C768406A40BB3C85343;
// System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>[]
struct SlotU5BU5D_t26795EBAC2F34E70E788A2A6E05DBEA3B8B547B0;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// UnityEngine.Collider[]
struct ColliderU5BU5D_t94A9D70F63D095AFF2A9B4613012A5F7F3141787;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// UnityEngine.GameObject[]
struct GameObjectU5BU5D_tFF67550DFCE87096D7A3734EA15B75896B2722CF;
// UnityEngine.InputSystem.InputBinding[]
struct InputBindingU5BU5D_t7E47E87B9CAE12B6F6A0659008B425C58D84BB57;
// UnityEngine.InputSystem.InputControl[]
struct InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// UnityEngine.InputSystem.Utilities.InternedString[]
struct InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// UnityEngine.RaycastHit[]
struct RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8;
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7;
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// UnityEngine.Touch[]
struct TouchU5BU5D_t242545870BFCA81F368CCF82E00F9E2A7FB523B3;
// System.UInt32[]
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C;
// UnityEngine.XR.Interaction.Toolkit.XRBaseController[]
struct XRBaseControllerU5BU5D_t7430D58AA0DBDF3ED0A869D7D66049EC3723EFAE;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable[]
struct XRBaseInteractableU5BU5D_t242A3371CAFC93149FCDABF9F7F5B856CA2688B2;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor[]
struct XRBaseInteractorU5BU5D_tCAA441DE26B99B099BB0F15C5BFB8E547F7F51F6;
// UnityEngine.XR.XRInputSubsystem[]
struct XRInputSubsystemU5BU5D_t224A541B4C0D2E3253E4D68ADF4F824AC587B11C;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager[]
struct XRInteractionManagerU5BU5D_tF4049A42C4501CAB5ADCE0FC96F0DB1173D4B6B4;
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo[]
struct ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData[]
struct RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F;
// UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor[]
struct RegisteredInteractorU5BU5D_t33AC6CD1C7F2D832B7436B5E1F4F4914E9F078B7;
// UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch[]
struct RegisteredTouchU5BU5D_tC266F7A4629252045ECEBE7BFA7219C15AF92FD7;
// UnityEngine.XR.Interaction.Toolkit.AR.ARGestureInteractor
struct ARGestureInteractor_t5F50A16286B9051118C926B6C44BAECE78F81745;
// UnityEngine.XR.ARFoundation.ARSessionOrigin
struct ARSessionOrigin_tE7B28A1A19500BCC02711397A19E330425830BC3;
// UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider
struct ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E;
// UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider
struct ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7;
// UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider
struct ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9;
// UnityEngine.XR.Interaction.Toolkit.ActivateEvent
struct ActivateEvent_tA1D392B588AC99958CB847AE6911DC5131BCFB43;
// UnityEngine.XR.Interaction.Toolkit.ActivateEventArgs
struct ActivateEventArgs_tAC81C18EA24D76411EE5A5D61523A551CCB46C3E;
// UnityEngine.Animator
struct Animator_t8A52E42AE54F76681838FE9E632683EF3952E883;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
// UnityEngine.AudioClip
struct AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20;
// UnityEngine.AudioSource
struct AudioSource_t871AC2272F896738252F04EE949AEF5B241D3299;
// UnityEngine.InputSystem.Controls.AxisControl
struct AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7;
// UnityEngine.EventSystems.AxisEventData
struct AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938;
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F;
// UnityEngine.EventSystems.BaseInput
struct BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622;
// UnityEngine.EventSystems.BaseInputModule
struct BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1;
// UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs
struct BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E;
// UnityEngine.Experimental.XR.Interaction.BasePoseProvider
struct BasePoseProvider_t55E2883DF2C8052200284D64B68471636876FA1D;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832;
// UnityEngine.XR.Interaction.Toolkit.BaseRegistrationEventArgs
struct BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21;
// UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable
struct BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8;
// UnityEngine.Behaviour
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA;
// UnityEngine.InputSystem.Controls.ButtonControl
struct ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF;
// UnityEngine.Camera
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184;
// UnityEngine.Canvas
struct Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26;
// UnityEngine.CanvasRenderer
struct CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860;
// UnityEngine.CharacterController
struct CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A;
// UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver
struct CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C;
// UnityEngine.Collider
struct Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76;
// UnityEngine.Component
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3;
// UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase
struct ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A;
// UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase
struct ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A;
// UnityEngine.Coroutine
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B;
// UnityEngine.XR.Interaction.Toolkit.DeactivateEvent
struct DeactivateEvent_tFE44262C3D8377F947FD46D4561BB9DAC7E0785D;
// UnityEngine.XR.Interaction.Toolkit.DeactivateEventArgs
struct DeactivateEventArgs_t7AE1163C39B5B95A4501EC961D8D643C369774D0;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider
struct DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC;
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider
struct DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118;
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider
struct DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466;
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707;
// UnityEngine.GameObject
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F;
// UnityEngine.UI.Graphic
struct Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931;
// UnityEngine.XR.Interaction.Toolkit.HoverEnterEvent
struct HoverEnterEvent_t2BDBCA14FF94DA18C9AC12B43297F6C1641788AB;
// UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs
struct HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E;
// UnityEngine.XR.Interaction.Toolkit.HoverExitEvent
struct HoverExitEvent_t256704BC79FE0AA61EB2DE3FDDF43A1FC97F5832;
// UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs
struct HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6;
// System.IAsyncResult
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
// UnityEngine.EventSystems.IBeginDragHandler
struct IBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB;
// UnityEngine.EventSystems.ICancelHandler
struct ICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// UnityEngine.EventSystems.IDragHandler
struct IDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D;
// UnityEngine.EventSystems.IDropHandler
struct IDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35;
// UnityEngine.EventSystems.IEndDragHandler
struct IEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9;
// System.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// UnityEngine.EventSystems.IEventSystemHandler
struct IEventSystemHandler_t050874E4CAEDCBA7E792A19EE3405EA443AE36B5;
// UnityEngine.EventSystems.IInitializePotentialDragHandler
struct IInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E;
// UnityEngine.EventSystems.IMoveHandler
struct IMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB;
// UnityEngine.EventSystems.IPointerClickHandler
struct IPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8;
// UnityEngine.EventSystems.IPointerDownHandler
struct IPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573;
// UnityEngine.EventSystems.IPointerEnterHandler
struct IPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F;
// UnityEngine.EventSystems.IPointerExitHandler
struct IPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE;
// UnityEngine.EventSystems.IPointerUpHandler
struct IPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210;
// UnityEngine.EventSystems.IScrollHandler
struct IScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F;
// UnityEngine.EventSystems.ISubmitHandler
struct ISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75;
// UnityEngine.ISubsystemDescriptor
struct ISubsystemDescriptor_tEF29944D579CC7D70F52CB883150735991D54E6E;
// UnityEngine.XR.Interaction.Toolkit.UI.IUIInteractor
struct IUIInteractor_t5E87AB04096E6A5D1AF1D291E2096599065E94EA;
// UnityEngine.EventSystems.IUpdateSelectedHandler
struct IUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC;
// UnityEngine.InputSystem.InputAction
struct InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD;
// UnityEngine.InputSystem.InputActionMap
struct InputActionMap_tFCE82E0E014319D4DED9F8962B06655DD0420A09;
// UnityEngine.InputSystem.InputActionReference
struct InputActionReference_t64730C6B41271E0983FC21BFB416169F5D6BC4A1;
// UnityEngine.InputSystem.InputDevice
struct InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B;
// UnityEngine.InputSystem.Controls.IntegerControl
struct IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB;
// UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs
struct InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D;
// UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs
struct InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21;
// UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs
struct InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775;
// UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs
struct InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93;
// UnityEngine.Events.InvokableCallList
struct InvokableCallList_t309E1C8C7CE885A0D2F98C84CEA77A8935688382;
// UnityEngine.XR.Interaction.Toolkit.LocomotionProvider
struct LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B;
// UnityEngine.XR.Interaction.Toolkit.LocomotionSystem
struct LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B;
// UnityEngine.Material
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
// UnityEngine.Mesh
struct Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71;
// UnityEngine.InputSystem.Mouse
struct Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel
struct MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729;
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
// UnityEngine.Object
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
// UnityEngine.Events.PersistentCallGroup
struct PersistentCallGroup_tB826EDF15DC80F71BCBCD8E410FD959A04C33F25;
// UnityEngine.InputSystem.Pointer
struct Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A;
// UnityEngine.EventSystems.PointerEventData
struct PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB;
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023;
// UnityEngine.RectTransform
struct RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// UnityEngine.XR.Interaction.Toolkit.SelectEnterEvent
struct SelectEnterEvent_tBA2614C8C25D8794D5804C4F66195D74E64FC5D0;
// UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs
struct SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938;
// UnityEngine.XR.Interaction.Toolkit.SelectExitEvent
struct SelectExitEvent_t15DC0A39F9657BA9E6BAE6250D8D64C9671201F6;
// UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs
struct SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
// UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase
struct SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706;
// System.String
struct String_t;
// UnityEngine.XR.Interaction.Toolkit.TeleportationAnchor
struct TeleportationAnchor_t5C73F0B7F59911E6F9F98FA9156ECBC6E9DD9085;
// UnityEngine.XR.Interaction.Toolkit.TeleportationArea
struct TeleportationArea_t4E760401D8B7EBAA17DD75E248517C0ECBB608FD;
// UnityEngine.XR.Interaction.Toolkit.TeleportationProvider
struct TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972;
// UnityEngine.Texture2D
struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData
struct TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster
struct TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster
struct TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542;
// UnityEngine.Transform
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1;
// UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor
struct TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2;
// UnityEngine.EventSystems.UIBehaviour
struct UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D;
// UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule
struct UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7;
// UnityEngine.Events.UnityAction
struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7;
// UnityEngine.InputSystem.Controls.Vector2Control
struct Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432;
// UnityEngine.UI.VertexHelper
struct VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// UnityEngine.XR.Interaction.Toolkit.XRBaseController
struct XRBaseController_t44C1BB30A7E1D279DD2508F34D3352B33A9AD60C;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable
struct XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor
struct XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158;
// UnityEngine.XR.Interaction.Toolkit.XRController
struct XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F;
// UnityEngine.XR.Interaction.Toolkit.XRControllerState
struct XRControllerState_tC34C40CB942A51408D8799940A87A6AD87218B50;
// UnityEngine.XR.XRInputSubsystem
struct XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34;
// UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent
struct XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager
struct XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD;
// UnityEngine.XR.Interaction.Toolkit.XRInteractorEvent
struct XRInteractorEvent_tA90E755406526412871F25BB621E7F4536CD00E2;
// UnityEngine.XR.Interaction.Toolkit.XRRayInteractor
struct XRRayInteractor_t0B25C1D5A938B199A71908E189AB351B43DA4C76;
// UnityEngine.XR.Interaction.Toolkit.XRRig
struct XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F;
// UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule
struct XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0;
// UnityEngine.Camera/CameraCallback
struct CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD;
// UnityEngine.Canvas/WillRenderCanvases
struct WillRenderCanvases_tA4A6E66DBA797DCB45B995DBA449A9D1D80D0FBC;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData
struct ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData
struct InternalData_t7100B940380492C19774536244433DFD434CEB1F;
// UnityEngine.RectTransform/ReapplyDrivenProperties
struct ReapplyDrivenProperties_t3482EA130A01FF7EE2EEFE37F66A5215D08CFE24;
// UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData
struct ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitComparer
struct RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData
struct ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment
struct RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitComparer
struct RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485;
// UnityEngine.XR.Interaction.Toolkit.XRRayInteractor/RaycastHitComparer
struct RaycastHitComparer_tC59C36D577B7426F5EE8E3AE65B988F953757E9D;
// UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41
struct U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F;
IL2CPP_EXTERN_C RuntimeClass* ARBaseGestureInteractable_t7FF715FA0E5BE6C9F48E9869A7B0F4819913832D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GraphicRegistry_t374118CCD6DBB47209C783A4BF2F4EF9EA78A326_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tD07C4C2285E515DD62CEE90036AB7E2AB1493329_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_t2238CF6AA19EFAD01A7B41136DDC843E17449487_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IUIInteractor_t5E87AB04096E6A5D1AF1D291E2096599065E94EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputTracking_tA4F34D4D5EC8E560B56ED295177C040D9C9815F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t02510C493B34D49F210C22C40442D863A08509CB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t90832B88D7207769654164CC28440CF594CC397D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Physics2D_t64C0DB5246067DAC2E83A52558A0AC68AF3BE94D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SubsystemManager_t9A7261E4D0B53B996F04B8707D8E1C33AB65E824_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TrackingOriginModeFlags_t04723708FB00785CE6A9CDECBB4501ADAB612C4F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRDevice_tD076A68EFE413B3EEEEA362BE0364A488B58F194_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRRayInteractor_t0B25C1D5A938B199A71908E189AB351B43DA4C76_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral05D2BB9344DD7A738CCBCDD75D33B0D0570910C7;
IL2CPP_EXTERN_C String_t* _stringLiteral10299BBC0EE96E8A5A3A9883B7C9339993D3178D;
IL2CPP_EXTERN_C String_t* _stringLiteral123021283C86F7442C90B6534FA522D911ED52F0;
IL2CPP_EXTERN_C String_t* _stringLiteral158003F3B0068EC5584C556DC293875DEC922AA4;
IL2CPP_EXTERN_C String_t* _stringLiteral21BABB7D4D81546003053B7D1D3E1523E82A424A;
IL2CPP_EXTERN_C String_t* _stringLiteral22A30FA2C4B05E273045B128442E086407BE1736;
IL2CPP_EXTERN_C String_t* _stringLiteral24B00BEE43751066E2697652F1D6D262C07E28BF;
IL2CPP_EXTERN_C String_t* _stringLiteral28F8F68B4BB9ACC9AAE15DDB501D55F17BB42C31;
IL2CPP_EXTERN_C String_t* _stringLiteral3708CDBCC9F390AB99D52FE7DEE4724401B69B9F;
IL2CPP_EXTERN_C String_t* _stringLiteral38500B43596E22322F78E4DB6623115A6D7C5B24;
IL2CPP_EXTERN_C String_t* _stringLiteral3FC2493A341A7326758E941659C41320B80163AA;
IL2CPP_EXTERN_C String_t* _stringLiteral47A3FAF17D89549FD0F0ECA7370B81F7C80DFCDE;
IL2CPP_EXTERN_C String_t* _stringLiteral51282E2AAC09AC6EDBC2C1C237C0183F97FEE379;
IL2CPP_EXTERN_C String_t* _stringLiteral558296ACB55EF55350E59F922EE5DD3735E5F58F;
IL2CPP_EXTERN_C String_t* _stringLiteral62FF5A56A78D9B2886C0EE19B03777E09C6AF38F;
IL2CPP_EXTERN_C String_t* _stringLiteral64E0432DA4B16B23C2833BED3FAE782B7A0B2FC3;
IL2CPP_EXTERN_C String_t* _stringLiteral67D793F7DD951BDE60D6852D926F85A806B85905;
IL2CPP_EXTERN_C String_t* _stringLiteral70A7C4E13A35934A82D9F7983DC74553A1AA381C;
IL2CPP_EXTERN_C String_t* _stringLiteral70BD96A9936A8229937A8E85846B5AE5657B701D;
IL2CPP_EXTERN_C String_t* _stringLiteral73B13DE9817379145386BC6ECC87E983FC8ED41A;
IL2CPP_EXTERN_C String_t* _stringLiteral74496F496F80DB57FCB64359D5EECBB9D18B184B;
IL2CPP_EXTERN_C String_t* _stringLiteral754BC8CC289786CFBEFC86F613F47EEC45C9D500;
IL2CPP_EXTERN_C String_t* _stringLiteral7D61FA9D9BE7581D7E2EE28C775ABE0D4B8C3D69;
IL2CPP_EXTERN_C String_t* _stringLiteral805CCC40BBBCD72FEA9E12C8D3D97C4C0DF4854C;
IL2CPP_EXTERN_C String_t* _stringLiteral88998030542C6C1718157372A22A6ECE3A3D626E;
IL2CPP_EXTERN_C String_t* _stringLiteral8969EB5D95266774FB0F523AF194CCF87BFF4ED5;
IL2CPP_EXTERN_C String_t* _stringLiteral9AB16B3999460DDC981865934D979087351A14F2;
IL2CPP_EXTERN_C String_t* _stringLiteral9C35FAEF7B79D4213EA3410ACE98B0ABCB6AFC36;
IL2CPP_EXTERN_C String_t* _stringLiteralA1FCC06F5360EA4295129C9BF8A6A1F6E4E6D69E;
IL2CPP_EXTERN_C String_t* _stringLiteralAABE0CC8BF39C5F9EB98EB75DD612B119D748448;
IL2CPP_EXTERN_C String_t* _stringLiteralAC10ECED701E479DB1EB99F71C7E143BF33BDB28;
IL2CPP_EXTERN_C String_t* _stringLiteralB25CF1C6B74339FBFCE846454A70688CE58C094C;
IL2CPP_EXTERN_C String_t* _stringLiteralB2C75D248B73997F69BDC94ABA3EF5AF89482C94;
IL2CPP_EXTERN_C String_t* _stringLiteralB387D42F0AFA94CE7B6979B587B90DD3FE6E03AE;
IL2CPP_EXTERN_C String_t* _stringLiteralB4FE860573CD6E03F0D1A4378C1F330A3820D8C9;
IL2CPP_EXTERN_C String_t* _stringLiteralB85E78C75EF1A6F636689BD88A9D6C2A3B2B0A1B;
IL2CPP_EXTERN_C String_t* _stringLiteralC0E522E41B31F469B561B936335484000D89DE4A;
IL2CPP_EXTERN_C String_t* _stringLiteralC5505A25CF2D095FDF8936A52047CE843140CE71;
IL2CPP_EXTERN_C String_t* _stringLiteralC8E762418D8614D739AB43D7D2C189A29AF1145F;
IL2CPP_EXTERN_C String_t* _stringLiteralD0A4B6BECBDFE344C3B7A5949F632D0AA983740C;
IL2CPP_EXTERN_C String_t* _stringLiteralD16A9DF72BFEC4E1FE988C88F5BDD0AD253C6570;
IL2CPP_EXTERN_C String_t* _stringLiteralD8FEC942054577466215DA5251FB602E014D433B;
IL2CPP_EXTERN_C String_t* _stringLiteralD9A3C43474C0EAB770FFF7FD263A144E80AA265A;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDB2CE0DC7BF0370A44E461DE22DBF1CBD09F5C13;
IL2CPP_EXTERN_C String_t* _stringLiteralDB36C73AC59552C971E8B7F3DCAF85C9D10347F9;
IL2CPP_EXTERN_C String_t* _stringLiteralDB7C728E2B8F33B73AF48C0C23120A706EBFAB52;
IL2CPP_EXTERN_C String_t* _stringLiteralDF0B09D3AC2B1A403AD50571DE6D02BADF994DF6;
IL2CPP_EXTERN_C String_t* _stringLiteralE87E0289369699E3077923D9BD0365C6E47D2BCA;
IL2CPP_EXTERN_C String_t* _stringLiteralF797D8DDA6ABC6D470973A2DC2242CC250F44AE5;
IL2CPP_EXTERN_C String_t* _stringLiteralFA7A96BE3FB1ACF1C1B7A9FF75438F7ACB58DE06;
IL2CPP_EXTERN_C String_t* _stringLiteralFB47558977649C28EC4A4E03C031755E762B9CCA;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_m34572A2D485C4B87E3AADE940062C73D44F3E62F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_m6D24480D7E389B915C20866DC6A3BE7E48E919DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_mC17D7793688D010F3126A615FC594E301D0D7E73_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_mF62C32833A5CA3B6D70A0905F43517B44F778668_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_mFAD1E936D88D445859A758BFFC78F1C6EFC46BF5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_m06CD1A5164C93280C6A23D8435BF77A89B8E4B0F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_2_Invoke_m61417268186749514FEB09357684A88FE79CAC93_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_2_Invoke_m961AAC2DEDC2255C6D7BF986D32171707E2A1C20_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Resize_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mD5BCCA6C065C9A0784DDA90B211D93A05AF83339_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CharacterControllerDriver_OnBeginLocomotion_m524111528FE7083D44800E28EA2CCA0C7F4CFC6C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CharacterControllerDriver_OnEndLocomotion_m0FAAE4B4A7D0B5B4DF84D04C8AF737D78C92EB7B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Comparison_1__ctor_mD2DDA56B9090282D66F10976E281BE284F0209B7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m64AC6C06DD93C5FB249091FEC84FA8475457CCC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisCanvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26_m209BA4F663AB98A4504995B5BD3EADEDEFB92BF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A_m236FB899DE4FE15D29146811DF5A14B607A3A1A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m76E02C9B05790A97DCAA8FD976C5D699ACC36A06_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_m079CAFEFDB10EC87A1C25FC08BD32C3F1134A573_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_m40262E1F68FF034440AAFD97105127989FC01B4A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m7EB0E0CC4C6F660FCC0BF988C7CF08158EAA9D1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m05A7F101C863C57A729D38F2C1678CBA3FD3FCF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m09DA62123E32D2F4548D8180EC0ADFF29CFF5074_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m171CA807CFD9125876994104E2005D04F38AA95C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mE0F123D3CCC105693B04EE651053CD324DC2FD4A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m020DA30FB093D699CEAA4B02CFFC8971106167B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mA255F5E255E66993AEA236E6D1F2BD11AEDEA14F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m07D362A07C19B36C2FD1B4DC79DD99903D4DA95D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m2E1BCE0886AD98672E79E03B1DFBCC33E831052C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m376C7B614B2C84EDEA8F43A62438413574C26649_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m75FB25D8B11134C9C4066F72FA6AC6E8A9F2258A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m984D421A36C91A4FA622218385CB4346C9411DF3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mB4EDC66D3E8011A4ED117827EB18BEAD7B269CB6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mFBDA2B2BB848674E3458E8F995047979D6A956F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2769E67BF3F70EE5E543F882C4C77FFDDA59EF11_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m43BF1149292892E0A147B31279D198F4ABA5D952_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m8813B70B0648CF6A6D0FBFAC93417D0BF62C140E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m96F4B0BD0A5485C8E8CC57D961DF6F1FA256AF27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD434DF7C6AE02F45F424CB0EB0BA8F955F226687_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mDFD000D29E07CFC47B33BAF84EFC4EE39184368A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE30AF5FEE3FA912E634BD92B4970FB75BEED9664_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m10F66F13C7B3FA8C93CAAF4A0D26B9695EB8F9B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m4EB063F639AF28B245521BD522C30F593726BBB7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m7236EBE1CFCB6533F96E030500D322B13D0CA5A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mC1A1FC2C5810F5F0D86FCA778FC392FE71DC8AA7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mCD34ACB6BE5F6BEEEE297AD23C2C1FC1174813FF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mEBE35085F23AD21C6E36B9EFAED53B414317CE31_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mF52B0FA8838B2C802DCDD385FB2BFC7B5110F390_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m4C9DA44082FBE5886FBFBFE66CBC89771C7971C5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mAAB1B55CF77D247B61D04981A59169EFFE9E0AFD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_mBF61EACBCD0DBA4546054C1E27DEBABE226AEB6D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_m186924444C6950BA260CFE27CEFE0F76402342A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_m3EEA2668A4CEA1DDF898B25C4034B2A123522203_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m0E5281FDDCB78D969625ECB14A393CA5D572C3A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_mF257FA331CEC3705FC5A620859468C5B9AF0F756_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_m3C0AB91A07534AE98AC11E5B57F40BFF17544993_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_m578F2B752399D9C98215CF361BB2A4A2180FC7E8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_mB18F35F748E39943F1C1AE45EE7D15EBDF39833D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m1213F2A971A7A51A5ECC489D28744318D57355EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m8ED3323A06D78E8415B7A71D7EF4233770B49FAC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_m9FC5FE3B9CC6D87743F88BD3B2B437653DF82673_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_m21432792D94516E85BA189CAC8DB4C6C0A946C25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m29048196EE9931B2E91B895CA98BCBBE2418E0B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m7F91F49169EDCAE4A288B31A5E5DE7600BEC5952_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m7B3F3A069FC951B1807EE83D8EE034137BBE248F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m06334DCDF81CE782B175B591853E95AEE623A740_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m24416E302B1BDD2CCDDB58B1E20423E4B02F2D7A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisCharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A_m4848A6B0B029AE9B1F4FE4CC1FDE5E3CF030D325_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisIEventSystemHandler_t050874E4CAEDCBA7E792A19EE3405EA443AE36B5_m92329A00F346E4869E58F27F69886E60D43A3F53_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_m8F91FD4088E131696D75A31DF6A17F7204B07C37_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Clear_m60D5575FEC3B4BA030ECA79F40952F7A6FAF425B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Contains_m1E6C922FF221537A47E8526FC09741D893BEF324_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Contains_m39CBC6F250AA52AB65D1D155D740C35A6072245F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_GetEnumerator_mEEC525C8B84ED95D0F8FC4BB677A53CFF2117D00_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Remove_m5DFAA82D84865660E1D5FA8BBF27AED9A390EF2D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Remove_mF49EBE1351C8F52E2EF711118423B90BD6CD74C5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_m67D0471240C68496D5D4CF51915F03455FD5AB4F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_mD2808C0A1FC4A9BC48EDB86348A1FDBDE7F33C11_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_get_Count_m6DCD41ED4CF35B3625B468EF2E8BD97E1E72E2C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputControl_1_ReadValue_m362E05F00FE8CF8FC52F0D673291907EC7FA6541_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputFeatureUsage_1__ctor_m6357AF3E3C16046E807776AA58473ABC83F88989_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputFeatureUsage_1__ctor_mEB36F8937385A1065CD9F48AE2DAD9EAE49EFCE7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputHelpers_IsPressed_mD0516F35AE1B3765A098C89EDBC1E5F1E68144E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m3EE91401838D1F361844DF4F85724FB69CF93E67_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m06E7BBAD0E1AC28E9F9E403F1A5B7E56D2343F78_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m8E9878CB260E91008DF9EBD16392E9B92D08093E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mE1066F7F49419B6C26CA7685407062B5A484F0FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m2B08809ACCCD8B2CAF21468D0671EB5643A4A2CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m43FBF207375C6E06B8C45ECE614F9B8008FB686E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m45F907169865B34600173F8463808BC00FE4120B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m67ADCB698F31486B35CF5DB4CFB1E97EB807FEFD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mAC275A6AD5BAF441B0B613B730F3CB6DFC5351A5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mE6C474BBCAFBE5F68FF0E6FF95C034FE7AD19956_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m39CF62A1FA54AAD0EE4BC97B663FA35E0C754B21_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m455780C5A45049F9BDC25EAD3BA10A681D16385D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m567A0E8ADE485441540D5B46AB6C518558DDA2FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mBB1C1097E6EAB4F19E432E94B29D294EC9313A1F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mEF6F24F9B19B3360DC8CAAD446C7696B33FC39B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m98886FC8DF151AF831AD3B47051966D509D484E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mA843D26C63E5963415DFCA6E49DFA27AFD9C75E8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mD7750792B348A44331FAA1F78D8608F585823A50_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mDD871A2334871E99D82AAD9D0843B05D712F8799_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mFCC042FED9DAA11ED85796F500191258E8EEE306_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m98D513CB3B528DDFCA9B1AA0C9A6350C06299C1F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_mD1B83CE5C1865EA57FFDC6B54A38BD746329FF24_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_mC8F44A1040275FF01C54D3CA3DE9DF963B8B4507_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_mCCE85D4D5326536C4B214C73D07030F4CCD18485_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m256078382FC40045587959BD5B9AFAF789460CD1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m0CDD6F02F45026B4267E7117C5DDC188F87EE7BE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5E0E87678A3837CA7E7B32D1DC89E510829A97C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m724463B39B944A8F8354B96833F40DDC56293D8E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7715EBA40C1E9928D580B0D503FA394AB9503EFC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m8785F571D6882158F57F659B5C8842B1430E82BE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m94BD49CB8971447490F93532B823C4E4F3DAE5A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC249FC827BC3BE999A938F8B5BD884F8AA0CB7FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC54E2BCBE43279A96FC082F5CDE2D76388BD8F9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF3DDC40240537B6E9B272FDFF5F6335E97934C47_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF6CAC69CE096CD58F1DC4EDEB0927A8A83524BCB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m135A9F055811F521A15CDBBEBBC9B062F364EE49_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF8DDB0BDC273D655115D5E62307ADF657EC28DE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m8803B45B5906AB61810300959ED9133A62A29586_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mE3735CD7D71FB40C90C7625AEE4A7F16E2EEC53F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m977C691A5E504255565A1351BB052D5D238E20ED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_mEA01B6D51EE3751D4467647ED8D246D6B5F4F0C2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Object_FindObjectOfType_TisLocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B_m867D5A523EFB0B4B4A6226EBE9555249C65CF210_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Object_FindObjectOfType_TisTeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972_m59197783B83969B16374A3B8BE819108C6C9F049_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Object_FindObjectOfType_TisXRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_m204F4BA9167666E8C55752375D5587D40BAE9C06_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_Flush_m5917C42B2029F59B417BFDC752E08BB585063511_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_Flush_mFBEBA2CAF9F291947B6D1473B45AA010CB19E995_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_GetRegisteredItems_m1B926AF8964B1C5D223218C3D08486AFF6792CF7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_GetRegisteredItems_m7CD5E08831E2F32B03029FACF6586C2CD594928A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_IsRegistered_m9D9D660882469D157EEB9DE7915A910E9BD27288_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_IsRegistered_mF6023184299C85A52C86AE91C564809BB5B49E14_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_IsStillRegistered_m1E7ECF06FC7C79B6C8A8AD135D4B0BBAA74539D9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_IsStillRegistered_mE833446C9980E1D3ED1CF4DF9C99493D64D19D76_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_Register_m253E4BFE742E1612EEE8EDD487EA2BBFF08F08B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_Register_m7DCABDDB4796B0476939482CD2773B3AA8CE1734_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_Unregister_m64C6C400470922647AF50AD797FFF0AE0B128439_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_Unregister_mB689C6D9DF13F34D2096F76A4EC04C646D1CB12D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1__ctor_m0840E8D309F3A1153D845D204D33E34CBF66A9F4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1__ctor_mA1373140CD8C0A195EB37EAE8C06B5C097592295_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_get_registeredSnapshot_m4D9B2ADE24FB0068235042702F5E33CAEED329A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RegistrationList_1_get_registeredSnapshot_m9473E5BC5CD3C22F9C198C6984F11C6D20790FF0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SortingHelpers_InteractableDistanceComparison_m0D9C672112352117F140EF9F99E1113BA8B2041A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SortingHelpers_Sort_TisRaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_mF080C3925716C90E9068635B64500AB651DD46D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SortingHelpers_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mE36842A81DD293C053693681100FBDC73AF79D0D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemManager_GetInstances_TisXRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34_mEF47974C54AA515C3180A0AD3418F3E4037983EE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CRepeatInitializeCameraU3Ed__41_System_Collections_IEnumerator_Reset_m1954EDA34FDB2E32E388DFEBF546B7DB774800B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UIInputModule_PerformRaycast_m4716E7450EC96B541A924BB1DC20E58B2F159B28_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_m3AD21B8B26995B681EBEFE4D13BA498B4E61D7F6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_m6869722916D4191AE0CA5EA0785E7D3E1651D771_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_m9A22AE02370829BC50BCF8446C62BA97F6AEBF16_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_mA086380519C0EE2CA2F6E67ECE2E468346318190_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_mA5D691D0FA13310D1357A593DB2FE896066BB1DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_mAD6CA690018D1D4ED5CF39C974B9555205D306C3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_mD2633EF820530931EAF2FB29AB58956AEF611106_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_mF55C58688D34DDA5177764806B2CCEB5F28FAE0F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRInteractionManager_GetRegisteredInteractables_mDFF6CDD0AF4CFE2C1AA54011D5F42C7CEE1FE532_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRInteractionManager_GetRegisteredInteractors_m0380C9C368C156CA43AF42C0591E1DE07CB5D675_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRRig_OnInputSubsystemTrackingOriginUpdated_m36527BEC4D562F5EC58CAACDA032E28BFBF314EE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRRig_get_trackingSpace_mAD4C6A905AAD431C0EB1779264C6A833473ACE34_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRRig_set_trackingSpace_mCF3CE580D184B437E7241A6A6F6C8B57276D9D2C_RuntimeMethod_var;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D;;
struct ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_com;
struct ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_com;;
struct ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_pinvoke;
struct ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_pinvoke;;
struct ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC;;
struct ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_com;
struct ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_com;;
struct ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_pinvoke;
struct ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_pinvoke;;
struct ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3;;
struct ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_com;
struct ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_com;;
struct ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_pinvoke;
struct ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_pinvoke;;
struct InternalData_t7100B940380492C19774536244433DFD434CEB1F;;
struct InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_com;
struct InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_com;;
struct InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_pinvoke;
struct InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_pinvoke;;
struct MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729;;
struct MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com;
struct MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com;;
struct MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke;
struct MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke;;
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023;;
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com;
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com;;
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke;
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke;;
struct InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8;
struct RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7;
struct RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7;
struct TouchU5BU5D_t242545870BFCA81F368CCF82E00F9E2A7FB523B3;
struct Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C;
struct ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC;
struct RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F;
struct RegisteredInteractorU5BU5D_t33AC6CD1C7F2D832B7436B5E1F4F4914E9F078B7;
struct RegisteredTouchU5BU5D_tC266F7A4629252045ECEBE7BFA7219C15AF92FD7;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_t3A85807AB363884DD8C6FE714B79FF60C42037A1* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_t9ED22F75083E018400D95242720ED67405B216D9* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t20E271ED065DA8068C16CB241D04D4A8AFFC2938* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,System.Single>
struct Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_tF338294DD5887C9D6F75A61453E802C05D2D9EAF* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_tA54C7D44AD999AAF455DC641371F8B019EBED492* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_tF5122DF6C660356E4FED4204C7AFD3B3CA7B05EB* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.HashSet`1<UnityEngine.Collider>
struct HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.HashSet`1::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_7;
// System.Collections.Generic.HashSet`1/Slot<T>[] System.Collections.Generic.HashSet`1::_slots
SlotU5BU5D_tFD1ED8602EB3B39B776AC7E6675E844223612CFB* ____slots_8;
// System.Int32 System.Collections.Generic.HashSet`1::_count
int32_t ____count_9;
// System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
int32_t ____lastIndex_10;
// System.Int32 System.Collections.Generic.HashSet`1::_freeList
int32_t ____freeList_11;
// System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
RuntimeObject* ____comparer_12;
// System.Int32 System.Collections.Generic.HashSet`1::_version
int32_t ____version_13;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ____siInfo_14;
};
// System.Collections.Generic.HashSet`1<System.Object>
struct HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.HashSet`1::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_7;
// System.Collections.Generic.HashSet`1/Slot<T>[] System.Collections.Generic.HashSet`1::_slots
SlotU5BU5D_tF596AD324082C553DB364C768406A40BB3C85343* ____slots_8;
// System.Int32 System.Collections.Generic.HashSet`1::_count
int32_t ____count_9;
// System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
int32_t ____lastIndex_10;
// System.Int32 System.Collections.Generic.HashSet`1::_freeList
int32_t ____freeList_11;
// System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
RuntimeObject* ____comparer_12;
// System.Int32 System.Collections.Generic.HashSet`1::_version
int32_t ____version_13;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ____siInfo_14;
};
// System.Collections.Generic.HashSet`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.HashSet`1::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_7;
// System.Collections.Generic.HashSet`1/Slot<T>[] System.Collections.Generic.HashSet`1::_slots
SlotU5BU5D_t26795EBAC2F34E70E788A2A6E05DBEA3B8B547B0* ____slots_8;
// System.Int32 System.Collections.Generic.HashSet`1::_count
int32_t ____count_9;
// System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
int32_t ____lastIndex_10;
// System.Int32 System.Collections.Generic.HashSet`1::_freeList
int32_t ____freeList_11;
// System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
RuntimeObject* ____comparer_12;
// System.Int32 System.Collections.Generic.HashSet`1::_version
int32_t ____version_13;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ____siInfo_14;
};
// System.Collections.Generic.List`1<UnityEngine.Collider>
struct List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ColliderU5BU5D_t94A9D70F63D095AFF2A9B4613012A5F7F3141787* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ColliderU5BU5D_t94A9D70F63D095AFF2A9B4613012A5F7F3141787* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.GameObject>
struct List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
GameObjectU5BU5D_tFF67550DFCE87096D7A3734EA15B75896B2722CF* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
GameObjectU5BU5D_tFF67550DFCE87096D7A3734EA15B75896B2722CF* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.RaycastHit>
struct List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>
struct List_1_t8292C421BBB00D7661DC07462822936152BAB446 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t8292C421BBB00D7661DC07462822936152BAB446_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.Vector3>
struct List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController>
struct List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
XRBaseControllerU5BU5D_t7430D58AA0DBDF3ED0A869D7D66049EC3723EFAE* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
XRBaseControllerU5BU5D_t7430D58AA0DBDF3ED0A869D7D66049EC3723EFAE* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct List_1_t02510C493B34D49F210C22C40442D863A08509CB : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
XRBaseInteractableU5BU5D_t242A3371CAFC93149FCDABF9F7F5B856CA2688B2* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t02510C493B34D49F210C22C40442D863A08509CB_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
XRBaseInteractableU5BU5D_t242A3371CAFC93149FCDABF9F7F5B856CA2688B2* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>
struct List_1_tC6684CD164AA8009B3DC3C06499A47813321B877 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
XRBaseInteractorU5BU5D_tCAA441DE26B99B099BB0F15C5BFB8E547F7F51F6* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tC6684CD164AA8009B3DC3C06499A47813321B877_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
XRBaseInteractorU5BU5D_tCAA441DE26B99B099BB0F15C5BFB8E547F7F51F6* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem>
struct List_1_t90832B88D7207769654164CC28440CF594CC397D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
XRInputSubsystemU5BU5D_t224A541B4C0D2E3253E4D68ADF4F824AC587B11C* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t90832B88D7207769654164CC28440CF594CC397D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
XRInputSubsystemU5BU5D_t224A541B4C0D2E3253E4D68ADF4F824AC587B11C* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRInteractionManager>
struct List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
XRInteractionManagerU5BU5D_tF4049A42C4501CAB5ADCE0FC96F0DB1173D4B6B4* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
XRInteractionManagerU5BU5D_tF4049A42C4501CAB5ADCE0FC96F0DB1173D4B6B4* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>
struct List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>
struct List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
RegisteredInteractorU5BU5D_t33AC6CD1C7F2D832B7436B5E1F4F4914E9F078B7* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
RegisteredInteractorU5BU5D_t33AC6CD1C7F2D832B7436B5E1F4F4914E9F078B7* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>
struct List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
RegisteredTouchU5BU5D_tC266F7A4629252045ECEBE7BFA7219C15AF92FD7* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
RegisteredTouchU5BU5D_tC266F7A4629252045ECEBE7BFA7219C15AF92FD7* ___s_emptyArray_5;
};
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<System.Object>
struct RegistrationList_1_t99EE15A7482978101DC3214641F5003F17001659 : public RuntimeObject
{
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::<registeredSnapshot>k__BackingField
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___U3CregisteredSnapshotU3Ek__BackingField_0;
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_BufferedAdd
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___m_BufferedAdd_1;
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_BufferedRemove
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___m_BufferedRemove_2;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedBufferedAdd
HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* ___m_UnorderedBufferedAdd_3;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedBufferedRemove
HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* ___m_UnorderedBufferedRemove_4;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedRegisteredSnapshot
HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* ___m_UnorderedRegisteredSnapshot_5;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedRegisteredItems
HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* ___m_UnorderedRegisteredItems_6;
};
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1 : public RuntimeObject
{
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::<registeredSnapshot>k__BackingField
List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___U3CregisteredSnapshotU3Ek__BackingField_0;
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_BufferedAdd
List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___m_BufferedAdd_1;
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_BufferedRemove
List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___m_BufferedRemove_2;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedBufferedAdd
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* ___m_UnorderedBufferedAdd_3;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedBufferedRemove
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* ___m_UnorderedBufferedRemove_4;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedRegisteredSnapshot
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* ___m_UnorderedRegisteredSnapshot_5;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedRegisteredItems
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* ___m_UnorderedRegisteredItems_6;
};
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>
struct RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52 : public RuntimeObject
{
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::<registeredSnapshot>k__BackingField
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* ___U3CregisteredSnapshotU3Ek__BackingField_0;
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_BufferedAdd
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* ___m_BufferedAdd_1;
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_BufferedRemove
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* ___m_BufferedRemove_2;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedBufferedAdd
HashSet_1_tC7E85EB40BBEE3F7DC60F565262B3118A20D3353* ___m_UnorderedBufferedAdd_3;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedBufferedRemove
HashSet_1_tC7E85EB40BBEE3F7DC60F565262B3118A20D3353* ___m_UnorderedBufferedRemove_4;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedRegisteredSnapshot
HashSet_1_tC7E85EB40BBEE3F7DC60F565262B3118A20D3353* ___m_UnorderedRegisteredSnapshot_5;
// System.Collections.Generic.HashSet`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1::m_UnorderedRegisteredItems
HashSet_1_tC7E85EB40BBEE3F7DC60F565262B3118A20D3353* ___m_UnorderedRegisteredItems_6;
};
// UnityEngine.EventSystems.AbstractEventData
struct AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7 : public RuntimeObject
{
// System.Boolean UnityEngine.EventSystems.AbstractEventData::m_Used
bool ___m_Used_0;
};
struct Il2CppArrayBounds;
// UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs
struct BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E : public RuntimeObject
{
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs::<interactor>k__BackingField
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___U3CinteractorU3Ek__BackingField_0;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs::<interactable>k__BackingField
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___U3CinteractableU3Ek__BackingField_1;
};
// UnityEngine.XR.Interaction.Toolkit.BaseRegistrationEventArgs
struct BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21 : public RuntimeObject
{
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager UnityEngine.XR.Interaction.Toolkit.BaseRegistrationEventArgs::<manager>k__BackingField
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___U3CmanagerU3Ek__BackingField_0;
};
// UnityEngine.EventSystems.ExecuteEvents
struct ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59 : public RuntimeObject
{
};
struct ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields
{
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerMoveHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerMoveHandler
EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* ___s_PointerMoveHandler_0;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerEnterHandler
EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* ___s_PointerEnterHandler_1;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerExitHandler
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* ___s_PointerExitHandler_2;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerDownHandler
EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* ___s_PointerDownHandler_3;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerUpHandler
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* ___s_PointerUpHandler_4;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerClickHandler
EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* ___s_PointerClickHandler_5;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_InitializePotentialDragHandler
EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* ___s_InitializePotentialDragHandler_6;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_BeginDragHandler
EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* ___s_BeginDragHandler_7;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_DragHandler
EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* ___s_DragHandler_8;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_EndDragHandler
EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* ___s_EndDragHandler_9;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler> UnityEngine.EventSystems.ExecuteEvents::s_DropHandler
EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* ___s_DropHandler_10;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler> UnityEngine.EventSystems.ExecuteEvents::s_ScrollHandler
EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* ___s_ScrollHandler_11;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler> UnityEngine.EventSystems.ExecuteEvents::s_UpdateSelectedHandler
EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* ___s_UpdateSelectedHandler_12;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISelectHandler> UnityEngine.EventSystems.ExecuteEvents::s_SelectHandler
EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA* ___s_SelectHandler_13;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDeselectHandler> UnityEngine.EventSystems.ExecuteEvents::s_DeselectHandler
EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690* ___s_DeselectHandler_14;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler> UnityEngine.EventSystems.ExecuteEvents::s_MoveHandler
EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* ___s_MoveHandler_15;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler> UnityEngine.EventSystems.ExecuteEvents::s_SubmitHandler
EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* ___s_SubmitHandler_16;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler> UnityEngine.EventSystems.ExecuteEvents::s_CancelHandler
EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* ___s_CancelHandler_17;
// System.Collections.Generic.List`1<UnityEngine.Transform> UnityEngine.EventSystems.ExecuteEvents::s_InternalTransformList
List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D* ___s_InternalTransformList_18;
};
// UnityEngine.XR.Interaction.Toolkit.GizmoHelpers
struct GizmoHelpers_t523DF2F7A9BD280F2251CBEF09F851B98EDA0286 : public RuntimeObject
{
};
// UnityEngine.XR.Interaction.Toolkit.InputHelpers
struct InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F : public RuntimeObject
{
};
struct InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_StaticFields
{
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo[] UnityEngine.XR.Interaction.Toolkit.InputHelpers::s_ButtonData
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* ___s_ButtonData_0;
};
// UnityEngine.XR.Interaction.Toolkit.SortingHelpers
struct SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8 : public RuntimeObject
{
};
struct SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_StaticFields
{
// System.Collections.Generic.Dictionary`2<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,System.Single> UnityEngine.XR.Interaction.Toolkit.SortingHelpers::s_InteractableDistanceSqrMap
Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F* ___s_InteractableDistanceSqrMap_0;
// System.Comparison`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.SortingHelpers::s_InteractableDistanceComparison
Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A* ___s_InteractableDistanceComparison_1;
};
// System.String
struct String_t : public RuntimeObject
{
// System.Int32 System.String::_stringLength
int32_t ____stringLength_4;
// System.Char System.String::_firstChar
Il2CppChar ____firstChar_5;
};
struct String_t_StaticFields
{
// System.String System.String::Empty
String_t* ___Empty_6;
};
// UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor
struct TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2 : public RuntimeObject
{
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::contactAdded
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* ___contactAdded_0;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::contactRemoved
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* ___contactRemoved_1;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::<interactionManager>k__BackingField
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___U3CinteractionManagerU3Ek__BackingField_2;
// System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::m_EnteredColliders
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* ___m_EnteredColliders_3;
// System.Collections.Generic.HashSet`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::m_UnorderedInteractables
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* ___m_UnorderedInteractables_4;
// System.Collections.Generic.HashSet`1<UnityEngine.Collider> UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::m_EnteredUnassociatedColliders
HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* ___m_EnteredUnassociatedColliders_5;
};
struct TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_StaticFields
{
// System.Collections.Generic.List`1<UnityEngine.Collider> UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::s_ScratchColliders
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* ___s_ScratchColliders_6;
};
// UnityEngine.Events.UnityEventBase
struct UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8 : public RuntimeObject
{
// UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls
InvokableCallList_t309E1C8C7CE885A0D2F98C84CEA77A8935688382* ___m_Calls_0;
// UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls
PersistentCallGroup_tB826EDF15DC80F71BCBCD8E410FD959A04C33F25* ___m_PersistentCalls_1;
// System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty
bool ___m_CallsDirty_2;
};
// System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
{
};
// UnityEngine.XR.Interaction.Toolkit.XRHelpURLConstants
struct XRHelpURLConstants_t2F5464521249727AD0B049AC7F5AA45A72808703 : public RuntimeObject
{
};
// UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder
struct XRInteractionUpdateOrder_t49B899B0925D60536161206295C021D26A81079B : public RuntimeObject
{
};
// UnityEngine.YieldInstruction
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.YieldInstruction
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
{
};
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitComparer
struct RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F : public RuntimeObject
{
};
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment
struct RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C : public RuntimeObject
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::m_Count
int32_t ___m_Count_0;
// UnityEngine.RaycastHit[] UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::m_Hits
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___m_Hits_1;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::m_CurrentIndex
int32_t ___m_CurrentIndex_2;
};
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitComparer
struct RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485 : public RuntimeObject
{
};
// UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41
struct U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F : public RuntimeObject
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41::<>2__current
RuntimeObject* ___U3CU3E2__current_1;
// UnityEngine.XR.Interaction.Toolkit.XRRig UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41::<>4__this
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* ___U3CU3E4__this_2;
};
// System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.Collider>
struct Enumerator_t5E62D883610A9174D8971F153A9D3DB97CED7B3D
{
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1/Enumerator::_set
HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* ____set_0;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.HashSet`1/Enumerator::_current
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.Collider>
struct Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.GameObject>
struct Enumerator_t88BD1282EF117E59AACFC9EC55B89F0B9EDACE60
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ____current_3;
};
// System.Collections.Generic.HashSet`1/Enumerator<System.Object>
struct Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8
{
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1/Enumerator::_set
HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* ____set_0;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.HashSet`1/Enumerator::_current
RuntimeObject* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<System.Object>
struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
RuntimeObject* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t02510C493B34D49F210C22C40442D863A08509CB* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>
struct Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.XRInputSubsystem>
struct Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t90832B88D7207769654164CC28440CF594CC397D* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* ____current_3;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext>>
struct InlinedArray_1_tC208D319D19C2B3DF550BD9CDC11549F23D8F91B
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_1U5BU5D_tB846E6FE2326CCD34124D1E5D70117C9D33DEE76* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<System.Single>>
struct InlinedArray_1_t2A86A6C75E0160EE14310E053C5249518871D847
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_tFE49B42CB371A9A2A3F29802695BD251947AD0B4* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_tFEE411B67EEAA6B997AF875A65D072993C8C809C* ___additionalValues_2;
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector2>>
struct InlinedArray_1_tE5F1062E65707D24360CEAC52E03D32C6E5BA8BB
{
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_tD1A40E0E5825AAABC3416EC96E087FF6E6351DD2* ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_t5083205703ED9D1A4B8037E3BBE765389957231A* ___additionalValues_2;
};
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean>
struct InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637
{
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.XR.Eyes>
struct InputFeatureUsage_1_tD3FEDCAE0D7F51C7B42182162ACE726E68166B38
{
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.XR.Hand>
struct InputFeatureUsage_1_t64C1AA42D6E8BD57C54C7E891BD79A70A0F3A170
{
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.XR.InputTrackingState>
struct InputFeatureUsage_1_t4EF7DDCAC35EE23BA72694AC2AB76CF4A879FFD9
{
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Quaternion>
struct InputFeatureUsage_1_t8489CEC68B1EC178F2634079A9D7CD9E90D3CF5D
{
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// UnityEngine.XR.InputFeatureUsage`1<System.Single>
struct InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848
{
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2>
struct InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C
{
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3>
struct InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58
{
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
#define InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com_define
struct InputFeatureUsage_1_t66EDAF8AFFA2E9DDC0248C48B76ADAB8E2728858_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// System.Collections.Generic.KeyValuePair`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct KeyValuePair_2_tA6D30FFB4692368D27138C35CCA0D714E3EF6ABA
{
// TKey System.Collections.Generic.KeyValuePair`2::key
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value_1;
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
{
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject* ___value_1;
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.ActivateEventArgs>
struct UnityEvent_1_tEC38375A3667634400B758463CD6936646CE1ED8 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
{
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.DeactivateEventArgs>
struct UnityEvent_1_tE847E7CEE2FFE0AFBB1D8E8F6D62843F7AF62E40 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
{
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs>
struct UnityEvent_1_tF375C8038EBFFA6D72A05014787BE5CDB0A95008 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
{
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs>
struct UnityEvent_1_t4B30B07A73CFB8205961561C2945408585355F26 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
{
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs>
struct UnityEvent_1_t8C99CC340A51BB1718EAC4102D4F90EE78F667F8 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
{
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs>
struct UnityEvent_1_t6653C165067CA012C0771D17D5AF3506C58F446B : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
{
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct UnityEvent_1_tD0BC7F894F453C8793ED59E99D035F8314FF379A : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
{
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>
struct UnityEvent_1_tA1FEDF2DDBADC48134C49F2E20E0FC2BA29AA88D : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
{
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
};
// UnityEngine.XR.Interaction.Toolkit.ActivateEventArgs
struct ActivateEventArgs_tAC81C18EA24D76411EE5A5D61523A551CCB46C3E : public BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E
{
};
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F : public AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7
{
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseEventData::m_EventSystem
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___m_EventSystem_1;
};
// System.Boolean
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
{
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
{
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
};
// UnityEngine.Color
struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F
{
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
};
// UnityEngine.XR.Interaction.Toolkit.DeactivateEventArgs
struct DeactivateEventArgs_t7AE1163C39B5B95A4501EC961D8D643C369774D0 : public BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E
{
};
// System.Double
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
{
// System.Double System.Double::m_value
double ___m_value_0;
};
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
{
};
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
{
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0;
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
{
};
// UnityEngine.InputSystem.Utilities.FourCC
struct FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED
{
// System.Int32 UnityEngine.InputSystem.Utilities.FourCC::m_Code
int32_t ___m_Code_0;
};
// UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs
struct HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E : public BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E
{
};
// UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs
struct HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6 : public BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E
{
// System.Boolean UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs::<isCanceled>k__BackingField
bool ___U3CisCanceledU3Ek__BackingField_2;
};
// UnityEngine.InputSystem.InputActionProperty
struct InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD
{
// System.Boolean UnityEngine.InputSystem.InputActionProperty::m_UseReference
bool ___m_UseReference_0;
// UnityEngine.InputSystem.InputAction UnityEngine.InputSystem.InputActionProperty::m_Action
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* ___m_Action_1;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.InputActionProperty::m_Reference
InputActionReference_t64730C6B41271E0983FC21BFB416169F5D6BC4A1* ___m_Reference_2;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputActionProperty
struct InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD_marshaled_pinvoke
{
int32_t ___m_UseReference_0;
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* ___m_Action_1;
InputActionReference_t64730C6B41271E0983FC21BFB416169F5D6BC4A1* ___m_Reference_2;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.InputActionProperty
struct InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD_marshaled_com
{
int32_t ___m_UseReference_0;
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* ___m_Action_1;
InputActionReference_t64730C6B41271E0983FC21BFB416169F5D6BC4A1* ___m_Reference_2;
};
// UnityEngine.XR.InputDevice
struct InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD
{
// System.UInt64 UnityEngine.XR.InputDevice::m_DeviceId
uint64_t ___m_DeviceId_1;
// System.Boolean UnityEngine.XR.InputDevice::m_Initialized
bool ___m_Initialized_2;
};
struct InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD_StaticFields
{
// System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem> UnityEngine.XR.InputDevice::s_InputSubsystemCache
List_1_t90832B88D7207769654164CC28440CF594CC397D* ___s_InputSubsystemCache_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputDevice
struct InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD_marshaled_pinvoke
{
uint64_t ___m_DeviceId_1;
int32_t ___m_Initialized_2;
};
// Native definition for COM marshalling of UnityEngine.XR.InputDevice
struct InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD_marshaled_com
{
uint64_t ___m_DeviceId_1;
int32_t ___m_Initialized_2;
};
// UnityEngine.InputSystem.Layouts.InputDeviceDescription
struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F
{
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_InterfaceName
String_t* ___m_InterfaceName_0;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_DeviceClass
String_t* ___m_DeviceClass_1;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Manufacturer
String_t* ___m_Manufacturer_2;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Product
String_t* ___m_Product_3;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Serial
String_t* ___m_Serial_4;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Version
String_t* ___m_Version_5;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Capabilities
String_t* ___m_Capabilities_6;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription
struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F_marshaled_pinvoke
{
char* ___m_InterfaceName_0;
char* ___m_DeviceClass_1;
char* ___m_Manufacturer_2;
char* ___m_Product_3;
char* ___m_Serial_4;
char* ___m_Version_5;
char* ___m_Capabilities_6;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription
struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F_marshaled_com
{
Il2CppChar* ___m_InterfaceName_0;
Il2CppChar* ___m_DeviceClass_1;
Il2CppChar* ___m_Manufacturer_2;
Il2CppChar* ___m_Product_3;
Il2CppChar* ___m_Serial_4;
Il2CppChar* ___m_Version_5;
Il2CppChar* ___m_Capabilities_6;
};
// System.Int32
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
{
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
};
// System.IntPtr
struct IntPtr_t
{
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
};
struct IntPtr_t_StaticFields
{
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
};
// UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs
struct InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D : public BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21
{
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs::<interactable>k__BackingField
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___U3CinteractableU3Ek__BackingField_1;
};
// UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs
struct InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21 : public BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21
{
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs::<interactable>k__BackingField
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___U3CinteractableU3Ek__BackingField_1;
};
// UnityEngine.XR.Interaction.Toolkit.InteractionState
struct InteractionState_tA1AFAB17758E43BA3F654BEAD6A61A05992003AB
{
// System.Boolean UnityEngine.XR.Interaction.Toolkit.InteractionState::m_Active
bool ___m_Active_0;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.InteractionState::m_ActivatedThisFrame
bool ___m_ActivatedThisFrame_1;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.InteractionState::m_DeactivatedThisFrame
bool ___m_DeactivatedThisFrame_2;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.InteractionState
struct InteractionState_tA1AFAB17758E43BA3F654BEAD6A61A05992003AB_marshaled_pinvoke
{
int32_t ___m_Active_0;
int32_t ___m_ActivatedThisFrame_1;
int32_t ___m_DeactivatedThisFrame_2;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.InteractionState
struct InteractionState_tA1AFAB17758E43BA3F654BEAD6A61A05992003AB_marshaled_com
{
int32_t ___m_Active_0;
int32_t ___m_ActivatedThisFrame_1;
int32_t ___m_DeactivatedThisFrame_2;
};
// UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs
struct InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775 : public BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21
{
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs::<interactor>k__BackingField
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___U3CinteractorU3Ek__BackingField_1;
};
// UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs
struct InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93 : public BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21
{
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs::<interactor>k__BackingField
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___U3CinteractorU3Ek__BackingField_1;
};
// UnityEngine.InputSystem.Utilities.InternedString
struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735
{
// System.String UnityEngine.InputSystem.Utilities.InternedString::m_StringOriginalCase
String_t* ___m_StringOriginalCase_0;
// System.String UnityEngine.InputSystem.Utilities.InternedString::m_StringLowerCase
String_t* ___m_StringLowerCase_1;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.InternedString
struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735_marshaled_pinvoke
{
char* ___m_StringOriginalCase_0;
char* ___m_StringLowerCase_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.InternedString
struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735_marshaled_com
{
Il2CppChar* ___m_StringOriginalCase_0;
Il2CppChar* ___m_StringLowerCase_1;
};
// UnityEngine.LayerMask
struct LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB
{
// System.Int32 UnityEngine.LayerMask::m_Mask
int32_t ___m_Mask_0;
};
// UnityEngine.Mathf
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682
{
union
{
struct
{
};
uint8_t Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682__padding[1];
};
};
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields
{
// System.Single UnityEngine.Mathf::Epsilon
float ___Epsilon_0;
};
// UnityEngine.Matrix4x4
struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6
{
// System.Single UnityEngine.Matrix4x4::m00
float ___m00_0;
// System.Single UnityEngine.Matrix4x4::m10
float ___m10_1;
// System.Single UnityEngine.Matrix4x4::m20
float ___m20_2;
// System.Single UnityEngine.Matrix4x4::m30
float ___m30_3;
// System.Single UnityEngine.Matrix4x4::m01
float ___m01_4;
// System.Single UnityEngine.Matrix4x4::m11
float ___m11_5;
// System.Single UnityEngine.Matrix4x4::m21
float ___m21_6;
// System.Single UnityEngine.Matrix4x4::m31
float ___m31_7;
// System.Single UnityEngine.Matrix4x4::m02
float ___m02_8;
// System.Single UnityEngine.Matrix4x4::m12
float ___m12_9;
// System.Single UnityEngine.Matrix4x4::m22
float ___m22_10;
// System.Single UnityEngine.Matrix4x4::m32
float ___m32_11;
// System.Single UnityEngine.Matrix4x4::m03
float ___m03_12;
// System.Single UnityEngine.Matrix4x4::m13
float ___m13_13;
// System.Single UnityEngine.Matrix4x4::m23
float ___m23_14;
// System.Single UnityEngine.Matrix4x4::m33
float ___m33_15;
};
struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_StaticFields
{
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___zeroMatrix_16;
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___identityMatrix_17;
};
// UnityEngine.Quaternion
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974
{
// System.Single UnityEngine.Quaternion::x
float ___x_0;
// System.Single UnityEngine.Quaternion::y
float ___y_1;
// System.Single UnityEngine.Quaternion::z
float ___z_2;
// System.Single UnityEngine.Quaternion::w
float ___w_3;
};
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_StaticFields
{
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___identityQuaternion_4;
};
// UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs
struct SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938 : public BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E
{
};
// UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs
struct SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A : public BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E
{
// System.Boolean UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs::<isCanceled>k__BackingField
bool ___U3CisCanceledU3Ek__BackingField_2;
};
// System.Single
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
{
// System.Single System.Single::m_value
float ___m_value_0;
};
// System.UInt16
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
{
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
};
// UnityEngine.Vector2
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
{
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
};
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
{
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector_9;
};
// UnityEngine.Vector3
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
{
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
};
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
{
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector_14;
};
// UnityEngine.Vector4
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3
{
// System.Single UnityEngine.Vector4::x
float ___x_1;
// System.Single UnityEngine.Vector4::y
float ___y_2;
// System.Single UnityEngine.Vector4::z
float ___z_3;
// System.Single UnityEngine.Vector4::w
float ___w_4;
};
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields
{
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___negativeInfinityVector_8;
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig
struct UIToolkitOverrideConfig_t4E6B4528E38BCA7DA72C45424634806200A50182
{
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig::activeEventSystem
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___activeEventSystem_0;
// System.Boolean UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig::sendEvents
bool ___sendEvents_1;
// System.Boolean UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig::createPanelGameObjectsOnStart
bool ___createPanelGameObjectsOnStart_2;
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig
struct UIToolkitOverrideConfig_t4E6B4528E38BCA7DA72C45424634806200A50182_marshaled_pinvoke
{
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___activeEventSystem_0;
int32_t ___sendEvents_1;
int32_t ___createPanelGameObjectsOnStart_2;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig
struct UIToolkitOverrideConfig_t4E6B4528E38BCA7DA72C45424634806200A50182_marshaled_com
{
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___activeEventSystem_0;
int32_t ___sendEvents_1;
int32_t ___createPanelGameObjectsOnStart_2;
};
// UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData
struct InternalData_t7100B940380492C19774536244433DFD434CEB1F
{
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::<hoverTargets>k__BackingField
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___U3ChoverTargetsU3Ek__BackingField_0;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::<pointerTarget>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerTargetU3Ek__BackingField_1;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData
struct InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_pinvoke
{
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___U3ChoverTargetsU3Ek__BackingField_0;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerTargetU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData
struct InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_com
{
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___U3ChoverTargetsU3Ek__BackingField_0;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerTargetU3Ek__BackingField_1;
};
// UnityEngine.XR.Interaction.Toolkit.XRSocketInteractor/ShaderPropertyLookup
struct ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60
{
union
{
struct
{
};
uint8_t ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60__padding[1];
};
};
struct ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_StaticFields
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRSocketInteractor/ShaderPropertyLookup::mode
int32_t ___mode_0;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRSocketInteractor/ShaderPropertyLookup::srcBlend
int32_t ___srcBlend_1;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRSocketInteractor/ShaderPropertyLookup::dstBlend
int32_t ___dstBlend_2;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRSocketInteractor/ShaderPropertyLookup::zWrite
int32_t ___zWrite_3;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRSocketInteractor/ShaderPropertyLookup::baseColor
int32_t ___baseColor_4;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRSocketInteractor/ShaderPropertyLookup::color
int32_t ___color_5;
};
// System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct Enumerator_t6B4BB26A13A662A4B1E681DD83CAAB5BA158CAC3
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index
int32_t ____index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_current
KeyValuePair_2_tA6D30FFB4692368D27138C35CCA0D714E3EF6ABA ____current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType
int32_t ____getEnumeratorRetType_4;
};
// System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>
struct Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index
int32_t ____index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_current
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ____current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType
int32_t ____getEnumeratorRetType_4;
};
// UnityEngine.XR.Interaction.Toolkit.ActivateEvent
struct ActivateEvent_tA1D392B588AC99958CB847AE6911DC5131BCFB43 : public UnityEvent_1_tEC38375A3667634400B758463CD6936646CE1ED8
{
};
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState
struct ButtonDeltaState_t7406F1107BFC045DEA59CF04259087A49E391116
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.Inputs.Cardinal
struct Cardinal_tA970475F4643BD211E8A2627C2B0D66121776F3D
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.Inputs.Cardinal::value__
int32_t ___value___2;
};
// UnityEngine.CollisionFlags
struct CollisionFlags_t3132E5D974C485D3F3C97B7AF475965AB0C3F9C1
{
// System.Int32 UnityEngine.CollisionFlags::value__
int32_t ___value___2;
};
// UnityEngine.XR.CommonUsages
struct CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1 : public RuntimeObject
{
};
struct CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_StaticFields
{
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::isTracked
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___isTracked_0;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::primaryButton
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___primaryButton_1;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::primaryTouch
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___primaryTouch_2;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::secondaryButton
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___secondaryButton_3;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::secondaryTouch
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___secondaryTouch_4;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::gripButton
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___gripButton_5;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::triggerButton
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___triggerButton_6;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::menuButton
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___menuButton_7;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::primary2DAxisClick
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___primary2DAxisClick_8;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::primary2DAxisTouch
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___primary2DAxisTouch_9;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::secondary2DAxisClick
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___secondary2DAxisClick_10;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::secondary2DAxisTouch
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___secondary2DAxisTouch_11;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::userPresence
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___userPresence_12;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.XR.InputTrackingState> UnityEngine.XR.CommonUsages::trackingState
InputFeatureUsage_1_t4EF7DDCAC35EE23BA72694AC2AB76CF4A879FFD9 ___trackingState_13;
// UnityEngine.XR.InputFeatureUsage`1<System.Single> UnityEngine.XR.CommonUsages::batteryLevel
InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848 ___batteryLevel_14;
// UnityEngine.XR.InputFeatureUsage`1<System.Single> UnityEngine.XR.CommonUsages::trigger
InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848 ___trigger_15;
// UnityEngine.XR.InputFeatureUsage`1<System.Single> UnityEngine.XR.CommonUsages::grip
InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848 ___grip_16;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2> UnityEngine.XR.CommonUsages::primary2DAxis
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C ___primary2DAxis_17;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2> UnityEngine.XR.CommonUsages::secondary2DAxis
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C ___secondary2DAxis_18;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::devicePosition
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___devicePosition_19;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::leftEyePosition
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___leftEyePosition_20;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::rightEyePosition
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___rightEyePosition_21;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::centerEyePosition
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___centerEyePosition_22;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::colorCameraPosition
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___colorCameraPosition_23;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::deviceVelocity
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___deviceVelocity_24;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::deviceAngularVelocity
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___deviceAngularVelocity_25;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::leftEyeVelocity
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___leftEyeVelocity_26;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::leftEyeAngularVelocity
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___leftEyeAngularVelocity_27;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::rightEyeVelocity
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___rightEyeVelocity_28;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::rightEyeAngularVelocity
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___rightEyeAngularVelocity_29;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::centerEyeVelocity
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___centerEyeVelocity_30;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::centerEyeAngularVelocity
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___centerEyeAngularVelocity_31;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::colorCameraVelocity
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___colorCameraVelocity_32;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::colorCameraAngularVelocity
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___colorCameraAngularVelocity_33;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::deviceAcceleration
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___deviceAcceleration_34;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::deviceAngularAcceleration
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___deviceAngularAcceleration_35;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::leftEyeAcceleration
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___leftEyeAcceleration_36;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::leftEyeAngularAcceleration
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___leftEyeAngularAcceleration_37;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::rightEyeAcceleration
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___rightEyeAcceleration_38;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::rightEyeAngularAcceleration
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___rightEyeAngularAcceleration_39;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::centerEyeAcceleration
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___centerEyeAcceleration_40;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::centerEyeAngularAcceleration
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___centerEyeAngularAcceleration_41;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::colorCameraAcceleration
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___colorCameraAcceleration_42;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> UnityEngine.XR.CommonUsages::colorCameraAngularAcceleration
InputFeatureUsage_1_t2E901FA41650EB29399194768CAA93D477CEBC58 ___colorCameraAngularAcceleration_43;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Quaternion> UnityEngine.XR.CommonUsages::deviceRotation
InputFeatureUsage_1_t8489CEC68B1EC178F2634079A9D7CD9E90D3CF5D ___deviceRotation_44;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Quaternion> UnityEngine.XR.CommonUsages::leftEyeRotation
InputFeatureUsage_1_t8489CEC68B1EC178F2634079A9D7CD9E90D3CF5D ___leftEyeRotation_45;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Quaternion> UnityEngine.XR.CommonUsages::rightEyeRotation
InputFeatureUsage_1_t8489CEC68B1EC178F2634079A9D7CD9E90D3CF5D ___rightEyeRotation_46;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Quaternion> UnityEngine.XR.CommonUsages::centerEyeRotation
InputFeatureUsage_1_t8489CEC68B1EC178F2634079A9D7CD9E90D3CF5D ___centerEyeRotation_47;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Quaternion> UnityEngine.XR.CommonUsages::colorCameraRotation
InputFeatureUsage_1_t8489CEC68B1EC178F2634079A9D7CD9E90D3CF5D ___colorCameraRotation_48;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.XR.Hand> UnityEngine.XR.CommonUsages::handData
InputFeatureUsage_1_t64C1AA42D6E8BD57C54C7E891BD79A70A0F3A170 ___handData_49;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.XR.Eyes> UnityEngine.XR.CommonUsages::eyesData
InputFeatureUsage_1_tD3FEDCAE0D7F51C7B42182162ACE726E68166B38 ___eyesData_50;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2> UnityEngine.XR.CommonUsages::dPad
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C ___dPad_51;
// UnityEngine.XR.InputFeatureUsage`1<System.Single> UnityEngine.XR.CommonUsages::indexFinger
InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848 ___indexFinger_52;
// UnityEngine.XR.InputFeatureUsage`1<System.Single> UnityEngine.XR.CommonUsages::middleFinger
InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848 ___middleFinger_53;
// UnityEngine.XR.InputFeatureUsage`1<System.Single> UnityEngine.XR.CommonUsages::ringFinger
InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848 ___ringFinger_54;
// UnityEngine.XR.InputFeatureUsage`1<System.Single> UnityEngine.XR.CommonUsages::pinkyFinger
InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848 ___pinkyFinger_55;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> UnityEngine.XR.CommonUsages::thumbrest
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___thumbrest_56;
// UnityEngine.XR.InputFeatureUsage`1<System.Single> UnityEngine.XR.CommonUsages::indexTouch
InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848 ___indexTouch_57;
// UnityEngine.XR.InputFeatureUsage`1<System.Single> UnityEngine.XR.CommonUsages::thumbTouch
InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848 ___thumbTouch_58;
};
// UnityEngine.Coroutine
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
{
// System.IntPtr UnityEngine.Coroutine::m_Ptr
intptr_t ___m_Ptr_0;
};
// Native definition for P/Invoke marshalling of UnityEngine.Coroutine
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B_marshaled_pinvoke : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.Coroutine
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B_marshaled_com : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// UnityEngine.CursorLockMode
struct CursorLockMode_tB70C7D1B9208B821C1C8A614BE904500B92C47D2
{
// System.Int32 UnityEngine.CursorLockMode::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.DeactivateEvent
struct DeactivateEvent_tFE44262C3D8377F947FD46D4561BB9DAC7E0785D : public UnityEvent_1_tE847E7CEE2FFE0AFBB1D8E8F6D62843F7AF62E40
{
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject* ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.IntPtr System.Delegate::interp_method
intptr_t ___interp_method_7;
// System.IntPtr System.Delegate::interp_invoke_impl
intptr_t ___interp_invoke_impl_8;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t* ___method_info_9;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t* ___original_method_info_10;
// System.DelegateData System.Delegate::data
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_12;
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t* ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject* ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject* ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
// System.Int32 System.Exception::caught_in_unmanaged
int32_t ___caught_in_unmanaged_16;
};
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// UnityEngine.XR.Interaction.Toolkit.HoverEnterEvent
struct HoverEnterEvent_t2BDBCA14FF94DA18C9AC12B43297F6C1641788AB : public UnityEvent_1_tF375C8038EBFFA6D72A05014787BE5CDB0A95008
{
};
// UnityEngine.XR.Interaction.Toolkit.HoverExitEvent
struct HoverExitEvent_t256704BC79FE0AA61EB2DE3FDDF43A1FC97F5832 : public UnityEvent_1_t4B30B07A73CFB8205961561C2945408585355F26
{
};
// UnityEngine.InputSystem.InputActionType
struct InputActionType_t7E3615BDDF3C84F39712E5889559D3AD8E773108
{
// System.Int32 UnityEngine.InputSystem.InputActionType::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.LowLevel.InputStateBlock
struct InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5
{
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::<format>k__BackingField
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___U3CformatU3Ek__BackingField_33;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::<byteOffset>k__BackingField
uint32_t ___U3CbyteOffsetU3Ek__BackingField_34;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::<bitOffset>k__BackingField
uint32_t ___U3CbitOffsetU3Ek__BackingField_35;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::<sizeInBits>k__BackingField
uint32_t ___U3CsizeInBitsU3Ek__BackingField_36;
};
struct InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_StaticFields
{
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatBit
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatBit_2;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatSBit
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatSBit_4;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatInt
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatInt_6;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatUInt
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatUInt_8;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatShort
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatShort_10;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatUShort
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatUShort_12;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatByte
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatByte_14;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatSByte
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatSByte_16;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatLong
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatLong_18;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatULong
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatULong_20;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatFloat
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatFloat_22;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatDouble
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatDouble_24;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector2_26;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector3_27;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatQuaternion
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatQuaternion_28;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2Short
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector2Short_29;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3Short
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector3Short_30;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2Byte
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector2Byte_31;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3Byte
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector3Byte_32;
};
// UnityEngine.IntegratedSubsystem
struct IntegratedSubsystem_t990160A89854D87C0836DC589B720231C02D4CE3 : public RuntimeObject
{
// System.IntPtr UnityEngine.IntegratedSubsystem::m_Ptr
intptr_t ___m_Ptr_0;
// UnityEngine.ISubsystemDescriptor UnityEngine.IntegratedSubsystem::m_SubsystemDescriptor
RuntimeObject* ___m_SubsystemDescriptor_1;
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystem
struct IntegratedSubsystem_t990160A89854D87C0836DC589B720231C02D4CE3_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
RuntimeObject* ___m_SubsystemDescriptor_1;
};
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystem
struct IntegratedSubsystem_t990160A89854D87C0836DC589B720231C02D4CE3_marshaled_com
{
intptr_t ___m_Ptr_0;
RuntimeObject* ___m_SubsystemDescriptor_1;
};
// Unity.Profiling.LowLevel.MarkerFlags
struct MarkerFlags_t58228A99AC6567F565911ED792189DBBDFF83E30
{
// System.UInt16 Unity.Profiling.LowLevel.MarkerFlags::value__
uint16_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.MatchOrientation
struct MatchOrientation_t23D749053248C09DB6C0D3BE24B25B84BFE42937
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.MatchOrientation::value__
int32_t ___value___2;
};
// UnityEngine.EventSystems.MoveDirection
struct MoveDirection_t0981B415CB2BEB70F14E647EDE5DE29F52DEC5E6
{
// System.Int32 UnityEngine.EventSystems.MoveDirection::value__
int32_t ___value___2;
};
// UnityEngine.Object
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
{
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
};
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
{
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.Plane
struct Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C
{
// UnityEngine.Vector3 UnityEngine.Plane::m_Normal
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Normal_0;
// System.Single UnityEngine.Plane::m_Distance
float ___m_Distance_1;
};
// Unity.Profiling.ProfilerMarker
struct ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD
{
// System.IntPtr Unity.Profiling.ProfilerMarker::m_Ptr
intptr_t ___m_Ptr_0;
};
// UnityEngine.QueryTriggerInteraction
struct QueryTriggerInteraction_t5AA443202C8B671F391534A002B7CF48A1412D23
{
// System.Int32 UnityEngine.QueryTriggerInteraction::value__
int32_t ___value___2;
};
// UnityEngine.Ray
struct Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00
{
// UnityEngine.Vector3 UnityEngine.Ray::m_Origin
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Origin_0;
// UnityEngine.Vector3 UnityEngine.Ray::m_Direction
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Direction_1;
};
// UnityEngine.RaycastHit
struct RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5
{
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Normal_1;
// System.UInt32 UnityEngine.RaycastHit::m_FaceID
uint32_t ___m_FaceID_2;
// System.Single UnityEngine.RaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_UV_4;
// System.Int32 UnityEngine.RaycastHit::m_Collider
int32_t ___m_Collider_5;
};
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA
{
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Normal_2;
// System.Single UnityEngine.RaycastHit2D::m_Distance
float ___m_Distance_3;
// System.Single UnityEngine.RaycastHit2D::m_Fraction
float ___m_Fraction_4;
// System.Int32 UnityEngine.RaycastHit2D::m_Collider
int32_t ___m_Collider_5;
};
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023
{
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___module_1;
// System.Single UnityEngine.EventSystems.RaycastResult::distance
float ___distance_2;
// System.Single UnityEngine.EventSystems.RaycastResult::index
float ___index_3;
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
int32_t ___depth_4;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
int32_t ___sortingLayer_5;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
int32_t ___sortingOrder_6;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition_9;
// System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex
int32_t ___displayIndex_10;
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_GameObject_0;
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition_7;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal_8;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition_9;
int32_t ___displayIndex_10;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_GameObject_0;
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition_7;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal_8;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition_9;
int32_t ___displayIndex_10;
};
// UnityEngine.XR.Interaction.Toolkit.RequestResult
struct RequestResult_t8BFBD7D47C3A0B56760336560EB63B884E2C8445
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.RequestResult::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.SelectEnterEvent
struct SelectEnterEvent_tBA2614C8C25D8794D5804C4F66195D74E64FC5D0 : public UnityEvent_1_t8C99CC340A51BB1718EAC4102D4F90EE78F667F8
{
};
// UnityEngine.XR.Interaction.Toolkit.SelectExitEvent
struct SelectExitEvent_t15DC0A39F9657BA9E6BAE6250D8D64C9671201F6 : public UnityEvent_1_t6653C165067CA012C0771D17D5AF3506C58F446B
{
};
// UnityEngine.TouchPhase
struct TouchPhase_t54E0A1AF80465997849420A72317B733E1D49A9E
{
// System.Int32 UnityEngine.TouchPhase::value__
int32_t ___value___2;
};
// UnityEngine.TouchType
struct TouchType_t84F82C73BC1A6012141735AD84DA67AA7F7AB43F
{
// System.Int32 UnityEngine.TouchType::value__
int32_t ___value___2;
};
// UnityEngine.XR.TrackingOriginModeFlags
struct TrackingOriginModeFlags_t04723708FB00785CE6A9CDECBB4501ADAB612C4F
{
// System.Int32 UnityEngine.XR.TrackingOriginModeFlags::value__
int32_t ___value___2;
};
// UnityEngine.XR.TrackingSpaceType
struct TrackingSpaceType_t12E30B1D651687B6AB5C77D97CD6611D6D6352E2
{
// System.Int32 UnityEngine.XR.TrackingSpaceType::value__
int32_t ___value___2;
};
// System.TypeCode
struct TypeCode_tBEF9BE86C8BCF5A6B82F3381219738D27804EF79
{
// System.Int32 System.TypeCode::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent
struct XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093 : public UnityEvent_1_tA1FEDF2DDBADC48134C49F2E20E0FC2BA29AA88D
{
};
// UnityEngine.XR.Interaction.Toolkit.XRInteractorEvent
struct XRInteractorEvent_tA90E755406526412871F25BB621E7F4536CD00E2 : public UnityEvent_1_tD0BC7F894F453C8793ED59E99D035F8314FF379A
{
};
// UnityEngine.XR.XRNode
struct XRNode_t41F4B2F0EDD99DB33C49EC731C8C7F9DF142B5FF
{
// System.Int32 UnityEngine.XR.XRNode::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.Controls.AxisControl/Clamp
struct Clamp_tCB96E8D34067B0DCBED42C565F4443DF880DD284
{
// System.Int32 UnityEngine.InputSystem.Controls.AxisControl/Clamp::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable/TeleportTrigger
struct TeleportTrigger_t77F23C7308D795A6B7ACCFECB8D0A4529D121409
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable/TeleportTrigger::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase/GravityApplicationMode
struct GravityApplicationMode_tF154B2203FB00BCAA6FFD4F0158D989BECDC9339
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase/GravityApplicationMode::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider/InputAxes
struct InputAxes_t456830A97AC9567AC62F47D85CB704F4FCF1682E
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider/InputAxes::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider/InputAxes
struct InputAxes_tA3D0339ED2DEFACCD333BB08DCFC47222D86DC11
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider/InputAxes::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider/InputAxes
struct InputAxes_t813C5FFBCED90A019FE5D0675920FC51486BCB44
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider/InputAxes::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.InputBinding/Flags
struct Flags_t2ED4EFE461994B03533B3B524C8C2EA71315AAE6
{
// System.Int32 UnityEngine.InputSystem.InputBinding/Flags::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.InputControl/ControlFlags
struct ControlFlags_t9C297F208DE19CEB00A0560F7FDE59F6A2004132
{
// System.Int32 UnityEngine.InputSystem.InputControl/ControlFlags::value__
int32_t ___value___2;
};
// UnityEngine.InputSystem.InputDevice/DeviceFlags
struct DeviceFlags_tF02F85DA24FF16879A67B540FCA560EC955CE728
{
// System.Int32 UnityEngine.InputSystem.InputDevice/DeviceFlags::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/Button
struct Button_t7AD0FC3561C9879049047086A08F35B816D61A93
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.InputHelpers/Button::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonReadType
struct ButtonReadType_tD8F8F8F61D4377C890ED235155A460EE12D2940B
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonReadType::value__
int32_t ___value___2;
};
// UnityEngine.EventSystems.PointerEventData/InputButton
struct InputButton_t7F40241CC7C406EBD574D426F736CB744DE86CDA
{
// System.Int32 UnityEngine.EventSystems.PointerEventData/InputButton::value__
int32_t ___value___2;
};
// Unity.Profiling.ProfilerMarker/AutoScope
struct AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139
{
// System.IntPtr Unity.Profiling.ProfilerMarker/AutoScope::m_Ptr
intptr_t ___m_Ptr_0;
};
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData
struct RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD
{
// UnityEngine.UI.Graphic UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::<graphic>k__BackingField
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* ___U3CgraphicU3Ek__BackingField_0;
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::<worldHitPosition>k__BackingField
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CworldHitPositionU3Ek__BackingField_1;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::<screenPosition>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CscreenPositionU3Ek__BackingField_2;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::<distance>k__BackingField
float ___U3CdistanceU3Ek__BackingField_3;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::<displayIndex>k__BackingField
int32_t ___U3CdisplayIndexU3Ek__BackingField_4;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData
struct RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshaled_pinvoke
{
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* ___U3CgraphicU3Ek__BackingField_0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CworldHitPositionU3Ek__BackingField_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CscreenPositionU3Ek__BackingField_2;
float ___U3CdistanceU3Ek__BackingField_3;
int32_t ___U3CdisplayIndexU3Ek__BackingField_4;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData
struct RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshaled_com
{
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* ___U3CgraphicU3Ek__BackingField_0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CworldHitPositionU3Ek__BackingField_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CscreenPositionU3Ek__BackingField_2;
float ___U3CdistanceU3Ek__BackingField_3;
int32_t ___U3CdisplayIndexU3Ek__BackingField_4;
};
// UnityEngine.XR.Interaction.Toolkit.XRBaseController/UpdateType
struct UpdateType_tC4A820B292EBF2F240DB4AC578DA56EFB6D59F0E
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRBaseController/UpdateType::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor/InputTriggerType
struct InputTriggerType_t51135E1379C18C54A1E915651CF09F06545F2E10
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor/InputTriggerType::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase
struct UpdatePhase_t65E7F37927346B8A8D200C87BCA9E869EFE0BE37
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.XRRayInteractor/HitDetectionType
struct HitDetectionType_tE29310A96101F16A06F8AE8363F7D7E819C02964
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRRayInteractor/HitDetectionType::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.XRRayInteractor/LineType
struct LineType_tCCCB556902C18C56AD05BC3E9D351ADA3762D4C2
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRRayInteractor/LineType::value__
int32_t ___value___2;
};
// UnityEngine.XR.Interaction.Toolkit.XRRig/TrackingOriginMode
struct TrackingOriginMode_tEF4B77D9C818C2551499BCF9217EB158A737B884
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRRig/TrackingOriginMode::value__
int32_t ___value___2;
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.RaycastHit>
struct Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>
struct Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD ____current_3;
};
// UnityEngine.IntegratedSubsystem`1<UnityEngine.XR.XRInputSubsystemDescriptor>
struct IntegratedSubsystem_1_tF93BC76362E85BDD215312162457BE510FC76D3B : public IntegratedSubsystem_t990160A89854D87C0836DC589B720231C02D4CE3
{
};
// UnityEngine.EventSystems.AxisEventData
struct AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938 : public BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F
{
// UnityEngine.Vector2 UnityEngine.EventSystems.AxisEventData::<moveVector>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmoveVectorU3Ek__BackingField_2;
// UnityEngine.EventSystems.MoveDirection UnityEngine.EventSystems.AxisEventData::<moveDir>k__BackingField
int32_t ___U3CmoveDirU3Ek__BackingField_3;
};
// UnityEngine.Component
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
{
};
// UnityEngine.GameObject
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
{
};
// UnityEngine.InputSystem.InputBinding
struct InputBinding_t0D75BD1538CF81D29450D568D5C938E111633EC5
{
// System.String UnityEngine.InputSystem.InputBinding::m_Name
String_t* ___m_Name_2;
// System.String UnityEngine.InputSystem.InputBinding::m_Id
String_t* ___m_Id_3;
// System.String UnityEngine.InputSystem.InputBinding::m_Path
String_t* ___m_Path_4;
// System.String UnityEngine.InputSystem.InputBinding::m_Interactions
String_t* ___m_Interactions_5;
// System.String UnityEngine.InputSystem.InputBinding::m_Processors
String_t* ___m_Processors_6;
// System.String UnityEngine.InputSystem.InputBinding::m_Groups
String_t* ___m_Groups_7;
// System.String UnityEngine.InputSystem.InputBinding::m_Action
String_t* ___m_Action_8;
// UnityEngine.InputSystem.InputBinding/Flags UnityEngine.InputSystem.InputBinding::m_Flags
int32_t ___m_Flags_9;
// System.String UnityEngine.InputSystem.InputBinding::m_OverridePath
String_t* ___m_OverridePath_10;
// System.String UnityEngine.InputSystem.InputBinding::m_OverrideInteractions
String_t* ___m_OverrideInteractions_11;
// System.String UnityEngine.InputSystem.InputBinding::m_OverrideProcessors
String_t* ___m_OverrideProcessors_12;
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputBinding
struct InputBinding_t0D75BD1538CF81D29450D568D5C938E111633EC5_marshaled_pinvoke
{
char* ___m_Name_2;
char* ___m_Id_3;
char* ___m_Path_4;
char* ___m_Interactions_5;
char* ___m_Processors_6;
char* ___m_Groups_7;
char* ___m_Action_8;
int32_t ___m_Flags_9;
char* ___m_OverridePath_10;
char* ___m_OverrideInteractions_11;
char* ___m_OverrideProcessors_12;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.InputBinding
struct InputBinding_t0D75BD1538CF81D29450D568D5C938E111633EC5_marshaled_com
{
Il2CppChar* ___m_Name_2;
Il2CppChar* ___m_Id_3;
Il2CppChar* ___m_Path_4;
Il2CppChar* ___m_Interactions_5;
Il2CppChar* ___m_Processors_6;
Il2CppChar* ___m_Groups_7;
Il2CppChar* ___m_Action_8;
int32_t ___m_Flags_9;
Il2CppChar* ___m_OverridePath_10;
Il2CppChar* ___m_OverrideInteractions_11;
Il2CppChar* ___m_OverrideProcessors_12;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_13;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_13;
};
// UnityEngine.EventSystems.PointerEventData
struct PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB : public BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F
{
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerEnter>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerEnterU3Ek__BackingField_2;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::m_PointerPress
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_PointerPress_3;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<lastPress>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3ClastPressU3Ek__BackingField_4;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<rawPointerPress>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CrawPointerPressU3Ek__BackingField_5;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerDrag>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerDragU3Ek__BackingField_6;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerClick>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerClickU3Ek__BackingField_7;
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::<pointerCurrentRaycast>k__BackingField
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___U3CpointerCurrentRaycastU3Ek__BackingField_8;
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::<pointerPressRaycast>k__BackingField
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___U3CpointerPressRaycastU3Ek__BackingField_9;
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.EventSystems.PointerEventData::hovered
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___hovered_10;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<eligibleForClick>k__BackingField
bool ___U3CeligibleForClickU3Ek__BackingField_11;
// System.Int32 UnityEngine.EventSystems.PointerEventData::<pointerId>k__BackingField
int32_t ___U3CpointerIdU3Ek__BackingField_12;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<position>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpositionU3Ek__BackingField_13;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<delta>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CdeltaU3Ek__BackingField_14;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<pressPosition>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressPositionU3Ek__BackingField_15;
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::<worldPosition>k__BackingField
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CworldPositionU3Ek__BackingField_16;
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::<worldNormal>k__BackingField
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CworldNormalU3Ek__BackingField_17;
// System.Single UnityEngine.EventSystems.PointerEventData::<clickTime>k__BackingField
float ___U3CclickTimeU3Ek__BackingField_18;
// System.Int32 UnityEngine.EventSystems.PointerEventData::<clickCount>k__BackingField
int32_t ___U3CclickCountU3Ek__BackingField_19;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<scrollDelta>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CscrollDeltaU3Ek__BackingField_20;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<useDragThreshold>k__BackingField
bool ___U3CuseDragThresholdU3Ek__BackingField_21;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<dragging>k__BackingField
bool ___U3CdraggingU3Ek__BackingField_22;
// UnityEngine.EventSystems.PointerEventData/InputButton UnityEngine.EventSystems.PointerEventData::<button>k__BackingField
int32_t ___U3CbuttonU3Ek__BackingField_23;
// System.Single UnityEngine.EventSystems.PointerEventData::<pressure>k__BackingField
float ___U3CpressureU3Ek__BackingField_24;
// System.Single UnityEngine.EventSystems.PointerEventData::<tangentialPressure>k__BackingField
float ___U3CtangentialPressureU3Ek__BackingField_25;
// System.Single UnityEngine.EventSystems.PointerEventData::<altitudeAngle>k__BackingField
float ___U3CaltitudeAngleU3Ek__BackingField_26;
// System.Single UnityEngine.EventSystems.PointerEventData::<azimuthAngle>k__BackingField
float ___U3CazimuthAngleU3Ek__BackingField_27;
// System.Single UnityEngine.EventSystems.PointerEventData::<twist>k__BackingField
float ___U3CtwistU3Ek__BackingField_28;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<radius>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_29;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<radiusVariance>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_30;
};
// UnityEngine.InputSystem.Utilities.PrimitiveValue
struct PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.TypeCode UnityEngine.InputSystem.Utilities.PrimitiveValue::m_Type
int32_t ___m_Type_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_Type_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_BoolValue_1_OffsetPadding[4];
// System.Boolean UnityEngine.InputSystem.Utilities.PrimitiveValue::m_BoolValue
bool ___m_BoolValue_1;
};
#pragma pack(pop, tp)
struct
{
char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4];
bool ___m_BoolValue_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_CharValue_2_OffsetPadding[4];
// System.Char UnityEngine.InputSystem.Utilities.PrimitiveValue::m_CharValue
Il2CppChar ___m_CharValue_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4];
Il2CppChar ___m_CharValue_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ByteValue_3_OffsetPadding[4];
// System.Byte UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ByteValue
uint8_t ___m_ByteValue_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_ByteValue_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_SByteValue_4_OffsetPadding[4];
// System.SByte UnityEngine.InputSystem.Utilities.PrimitiveValue::m_SByteValue
int8_t ___m_SByteValue_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4];
int8_t ___m_SByteValue_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ShortValue_5_OffsetPadding[4];
// System.Int16 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ShortValue
int16_t ___m_ShortValue_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4];
int16_t ___m_ShortValue_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UShortValue_6_OffsetPadding[4];
// System.UInt16 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_UShortValue
uint16_t ___m_UShortValue_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4];
uint16_t ___m_UShortValue_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_IntValue_7_OffsetPadding[4];
// System.Int32 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_IntValue
int32_t ___m_IntValue_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_IntValue_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UIntValue_8_OffsetPadding[4];
// System.UInt32 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_UIntValue
uint32_t ___m_UIntValue_8;
};
#pragma pack(pop, tp)
struct
{
char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4];
uint32_t ___m_UIntValue_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_LongValue_9_OffsetPadding[4];
// System.Int64 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_LongValue
int64_t ___m_LongValue_9;
};
#pragma pack(pop, tp)
struct
{
char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4];
int64_t ___m_LongValue_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ULongValue_10_OffsetPadding[4];
// System.UInt64 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ULongValue
uint64_t ___m_ULongValue_10;
};
#pragma pack(pop, tp)
struct
{
char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4];
uint64_t ___m_ULongValue_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_FloatValue_11_OffsetPadding[4];
// System.Single UnityEngine.InputSystem.Utilities.PrimitiveValue::m_FloatValue
float ___m_FloatValue_11;
};
#pragma pack(pop, tp)
struct
{
char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4];
float ___m_FloatValue_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_DoubleValue_12_OffsetPadding[4];
// System.Double UnityEngine.InputSystem.Utilities.PrimitiveValue::m_DoubleValue
double ___m_DoubleValue_12;
};
#pragma pack(pop, tp)
struct
{
char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4];
double ___m_DoubleValue_12_forAlignmentOnly;
};
};
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.PrimitiveValue
struct PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4_marshaled_pinvoke
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___m_Type_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_Type_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_BoolValue_1_OffsetPadding[4];
int32_t ___m_BoolValue_1;
};
#pragma pack(pop, tp)
struct
{
char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_BoolValue_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_CharValue_2_OffsetPadding[4];
uint8_t ___m_CharValue_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_CharValue_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ByteValue_3_OffsetPadding[4];
uint8_t ___m_ByteValue_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_ByteValue_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_SByteValue_4_OffsetPadding[4];
int8_t ___m_SByteValue_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4];
int8_t ___m_SByteValue_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ShortValue_5_OffsetPadding[4];
int16_t ___m_ShortValue_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4];
int16_t ___m_ShortValue_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UShortValue_6_OffsetPadding[4];
uint16_t ___m_UShortValue_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4];
uint16_t ___m_UShortValue_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_IntValue_7_OffsetPadding[4];
int32_t ___m_IntValue_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_IntValue_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UIntValue_8_OffsetPadding[4];
uint32_t ___m_UIntValue_8;
};
#pragma pack(pop, tp)
struct
{
char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4];
uint32_t ___m_UIntValue_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_LongValue_9_OffsetPadding[4];
int64_t ___m_LongValue_9;
};
#pragma pack(pop, tp)
struct
{
char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4];
int64_t ___m_LongValue_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ULongValue_10_OffsetPadding[4];
uint64_t ___m_ULongValue_10;
};
#pragma pack(pop, tp)
struct
{
char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4];
uint64_t ___m_ULongValue_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_FloatValue_11_OffsetPadding[4];
float ___m_FloatValue_11;
};
#pragma pack(pop, tp)
struct
{
char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4];
float ___m_FloatValue_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_DoubleValue_12_OffsetPadding[4];
double ___m_DoubleValue_12;
};
#pragma pack(pop, tp)
struct
{
char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4];
double ___m_DoubleValue_12_forAlignmentOnly;
};
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.PrimitiveValue
struct PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4_marshaled_com
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___m_Type_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_Type_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_BoolValue_1_OffsetPadding[4];
int32_t ___m_BoolValue_1;
};
#pragma pack(pop, tp)
struct
{
char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_BoolValue_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_CharValue_2_OffsetPadding[4];
uint8_t ___m_CharValue_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_CharValue_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ByteValue_3_OffsetPadding[4];
uint8_t ___m_ByteValue_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_ByteValue_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_SByteValue_4_OffsetPadding[4];
int8_t ___m_SByteValue_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4];
int8_t ___m_SByteValue_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ShortValue_5_OffsetPadding[4];
int16_t ___m_ShortValue_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4];
int16_t ___m_ShortValue_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UShortValue_6_OffsetPadding[4];
uint16_t ___m_UShortValue_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4];
uint16_t ___m_UShortValue_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_IntValue_7_OffsetPadding[4];
int32_t ___m_IntValue_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_IntValue_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UIntValue_8_OffsetPadding[4];
uint32_t ___m_UIntValue_8;
};
#pragma pack(pop, tp)
struct
{
char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4];
uint32_t ___m_UIntValue_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_LongValue_9_OffsetPadding[4];
int64_t ___m_LongValue_9;
};
#pragma pack(pop, tp)
struct
{
char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4];
int64_t ___m_LongValue_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ULongValue_10_OffsetPadding[4];
uint64_t ___m_ULongValue_10;
};
#pragma pack(pop, tp)
struct
{
char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4];
uint64_t ___m_ULongValue_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_FloatValue_11_OffsetPadding[4];
float ___m_FloatValue_11;
};
#pragma pack(pop, tp)
struct
{
char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4];
float ___m_FloatValue_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_DoubleValue_12_OffsetPadding[4];
double ___m_DoubleValue_12;
};
#pragma pack(pop, tp)
struct
{
char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4];
double ___m_DoubleValue_12_forAlignmentOnly;
};
};
};
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
// UnityEngine.XR.Interaction.Toolkit.TeleportRequest
struct TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE
{
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.TeleportRequest::destinationPosition
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___destinationPosition_0;
// UnityEngine.Quaternion UnityEngine.XR.Interaction.Toolkit.TeleportRequest::destinationRotation
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___destinationRotation_1;
// System.Single UnityEngine.XR.Interaction.Toolkit.TeleportRequest::requestTime
float ___requestTime_2;
// UnityEngine.XR.Interaction.Toolkit.MatchOrientation UnityEngine.XR.Interaction.Toolkit.TeleportRequest::matchOrientation
int32_t ___matchOrientation_3;
};
// UnityEngine.Touch
struct Touch_t03E51455ED508492B3F278903A0114FA0E87B417
{
// System.Int32 UnityEngine.Touch::m_FingerId
int32_t ___m_FingerId_0;
// UnityEngine.Vector2 UnityEngine.Touch::m_Position
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position_1;
// UnityEngine.Vector2 UnityEngine.Touch::m_RawPosition
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_RawPosition_2;
// UnityEngine.Vector2 UnityEngine.Touch::m_PositionDelta
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PositionDelta_3;
// System.Single UnityEngine.Touch::m_TimeDelta
float ___m_TimeDelta_4;
// System.Int32 UnityEngine.Touch::m_TapCount
int32_t ___m_TapCount_5;
// UnityEngine.TouchPhase UnityEngine.Touch::m_Phase
int32_t ___m_Phase_6;
// UnityEngine.TouchType UnityEngine.Touch::m_Type
int32_t ___m_Type_7;
// System.Single UnityEngine.Touch::m_Pressure
float ___m_Pressure_8;
// System.Single UnityEngine.Touch::m_maximumPossiblePressure
float ___m_maximumPossiblePressure_9;
// System.Single UnityEngine.Touch::m_Radius
float ___m_Radius_10;
// System.Single UnityEngine.Touch::m_RadiusVariance
float ___m_RadiusVariance_11;
// System.Single UnityEngine.Touch::m_AltitudeAngle
float ___m_AltitudeAngle_12;
// System.Single UnityEngine.Touch::m_AzimuthAngle
float ___m_AzimuthAngle_13;
};
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo
struct ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412
{
// System.String UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo::name
String_t* ___name_0;
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonReadType UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo::type
int32_t ___type_1;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo
struct ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshaled_pinvoke
{
char* ___name_0;
int32_t ___type_1;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo
struct ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshaled_com
{
Il2CppChar* ___name_0;
int32_t ___type_1;
};
// UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData
struct ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::<consecutiveMoveCount>k__BackingField
int32_t ___U3CconsecutiveMoveCountU3Ek__BackingField_0;
// UnityEngine.EventSystems.MoveDirection UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::<lastMoveDirection>k__BackingField
int32_t ___U3ClastMoveDirectionU3Ek__BackingField_1;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::<lastMoveTime>k__BackingField
float ___U3ClastMoveTimeU3Ek__BackingField_2;
};
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData
struct ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D
{
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::<isDragging>k__BackingField
bool ___U3CisDraggingU3Ek__BackingField_0;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::<pressedTime>k__BackingField
float ___U3CpressedTimeU3Ek__BackingField_1;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::<pressedPosition>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressedPositionU3Ek__BackingField_2;
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::<pressedRaycast>k__BackingField
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___U3CpressedRaycastU3Ek__BackingField_3;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::<pressedGameObject>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectU3Ek__BackingField_4;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::<pressedGameObjectRaw>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectRawU3Ek__BackingField_5;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::<draggedGameObject>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CdraggedGameObjectU3Ek__BackingField_6;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData
struct ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_pinvoke
{
int32_t ___U3CisDraggingU3Ek__BackingField_0;
float ___U3CpressedTimeU3Ek__BackingField_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressedPositionU3Ek__BackingField_2;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke ___U3CpressedRaycastU3Ek__BackingField_3;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectU3Ek__BackingField_4;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectRawU3Ek__BackingField_5;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CdraggedGameObjectU3Ek__BackingField_6;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData
struct ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_com
{
int32_t ___U3CisDraggingU3Ek__BackingField_0;
float ___U3CpressedTimeU3Ek__BackingField_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressedPositionU3Ek__BackingField_2;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com ___U3CpressedRaycastU3Ek__BackingField_3;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectU3Ek__BackingField_4;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectRawU3Ek__BackingField_5;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CdraggedGameObjectU3Ek__BackingField_6;
};
// UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData
struct ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3
{
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::<hoverTargets>k__BackingField
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___U3ChoverTargetsU3Ek__BackingField_0;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::<pointerTarget>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerTargetU3Ek__BackingField_1;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::<isDragging>k__BackingField
bool ___U3CisDraggingU3Ek__BackingField_2;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::<pressedTime>k__BackingField
float ___U3CpressedTimeU3Ek__BackingField_3;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::<pressedPosition>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressedPositionU3Ek__BackingField_4;
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::<pressedRaycast>k__BackingField
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___U3CpressedRaycastU3Ek__BackingField_5;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::<pressedGameObject>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectU3Ek__BackingField_6;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::<pressedGameObjectRaw>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectRawU3Ek__BackingField_7;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::<draggedGameObject>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CdraggedGameObjectU3Ek__BackingField_8;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData
struct ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_pinvoke
{
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___U3ChoverTargetsU3Ek__BackingField_0;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerTargetU3Ek__BackingField_1;
int32_t ___U3CisDraggingU3Ek__BackingField_2;
float ___U3CpressedTimeU3Ek__BackingField_3;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressedPositionU3Ek__BackingField_4;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke ___U3CpressedRaycastU3Ek__BackingField_5;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectU3Ek__BackingField_6;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectRawU3Ek__BackingField_7;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CdraggedGameObjectU3Ek__BackingField_8;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData
struct ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_com
{
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___U3ChoverTargetsU3Ek__BackingField_0;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerTargetU3Ek__BackingField_1;
int32_t ___U3CisDraggingU3Ek__BackingField_2;
float ___U3CpressedTimeU3Ek__BackingField_3;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressedPositionU3Ek__BackingField_4;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com ___U3CpressedRaycastU3Ek__BackingField_5;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectU3Ek__BackingField_6;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectRawU3Ek__BackingField_7;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CdraggedGameObjectU3Ek__BackingField_8;
};
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData
struct ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC
{
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::<hoverTargets>k__BackingField
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___U3ChoverTargetsU3Ek__BackingField_0;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::<pointerTarget>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerTargetU3Ek__BackingField_1;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::<isDragging>k__BackingField
bool ___U3CisDraggingU3Ek__BackingField_2;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::<pressedTime>k__BackingField
float ___U3CpressedTimeU3Ek__BackingField_3;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::<position>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpositionU3Ek__BackingField_4;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::<pressedPosition>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressedPositionU3Ek__BackingField_5;
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::<pressedRaycast>k__BackingField
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___U3CpressedRaycastU3Ek__BackingField_6;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::<pressedGameObject>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectU3Ek__BackingField_7;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::<pressedGameObjectRaw>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectRawU3Ek__BackingField_8;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::<draggedGameObject>k__BackingField
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CdraggedGameObjectU3Ek__BackingField_9;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData
struct ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_pinvoke
{
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___U3ChoverTargetsU3Ek__BackingField_0;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerTargetU3Ek__BackingField_1;
int32_t ___U3CisDraggingU3Ek__BackingField_2;
float ___U3CpressedTimeU3Ek__BackingField_3;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpositionU3Ek__BackingField_4;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressedPositionU3Ek__BackingField_5;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke ___U3CpressedRaycastU3Ek__BackingField_6;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectU3Ek__BackingField_7;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectRawU3Ek__BackingField_8;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CdraggedGameObjectU3Ek__BackingField_9;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData
struct ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_com
{
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___U3ChoverTargetsU3Ek__BackingField_0;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerTargetU3Ek__BackingField_1;
int32_t ___U3CisDraggingU3Ek__BackingField_2;
float ___U3CpressedTimeU3Ek__BackingField_3;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpositionU3Ek__BackingField_4;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressedPositionU3Ek__BackingField_5;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com ___U3CpressedRaycastU3Ek__BackingField_6;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectU3Ek__BackingField_7;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpressedGameObjectRawU3Ek__BackingField_8;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CdraggedGameObjectU3Ek__BackingField_9;
};
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs>
struct Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8 : public MulticastDelegate_t
{
};
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs>
struct Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0 : public MulticastDelegate_t
{
};
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs>
struct Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5 : public MulticastDelegate_t
{
};
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs>
struct Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0 : public MulticastDelegate_t
{
};
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>
struct Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7 : public MulticastDelegate_t
{
};
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875 : public MulticastDelegate_t
{
};
// System.Action`1<UnityEngine.XR.XRInputSubsystem>
struct Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A : public MulticastDelegate_t
{
};
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.AxisEventData>
struct Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B : public MulticastDelegate_t
{
};
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData>
struct Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F : public MulticastDelegate_t
{
};
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>
struct Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1 : public MulticastDelegate_t
{
};
// System.Action`2<UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>>
struct Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5 : public MulticastDelegate_t
{
};
// System.Comparison`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>
struct Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler>
struct EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403 : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler>
struct EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler>
struct EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler>
struct EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733 : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler>
struct EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler>
struct EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler>
struct EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013 : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler>
struct EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler>
struct EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117 : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler>
struct EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9 : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler>
struct EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916 : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler>
struct EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8 : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler>
struct EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65 : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler>
struct EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F : public MulticastDelegate_t
{
};
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler>
struct EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678 : public MulticastDelegate_t
{
};
// System.Nullable`1<UnityEngine.InputSystem.InputBinding>
struct Nullable_1_t11786EE914FE65E70B9671129B0DFC4D0DE80C44
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
InputBinding_t0D75BD1538CF81D29450D568D5C938E111633EC5 ___value_1;
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// UnityEngine.Behaviour
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
{
};
// UnityEngine.CanvasRenderer
struct CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860 : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
{
// System.Boolean UnityEngine.CanvasRenderer::<isMask>k__BackingField
bool ___U3CisMaskU3Ek__BackingField_4;
};
// UnityEngine.Collider
struct Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76 : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
{
};
// UnityEngine.InputSystem.InputControl
struct InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E : public RuntimeObject
{
// UnityEngine.InputSystem.LowLevel.InputStateBlock UnityEngine.InputSystem.InputControl::m_StateBlock
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 ___m_StateBlock_0;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Name
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Name_1;
// System.String UnityEngine.InputSystem.InputControl::m_Path
String_t* ___m_Path_2;
// System.String UnityEngine.InputSystem.InputControl::m_DisplayName
String_t* ___m_DisplayName_3;
// System.String UnityEngine.InputSystem.InputControl::m_DisplayNameFromLayout
String_t* ___m_DisplayNameFromLayout_4;
// System.String UnityEngine.InputSystem.InputControl::m_ShortDisplayName
String_t* ___m_ShortDisplayName_5;
// System.String UnityEngine.InputSystem.InputControl::m_ShortDisplayNameFromLayout
String_t* ___m_ShortDisplayNameFromLayout_6;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Layout
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Layout_7;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Variants
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Variants_8;
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputControl::m_Device
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device_9;
// UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputControl::m_Parent
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___m_Parent_10;
// System.Int32 UnityEngine.InputSystem.InputControl::m_UsageCount
int32_t ___m_UsageCount_11;
// System.Int32 UnityEngine.InputSystem.InputControl::m_UsageStartIndex
int32_t ___m_UsageStartIndex_12;
// System.Int32 UnityEngine.InputSystem.InputControl::m_AliasCount
int32_t ___m_AliasCount_13;
// System.Int32 UnityEngine.InputSystem.InputControl::m_AliasStartIndex
int32_t ___m_AliasStartIndex_14;
// System.Int32 UnityEngine.InputSystem.InputControl::m_ChildCount
int32_t ___m_ChildCount_15;
// System.Int32 UnityEngine.InputSystem.InputControl::m_ChildStartIndex
int32_t ___m_ChildStartIndex_16;
// UnityEngine.InputSystem.InputControl/ControlFlags UnityEngine.InputSystem.InputControl::m_ControlFlags
int32_t ___m_ControlFlags_17;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_DefaultState
PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4 ___m_DefaultState_18;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_MinValue
PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4 ___m_MinValue_19;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_MaxValue
PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4 ___m_MaxValue_20;
};
// UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel
struct JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017
{
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::<move>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmoveU3Ek__BackingField_0;
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::<submitButtonDelta>k__BackingField
int32_t ___U3CsubmitButtonDeltaU3Ek__BackingField_1;
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::<cancelButtonDelta>k__BackingField
int32_t ___U3CcancelButtonDeltaU3Ek__BackingField_2;
// UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::<implementationData>k__BackingField
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A ___U3CimplementationDataU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::m_SubmitButtonDown
bool ___m_SubmitButtonDown_4;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::m_CancelButtonDown
bool ___m_CancelButtonDown_5;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel
struct JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshaled_pinvoke
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmoveU3Ek__BackingField_0;
int32_t ___U3CsubmitButtonDeltaU3Ek__BackingField_1;
int32_t ___U3CcancelButtonDeltaU3Ek__BackingField_2;
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A ___U3CimplementationDataU3Ek__BackingField_3;
int32_t ___m_SubmitButtonDown_4;
int32_t ___m_CancelButtonDown_5;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel
struct JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshaled_com
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmoveU3Ek__BackingField_0;
int32_t ___U3CsubmitButtonDeltaU3Ek__BackingField_1;
int32_t ___U3CcancelButtonDeltaU3Ek__BackingField_2;
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A ___U3CimplementationDataU3Ek__BackingField_3;
int32_t ___m_SubmitButtonDown_4;
int32_t ___m_CancelButtonDown_5;
};
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel
struct MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729
{
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::<lastFrameDelta>k__BackingField
int32_t ___U3ClastFrameDeltaU3Ek__BackingField_0;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::m_IsDown
bool ___m_IsDown_1;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::m_ImplementationData
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D ___m_ImplementationData_2;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel
struct MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke
{
int32_t ___U3ClastFrameDeltaU3Ek__BackingField_0;
int32_t ___m_IsDown_1;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_pinvoke ___m_ImplementationData_2;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel
struct MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com
{
int32_t ___U3ClastFrameDeltaU3Ek__BackingField_0;
int32_t ___m_IsDown_1;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_com ___m_ImplementationData_2;
};
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// UnityEngine.XR.Interaction.Toolkit.UI.TouchModel
struct TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::<pointerId>k__BackingField
int32_t ___U3CpointerIdU3Ek__BackingField_0;
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::<selectDelta>k__BackingField
int32_t ___U3CselectDeltaU3Ek__BackingField_1;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::<changedThisFrame>k__BackingField
bool ___U3CchangedThisFrameU3Ek__BackingField_2;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::<deltaPosition>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CdeltaPositionU3Ek__BackingField_3;
// UnityEngine.TouchPhase UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::m_SelectPhase
int32_t ___m_SelectPhase_4;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::m_Position
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position_5;
// UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::m_ImplementationData
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3 ___m_ImplementationData_6;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.TouchModel
struct TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshaled_pinvoke
{
int32_t ___U3CpointerIdU3Ek__BackingField_0;
int32_t ___U3CselectDeltaU3Ek__BackingField_1;
int32_t ___U3CchangedThisFrameU3Ek__BackingField_2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CdeltaPositionU3Ek__BackingField_3;
int32_t ___m_SelectPhase_4;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position_5;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_pinvoke ___m_ImplementationData_6;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.TouchModel
struct TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshaled_com
{
int32_t ___U3CpointerIdU3Ek__BackingField_0;
int32_t ___U3CselectDeltaU3Ek__BackingField_1;
int32_t ___U3CchangedThisFrameU3Ek__BackingField_2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CdeltaPositionU3Ek__BackingField_3;
int32_t ___m_SelectPhase_4;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position_5;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_com ___m_ImplementationData_6;
};
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData
struct TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9 : public PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB
{
// System.Collections.Generic.List`1<UnityEngine.Vector3> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::<rayPoints>k__BackingField
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___U3CrayPointsU3Ek__BackingField_31;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::<rayHitIndex>k__BackingField
int32_t ___U3CrayHitIndexU3Ek__BackingField_32;
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::<layerMask>k__BackingField
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___U3ClayerMaskU3Ek__BackingField_33;
};
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel
struct TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8
{
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::m_ImplementationData
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC ___m_ImplementationData_1;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::<pointerId>k__BackingField
int32_t ___U3CpointerIdU3Ek__BackingField_2;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::<maxRaycastDistance>k__BackingField
float ___U3CmaxRaycastDistanceU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::m_SelectDown
bool ___m_SelectDown_4;
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::<selectDelta>k__BackingField
int32_t ___U3CselectDeltaU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::<changedThisFrame>k__BackingField
bool ___U3CchangedThisFrameU3Ek__BackingField_6;
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::m_Position
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Position_7;
// UnityEngine.Quaternion UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::m_Orientation
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___m_Orientation_8;
// System.Collections.Generic.List`1<UnityEngine.Vector3> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::m_RaycastPoints
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___m_RaycastPoints_9;
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::<currentRaycast>k__BackingField
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___U3CcurrentRaycastU3Ek__BackingField_10;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::<currentRaycastEndpointIndex>k__BackingField
int32_t ___U3CcurrentRaycastEndpointIndexU3Ek__BackingField_11;
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::m_RaycastLayerMask
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_RaycastLayerMask_12;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::m_ScrollDelta
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_ScrollDelta_13;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel
struct TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshaled_pinvoke
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_pinvoke ___m_ImplementationData_1;
int32_t ___U3CpointerIdU3Ek__BackingField_2;
float ___U3CmaxRaycastDistanceU3Ek__BackingField_3;
int32_t ___m_SelectDown_4;
int32_t ___U3CselectDeltaU3Ek__BackingField_5;
int32_t ___U3CchangedThisFrameU3Ek__BackingField_6;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Position_7;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___m_Orientation_8;
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___m_RaycastPoints_9;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke ___U3CcurrentRaycastU3Ek__BackingField_10;
int32_t ___U3CcurrentRaycastEndpointIndexU3Ek__BackingField_11;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_RaycastLayerMask_12;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_ScrollDelta_13;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel
struct TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshaled_com
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_com ___m_ImplementationData_1;
int32_t ___U3CpointerIdU3Ek__BackingField_2;
float ___U3CmaxRaycastDistanceU3Ek__BackingField_3;
int32_t ___m_SelectDown_4;
int32_t ___U3CselectDeltaU3Ek__BackingField_5;
int32_t ___U3CchangedThisFrameU3Ek__BackingField_6;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Position_7;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___m_Orientation_8;
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___m_RaycastPoints_9;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com ___U3CcurrentRaycastU3Ek__BackingField_10;
int32_t ___U3CcurrentRaycastEndpointIndexU3Ek__BackingField_11;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_RaycastLayerMask_12;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_ScrollDelta_13;
};
// UnityEngine.Transform
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1 : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
{
};
// UnityEngine.Events.UnityAction
struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7 : public MulticastDelegate_t
{
};
// UnityEngine.XR.XRInputSubsystem
struct XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34 : public IntegratedSubsystem_1_tF93BC76362E85BDD215312162457BE510FC76D3B
{
// System.Action`1<UnityEngine.XR.XRInputSubsystem> UnityEngine.XR.XRInputSubsystem::trackingOriginUpdated
Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A* ___trackingOriginUpdated_2;
// System.Action`1<UnityEngine.XR.XRInputSubsystem> UnityEngine.XR.XRInputSubsystem::boundaryChanged
Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A* ___boundaryChanged_3;
// System.Collections.Generic.List`1<System.UInt64> UnityEngine.XR.XRInputSubsystem::m_DeviceIdsCache
List_1_tB88E7361EE76DFB3EBB7FCD60CC59ACC3E48C284* ___m_DeviceIdsCache_4;
};
// UnityEngine.InputSystem.InputControl`1<System.Single>
struct InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
{
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_t2A86A6C75E0160EE14310E053C5249518871D847 ___m_ProcessorStack_21;
};
// UnityEngine.InputSystem.InputControl`1<UnityEngine.Vector2>
struct InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66 : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
{
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_tE5F1062E65707D24360CEAC52E03D32C6E5BA8BB ___m_ProcessorStack_21;
};
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
};
// UnityEngine.Camera
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
{
};
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_StaticFields
{
// UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPreCull
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreCull_4;
// UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPreRender
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreRender_5;
// UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPostRender
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPostRender_6;
};
// UnityEngine.Canvas
struct Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
{
};
struct Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26_StaticFields
{
// UnityEngine.Canvas/WillRenderCanvases UnityEngine.Canvas::preWillRenderCanvases
WillRenderCanvases_tA4A6E66DBA797DCB45B995DBA449A9D1D80D0FBC* ___preWillRenderCanvases_4;
// UnityEngine.Canvas/WillRenderCanvases UnityEngine.Canvas::willRenderCanvases
WillRenderCanvases_tA4A6E66DBA797DCB45B995DBA449A9D1D80D0FBC* ___willRenderCanvases_5;
// System.Action`1<System.Int32> UnityEngine.Canvas::<externBeginRenderOverlays>k__BackingField
Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* ___U3CexternBeginRenderOverlaysU3Ek__BackingField_6;
// System.Action`2<System.Int32,System.Int32> UnityEngine.Canvas::<externRenderOverlaysBefore>k__BackingField
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* ___U3CexternRenderOverlaysBeforeU3Ek__BackingField_7;
// System.Action`1<System.Int32> UnityEngine.Canvas::<externEndRenderOverlays>k__BackingField
Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* ___U3CexternEndRenderOverlaysU3Ek__BackingField_8;
};
// UnityEngine.CharacterController
struct CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A : public Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76
{
};
// UnityEngine.InputSystem.InputAction
struct InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD : public RuntimeObject
{
// System.String UnityEngine.InputSystem.InputAction::m_Name
String_t* ___m_Name_0;
// UnityEngine.InputSystem.InputActionType UnityEngine.InputSystem.InputAction::m_Type
int32_t ___m_Type_1;
// System.String UnityEngine.InputSystem.InputAction::m_ExpectedControlType
String_t* ___m_ExpectedControlType_2;
// System.String UnityEngine.InputSystem.InputAction::m_Id
String_t* ___m_Id_3;
// System.String UnityEngine.InputSystem.InputAction::m_Processors
String_t* ___m_Processors_4;
// System.String UnityEngine.InputSystem.InputAction::m_Interactions
String_t* ___m_Interactions_5;
// UnityEngine.InputSystem.InputBinding[] UnityEngine.InputSystem.InputAction::m_SingletonActionBindings
InputBindingU5BU5D_t7E47E87B9CAE12B6F6A0659008B425C58D84BB57* ___m_SingletonActionBindings_6;
// System.Nullable`1<UnityEngine.InputSystem.InputBinding> UnityEngine.InputSystem.InputAction::m_BindingMask
Nullable_1_t11786EE914FE65E70B9671129B0DFC4D0DE80C44 ___m_BindingMask_7;
// System.Int32 UnityEngine.InputSystem.InputAction::m_BindingsStartIndex
int32_t ___m_BindingsStartIndex_8;
// System.Int32 UnityEngine.InputSystem.InputAction::m_BindingsCount
int32_t ___m_BindingsCount_9;
// System.Int32 UnityEngine.InputSystem.InputAction::m_ControlStartIndex
int32_t ___m_ControlStartIndex_10;
// System.Int32 UnityEngine.InputSystem.InputAction::m_ControlCount
int32_t ___m_ControlCount_11;
// System.Int32 UnityEngine.InputSystem.InputAction::m_ActionIndexInState
int32_t ___m_ActionIndexInState_12;
// UnityEngine.InputSystem.InputActionMap UnityEngine.InputSystem.InputAction::m_ActionMap
InputActionMap_tFCE82E0E014319D4DED9F8962B06655DD0420A09* ___m_ActionMap_13;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext>> UnityEngine.InputSystem.InputAction::m_OnStarted
InlinedArray_1_tC208D319D19C2B3DF550BD9CDC11549F23D8F91B ___m_OnStarted_14;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext>> UnityEngine.InputSystem.InputAction::m_OnCanceled
InlinedArray_1_tC208D319D19C2B3DF550BD9CDC11549F23D8F91B ___m_OnCanceled_15;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext>> UnityEngine.InputSystem.InputAction::m_OnPerformed
InlinedArray_1_tC208D319D19C2B3DF550BD9CDC11549F23D8F91B ___m_OnPerformed_16;
};
// UnityEngine.InputSystem.InputDevice
struct InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
{
// UnityEngine.InputSystem.InputDevice/DeviceFlags UnityEngine.InputSystem.InputDevice::m_DeviceFlags
int32_t ___m_DeviceFlags_24;
// System.Int32 UnityEngine.InputSystem.InputDevice::m_DeviceId
int32_t ___m_DeviceId_25;
// System.Int32 UnityEngine.InputSystem.InputDevice::m_ParticipantId
int32_t ___m_ParticipantId_26;
// System.Int32 UnityEngine.InputSystem.InputDevice::m_DeviceIndex
int32_t ___m_DeviceIndex_27;
// UnityEngine.InputSystem.Layouts.InputDeviceDescription UnityEngine.InputSystem.InputDevice::m_Description
InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F ___m_Description_28;
// System.Double UnityEngine.InputSystem.InputDevice::m_LastUpdateTimeInternal
double ___m_LastUpdateTimeInternal_29;
// System.UInt32 UnityEngine.InputSystem.InputDevice::m_CurrentUpdateStepCount
uint32_t ___m_CurrentUpdateStepCount_30;
// UnityEngine.InputSystem.Utilities.InternedString[] UnityEngine.InputSystem.InputDevice::m_AliasesForEachControl
InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5* ___m_AliasesForEachControl_31;
// UnityEngine.InputSystem.Utilities.InternedString[] UnityEngine.InputSystem.InputDevice::m_UsagesForEachControl
InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5* ___m_UsagesForEachControl_32;
// UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.InputDevice::m_UsageToControl
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_UsageToControl_33;
// UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.InputDevice::m_ChildrenForEachControl
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_ChildrenForEachControl_34;
// System.UInt32[] UnityEngine.InputSystem.InputDevice::m_StateOffsetToControlMap
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___m_StateOffsetToControlMap_35;
};
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
{
};
// UnityEngine.XR.Interaction.Toolkit.UI.MouseModel
struct MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37
{
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::<pointerId>k__BackingField
int32_t ___U3CpointerIdU3Ek__BackingField_0;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::<changedThisFrame>k__BackingField
bool ___U3CchangedThisFrameU3Ek__BackingField_1;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::m_Position
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position_2;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::<deltaPosition>k__BackingField
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CdeltaPositionU3Ek__BackingField_3;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::m_ScrollDelta
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_ScrollDelta_4;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::m_LeftButton
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___m_LeftButton_5;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::m_RightButton
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___m_RightButton_6;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::m_MiddleButton
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___m_MiddleButton_7;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::m_InternalData
InternalData_t7100B940380492C19774536244433DFD434CEB1F ___m_InternalData_8;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.MouseModel
struct MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshaled_pinvoke
{
int32_t ___U3CpointerIdU3Ek__BackingField_0;
int32_t ___U3CchangedThisFrameU3Ek__BackingField_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position_2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CdeltaPositionU3Ek__BackingField_3;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_ScrollDelta_4;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke ___m_LeftButton_5;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke ___m_RightButton_6;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke ___m_MiddleButton_7;
InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_pinvoke ___m_InternalData_8;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.MouseModel
struct MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshaled_com
{
int32_t ___U3CpointerIdU3Ek__BackingField_0;
int32_t ___U3CchangedThisFrameU3Ek__BackingField_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position_2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CdeltaPositionU3Ek__BackingField_3;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_ScrollDelta_4;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com ___m_LeftButton_5;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com ___m_RightButton_6;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com ___m_MiddleButton_7;
InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_com ___m_InternalData_8;
};
// UnityEngine.RectTransform
struct RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5 : public Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1
{
};
struct RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_StaticFields
{
// UnityEngine.RectTransform/ReapplyDrivenProperties UnityEngine.RectTransform::reapplyDrivenProperties
ReapplyDrivenProperties_t3482EA130A01FF7EE2EEFE37F66A5215D08CFE24* ___reapplyDrivenProperties_4;
};
// UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor
struct RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E
{
// UnityEngine.XR.Interaction.Toolkit.UI.IUIInteractor UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor::interactor
RuntimeObject* ___interactor_0;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor::model
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8 ___model_1;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor
struct RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E_marshaled_pinvoke
{
RuntimeObject* ___interactor_0;
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshaled_pinvoke ___model_1;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor
struct RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E_marshaled_com
{
RuntimeObject* ___interactor_0;
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshaled_com ___model_1;
};
// UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch
struct RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37
{
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch::isValid
bool ___isValid_0;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch::touchId
int32_t ___touchId_1;
// UnityEngine.XR.Interaction.Toolkit.UI.TouchModel UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch::model
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F ___model_2;
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch
struct RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37_marshaled_pinvoke
{
int32_t ___isValid_0;
int32_t ___touchId_1;
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshaled_pinvoke ___model_2;
};
// Native definition for COM marshalling of UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch
struct RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37_marshaled_com
{
int32_t ___isValid_0;
int32_t ___touchId_1;
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshaled_com ___model_2;
};
// UnityEngine.InputSystem.Controls.AxisControl
struct AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7 : public InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A
{
// UnityEngine.InputSystem.Controls.AxisControl/Clamp UnityEngine.InputSystem.Controls.AxisControl::clamp
int32_t ___clamp_22;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::clampMin
float ___clampMin_23;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::clampMax
float ___clampMax_24;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::clampConstant
float ___clampConstant_25;
// System.Boolean UnityEngine.InputSystem.Controls.AxisControl::invert
bool ___invert_26;
// System.Boolean UnityEngine.InputSystem.Controls.AxisControl::normalize
bool ___normalize_27;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeMin
float ___normalizeMin_28;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeMax
float ___normalizeMax_29;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeZero
float ___normalizeZero_30;
// System.Boolean UnityEngine.InputSystem.Controls.AxisControl::scale
bool ___scale_31;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::scaleFactor
float ___scaleFactor_32;
};
// UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver
struct CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
{
// UnityEngine.XR.Interaction.Toolkit.LocomotionProvider UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::m_LocomotionProvider
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* ___m_LocomotionProvider_4;
// System.Single UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::m_MinHeight
float ___m_MinHeight_5;
// System.Single UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::m_MaxHeight
float ___m_MaxHeight_6;
// UnityEngine.XR.Interaction.Toolkit.XRRig UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::m_XRRig
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* ___m_XRRig_7;
// UnityEngine.CharacterController UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::m_CharacterController
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* ___m_CharacterController_8;
};
// UnityEngine.XR.Interaction.Toolkit.LocomotionProvider
struct LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
{
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem> UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::startLocomotion
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___startLocomotion_4;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem> UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::beginLocomotion
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___beginLocomotion_5;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem> UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::endLocomotion
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___endLocomotion_6;
// UnityEngine.XR.Interaction.Toolkit.LocomotionSystem UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::m_System
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* ___m_System_7;
};
// UnityEngine.XR.Interaction.Toolkit.LocomotionSystem
struct LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
{
// UnityEngine.XR.Interaction.Toolkit.LocomotionProvider UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::m_CurrentExclusiveProvider
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* ___m_CurrentExclusiveProvider_4;
// System.Single UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::m_TimeMadeExclusive
float ___m_TimeMadeExclusive_5;
// System.Single UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::m_Timeout
float ___m_Timeout_6;
// UnityEngine.XR.Interaction.Toolkit.XRRig UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::m_XRRig
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* ___m_XRRig_7;
};
// UnityEngine.InputSystem.Pointer
struct Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A : public InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B
{
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Pointer::<position>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CpositionU3Ek__BackingField_39;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Pointer::<delta>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CdeltaU3Ek__BackingField_40;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Pointer::<radius>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CradiusU3Ek__BackingField_41;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Pointer::<pressure>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CpressureU3Ek__BackingField_42;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Pointer::<press>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CpressU3Ek__BackingField_43;
};
struct Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_StaticFields
{
// UnityEngine.InputSystem.Pointer UnityEngine.InputSystem.Pointer::<current>k__BackingField
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___U3CcurrentU3Ek__BackingField_44;
};
// UnityEngine.EventSystems.UIBehaviour
struct UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
{
};
// UnityEngine.InputSystem.Controls.Vector2Control
struct Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432 : public InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66
{
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.Vector2Control::<x>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CxU3Ek__BackingField_22;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.Vector2Control::<y>k__BackingField
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CyU3Ek__BackingField_23;
};
// UnityEngine.XR.Interaction.Toolkit.XRBaseController
struct XRBaseController_t44C1BB30A7E1D279DD2508F34D3352B33A9AD60C : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
{
// UnityEngine.XR.Interaction.Toolkit.XRBaseController/UpdateType UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_UpdateTrackingType
int32_t ___m_UpdateTrackingType_4;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_EnableInputTracking
bool ___m_EnableInputTracking_5;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_EnableInputActions
bool ___m_EnableInputActions_6;
// UnityEngine.Transform UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_ModelPrefab
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___m_ModelPrefab_7;
// UnityEngine.Transform UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_ModelParent
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___m_ModelParent_8;
// UnityEngine.Transform UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_Model
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___m_Model_9;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_AnimateModel
bool ___m_AnimateModel_10;
// System.String UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_ModelSelectTransition
String_t* ___m_ModelSelectTransition_11;
// System.String UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_ModelDeSelectTransition
String_t* ___m_ModelDeSelectTransition_12;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_HideControllerModel
bool ___m_HideControllerModel_13;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseController::<anchorControlDeadzone>k__BackingField
float ___U3CanchorControlDeadzoneU3Ek__BackingField_14;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseController::<anchorControlOffAxisDeadzone>k__BackingField
float ___U3CanchorControlOffAxisDeadzoneU3Ek__BackingField_15;
// UnityEngine.XR.Interaction.Toolkit.InteractionState UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_SelectInteractionState
InteractionState_tA1AFAB17758E43BA3F654BEAD6A61A05992003AB ___m_SelectInteractionState_16;
// UnityEngine.XR.Interaction.Toolkit.InteractionState UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_ActivateInteractionState
InteractionState_tA1AFAB17758E43BA3F654BEAD6A61A05992003AB ___m_ActivateInteractionState_17;
// UnityEngine.XR.Interaction.Toolkit.InteractionState UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_UIPressInteractionState
InteractionState_tA1AFAB17758E43BA3F654BEAD6A61A05992003AB ___m_UIPressInteractionState_18;
// UnityEngine.XR.Interaction.Toolkit.XRControllerState UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_ControllerState
XRControllerState_tC34C40CB942A51408D8799940A87A6AD87218B50* ___m_ControllerState_19;
// UnityEngine.Animator UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_ModelAnimator
Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___m_ModelAnimator_20;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_HasWarnedAnimatorMissing
bool ___m_HasWarnedAnimatorMissing_21;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseController::m_PerformSetup
bool ___m_PerformSetup_22;
};
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable
struct XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
{
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs> UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::registered
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* ___registered_4;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs> UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::unregistered
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* ___unregistered_5;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_InteractionManager
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___m_InteractionManager_6;
// System.Collections.Generic.List`1<UnityEngine.Collider> UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_Colliders
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* ___m_Colliders_7;
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_InteractionLayerMask
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_InteractionLayerMask_8;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_CustomReticle
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_CustomReticle_9;
// UnityEngine.XR.Interaction.Toolkit.HoverEnterEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_FirstHoverEntered
HoverEnterEvent_t2BDBCA14FF94DA18C9AC12B43297F6C1641788AB* ___m_FirstHoverEntered_10;
// UnityEngine.XR.Interaction.Toolkit.HoverExitEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_LastHoverExited
HoverExitEvent_t256704BC79FE0AA61EB2DE3FDDF43A1FC97F5832* ___m_LastHoverExited_11;
// UnityEngine.XR.Interaction.Toolkit.HoverEnterEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_HoverEntered
HoverEnterEvent_t2BDBCA14FF94DA18C9AC12B43297F6C1641788AB* ___m_HoverEntered_12;
// UnityEngine.XR.Interaction.Toolkit.HoverExitEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_HoverExited
HoverExitEvent_t256704BC79FE0AA61EB2DE3FDDF43A1FC97F5832* ___m_HoverExited_13;
// UnityEngine.XR.Interaction.Toolkit.SelectEnterEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_SelectEntered
SelectEnterEvent_tBA2614C8C25D8794D5804C4F66195D74E64FC5D0* ___m_SelectEntered_14;
// UnityEngine.XR.Interaction.Toolkit.SelectExitEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_SelectExited
SelectExitEvent_t15DC0A39F9657BA9E6BAE6250D8D64C9671201F6* ___m_SelectExited_15;
// UnityEngine.XR.Interaction.Toolkit.ActivateEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_Activated
ActivateEvent_tA1D392B588AC99958CB847AE6911DC5131BCFB43* ___m_Activated_16;
// UnityEngine.XR.Interaction.Toolkit.DeactivateEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_Deactivated
DeactivateEvent_tFE44262C3D8377F947FD46D4561BB9DAC7E0785D* ___m_Deactivated_17;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor> UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_HoveringInteractors
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* ___m_HoveringInteractors_18;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::<selectingInteractor>k__BackingField
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___U3CselectingInteractorU3Ek__BackingField_19;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::<isHovered>k__BackingField
bool ___U3CisHoveredU3Ek__BackingField_20;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::<isSelected>k__BackingField
bool ___U3CisSelectedU3Ek__BackingField_21;
// System.Collections.Generic.Dictionary`2<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.GameObject> UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_ReticleCache
Dictionary_2_t97DBCD53B07D70E80A2A9BF985B5247F3F76A094* ___m_ReticleCache_22;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_RegisteredInteractionManager
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___m_RegisteredInteractionManager_23;
// UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_OnFirstHoverEntered
XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093* ___m_OnFirstHoverEntered_25;
// UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_OnLastHoverExited
XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093* ___m_OnLastHoverExited_26;
// UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_OnHoverEntered
XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093* ___m_OnHoverEntered_27;
// UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_OnHoverExited
XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093* ___m_OnHoverExited_28;
// UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_OnSelectEntered
XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093* ___m_OnSelectEntered_29;
// UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_OnSelectExited
XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093* ___m_OnSelectExited_30;
// UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_OnSelectCanceled
XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093* ___m_OnSelectCanceled_31;
// UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_OnActivate
XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093* ___m_OnActivate_32;
// UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::m_OnDeactivate
XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093* ___m_OnDeactivate_33;
};
struct XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6_StaticFields
{
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::s_InteractionManagerCache
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___s_InteractionManagerCache_24;
};
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor
struct XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
{
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs> UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::registered
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* ___registered_4;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs> UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::unregistered
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* ___unregistered_5;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_InteractionManager
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___m_InteractionManager_6;
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_InteractionLayerMask
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_InteractionLayerMask_7;
// UnityEngine.Transform UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_AttachTransform
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___m_AttachTransform_8;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_StartingSelectedInteractable
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___m_StartingSelectedInteractable_9;
// UnityEngine.XR.Interaction.Toolkit.HoverEnterEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_HoverEntered
HoverEnterEvent_t2BDBCA14FF94DA18C9AC12B43297F6C1641788AB* ___m_HoverEntered_10;
// UnityEngine.XR.Interaction.Toolkit.HoverExitEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_HoverExited
HoverExitEvent_t256704BC79FE0AA61EB2DE3FDDF43A1FC97F5832* ___m_HoverExited_11;
// UnityEngine.XR.Interaction.Toolkit.SelectEnterEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_SelectEntered
SelectEnterEvent_tBA2614C8C25D8794D5804C4F66195D74E64FC5D0* ___m_SelectEntered_12;
// UnityEngine.XR.Interaction.Toolkit.SelectExitEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_SelectExited
SelectExitEvent_t15DC0A39F9657BA9E6BAE6250D8D64C9671201F6* ___m_SelectExited_13;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_AllowHover
bool ___m_AllowHover_14;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_AllowSelect
bool ___m_AllowSelect_15;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_IsPerformingManualInteraction
bool ___m_IsPerformingManualInteraction_16;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::<selectTarget>k__BackingField
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___U3CselectTargetU3Ek__BackingField_17;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::<hoverTargets>k__BackingField
List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___U3ChoverTargetsU3Ek__BackingField_18;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_RegisteredInteractionManager
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___m_RegisteredInteractionManager_19;
// UnityEngine.XR.Interaction.Toolkit.XRInteractorEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_OnHoverEntered
XRInteractorEvent_tA90E755406526412871F25BB621E7F4536CD00E2* ___m_OnHoverEntered_21;
// UnityEngine.XR.Interaction.Toolkit.XRInteractorEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_OnHoverExited
XRInteractorEvent_tA90E755406526412871F25BB621E7F4536CD00E2* ___m_OnHoverExited_22;
// UnityEngine.XR.Interaction.Toolkit.XRInteractorEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_OnSelectEntered
XRInteractorEvent_tA90E755406526412871F25BB621E7F4536CD00E2* ___m_OnSelectEntered_23;
// UnityEngine.XR.Interaction.Toolkit.XRInteractorEvent UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::m_OnSelectExited
XRInteractorEvent_tA90E755406526412871F25BB621E7F4536CD00E2* ___m_OnSelectExited_24;
};
struct XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158_StaticFields
{
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::s_InteractionManagerCache
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___s_InteractionManagerCache_20;
};
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager
struct XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
{
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::interactorRegistered
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* ___interactorRegistered_4;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::interactorUnregistered
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* ___interactorUnregistered_5;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::interactableRegistered
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* ___interactableRegistered_6;
// System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::interactableUnregistered
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* ___interactableUnregistered_7;
// System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_ColliderToInteractableMap
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* ___m_ColliderToInteractableMap_9;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_Interactors
RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* ___m_Interactors_10;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_Interactables
RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* ___m_Interactables_11;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_HoverTargets
List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___m_HoverTargets_12;
// System.Collections.Generic.HashSet`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_UnorderedHoverTargets
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* ___m_UnorderedHoverTargets_13;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_ValidTargets
List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___m_ValidTargets_14;
// System.Collections.Generic.HashSet`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_UnorderedValidTargets
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* ___m_UnorderedValidTargets_15;
// UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_SelectEnterEventArgs
SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* ___m_SelectEnterEventArgs_16;
// UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_SelectExitEventArgs
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* ___m_SelectExitEventArgs_17;
// UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_HoverEnterEventArgs
HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* ___m_HoverEnterEventArgs_18;
// UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_HoverExitEventArgs
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* ___m_HoverExitEventArgs_19;
// UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_InteractorRegisteredEventArgs
InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* ___m_InteractorRegisteredEventArgs_20;
// UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_InteractorUnregisteredEventArgs
InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* ___m_InteractorUnregisteredEventArgs_21;
// UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_InteractableRegisteredEventArgs
InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* ___m_InteractableRegisteredEventArgs_22;
// UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::m_InteractableUnregisteredEventArgs
InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* ___m_InteractableUnregisteredEventArgs_23;
};
struct XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields
{
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRInteractionManager> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::<activeInteractionManagers>k__BackingField
List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* ___U3CactiveInteractionManagersU3Ek__BackingField_8;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_ProcessInteractorsMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_ProcessInteractorsMarker_24;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_ProcessInteractablesMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_ProcessInteractablesMarker_25;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_GetValidTargetsMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_GetValidTargetsMarker_26;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_FilterRegisteredValidTargetsMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_FilterRegisteredValidTargetsMarker_27;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_EvaluateInvalidSelectionsMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_EvaluateInvalidSelectionsMarker_28;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_EvaluateInvalidHoversMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_EvaluateInvalidHoversMarker_29;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_EvaluateValidSelectionsMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_EvaluateValidSelectionsMarker_30;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_EvaluateValidHoversMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_EvaluateValidHoversMarker_31;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_SelectEnterMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_SelectEnterMarker_32;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_SelectExitMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_SelectExitMarker_33;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_HoverEnterMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_HoverEnterMarker_34;
// Unity.Profiling.ProfilerMarker UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::s_HoverExitMarker
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_HoverExitMarker_35;
};
// UnityEngine.XR.Interaction.Toolkit.XRRig
struct XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
{
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.XRRig::m_RigBaseGameObject
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_RigBaseGameObject_5;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.XRRig::m_CameraFloorOffsetObject
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_CameraFloorOffsetObject_6;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.XRRig::m_CameraGameObject
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_CameraGameObject_7;
// UnityEngine.XR.Interaction.Toolkit.XRRig/TrackingOriginMode UnityEngine.XR.Interaction.Toolkit.XRRig::m_RequestedTrackingOriginMode
int32_t ___m_RequestedTrackingOriginMode_8;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRig::m_CameraYOffset
float ___m_CameraYOffset_9;
// UnityEngine.XR.TrackingOriginModeFlags UnityEngine.XR.Interaction.Toolkit.XRRig::<currentTrackingOriginMode>k__BackingField
int32_t ___U3CcurrentTrackingOriginModeU3Ek__BackingField_10;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::m_CameraInitialized
bool ___m_CameraInitialized_12;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::m_CameraInitializing
bool ___m_CameraInitializing_13;
// UnityEngine.XR.TrackingSpaceType UnityEngine.XR.Interaction.Toolkit.XRRig::m_TrackingSpace
int32_t ___m_TrackingSpace_16;
// UnityEngine.XR.TrackingOriginModeFlags UnityEngine.XR.Interaction.Toolkit.XRRig::m_TrackingOriginMode
int32_t ___m_TrackingOriginMode_17;
};
struct XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_StaticFields
{
// System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem> UnityEngine.XR.Interaction.Toolkit.XRRig::s_InputSubsystems
List_1_t90832B88D7207769654164CC28440CF594CC397D* ___s_InputSubsystems_11;
};
// UnityEngine.XR.Interaction.Toolkit.AR.ARBaseGestureInteractable
struct ARBaseGestureInteractable_t7FF715FA0E5BE6C9F48E9869A7B0F4819913832D : public XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6
{
// UnityEngine.XR.ARFoundation.ARSessionOrigin UnityEngine.XR.Interaction.Toolkit.AR.ARBaseGestureInteractable::m_ARSessionOrigin
ARSessionOrigin_tE7B28A1A19500BCC02711397A19E330425830BC3* ___m_ARSessionOrigin_34;
// UnityEngine.XR.Interaction.Toolkit.AR.ARGestureInteractor UnityEngine.XR.Interaction.Toolkit.AR.ARBaseGestureInteractable::<gestureInteractor>k__BackingField
ARGestureInteractor_t5F50A16286B9051118C926B6C44BAECE78F81745* ___U3CgestureInteractorU3Ek__BackingField_35;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.AR.ARBaseGestureInteractable::m_IsManipulating
bool ___m_IsManipulating_36;
};
struct ARBaseGestureInteractable_t7FF715FA0E5BE6C9F48E9869A7B0F4819913832D_StaticFields
{
// UnityEngine.XR.ARFoundation.ARSessionOrigin UnityEngine.XR.Interaction.Toolkit.AR.ARBaseGestureInteractable::s_ARSessionOriginCache
ARSessionOrigin_tE7B28A1A19500BCC02711397A19E330425830BC3* ___s_ARSessionOriginCache_37;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor> UnityEngine.XR.Interaction.Toolkit.AR.ARBaseGestureInteractable::s_Interactors
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* ___s_Interactors_38;
};
// UnityEngine.EventSystems.BaseInputModule
struct BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
{
// System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult> UnityEngine.EventSystems.BaseInputModule::m_RaycastResultCache
List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___m_RaycastResultCache_4;
// UnityEngine.EventSystems.AxisEventData UnityEngine.EventSystems.BaseInputModule::m_AxisEventData
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* ___m_AxisEventData_5;
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseInputModule::m_EventSystem
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___m_EventSystem_6;
// UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.BaseInputModule::m_BaseEventData
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___m_BaseEventData_7;
// UnityEngine.EventSystems.BaseInput UnityEngine.EventSystems.BaseInputModule::m_InputOverride
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* ___m_InputOverride_8;
// UnityEngine.EventSystems.BaseInput UnityEngine.EventSystems.BaseInputModule::m_DefaultInput
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* ___m_DefaultInput_9;
};
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
{
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.BaseRaycaster::m_RootRaycaster
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___m_RootRaycaster_4;
};
// UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable
struct BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8 : public XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6
{
// UnityEngine.XR.Interaction.Toolkit.TeleportationProvider UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::m_TeleportationProvider
TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* ___m_TeleportationProvider_34;
// UnityEngine.XR.Interaction.Toolkit.MatchOrientation UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::m_MatchOrientation
int32_t ___m_MatchOrientation_35;
// UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable/TeleportTrigger UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::m_TeleportTrigger
int32_t ___m_TeleportTrigger_36;
};
// UnityEngine.InputSystem.Controls.ButtonControl
struct ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF : public AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7
{
// System.Single UnityEngine.InputSystem.Controls.ButtonControl::pressPoint
float ___pressPoint_33;
};
struct ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_StaticFields
{
// System.Single UnityEngine.InputSystem.Controls.ButtonControl::s_GlobalDefaultButtonPressPoint
float ___s_GlobalDefaultButtonPressPoint_34;
// System.Single UnityEngine.InputSystem.Controls.ButtonControl::s_GlobalDefaultButtonReleaseThreshold
float ___s_GlobalDefaultButtonReleaseThreshold_35;
};
// UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase
struct ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A : public LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B
{
// System.Single UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::m_MoveSpeed
float ___m_MoveSpeed_8;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::m_EnableStrafe
bool ___m_EnableStrafe_9;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::m_UseGravity
bool ___m_UseGravity_10;
// UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase/GravityApplicationMode UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::m_GravityApplicationMode
int32_t ___m_GravityApplicationMode_11;
// UnityEngine.Transform UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::m_ForwardSource
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___m_ForwardSource_12;
// UnityEngine.CharacterController UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::m_CharacterController
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* ___m_CharacterController_13;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::m_AttemptedGetCharacterController
bool ___m_AttemptedGetCharacterController_14;
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::m_VerticalVelocity
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_VerticalVelocity_15;
};
// UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase
struct ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A : public LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B
{
// System.Single UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase::m_TurnSpeed
float ___m_TurnSpeed_8;
};
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
{
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule> UnityEngine.EventSystems.EventSystem::m_SystemInputModules
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* ___m_SystemInputModules_4;
// UnityEngine.EventSystems.BaseInputModule UnityEngine.EventSystems.EventSystem::m_CurrentInputModule
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* ___m_CurrentInputModule_5;
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::m_FirstSelected
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_FirstSelected_7;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_sendNavigationEvents
bool ___m_sendNavigationEvents_8;
// System.Int32 UnityEngine.EventSystems.EventSystem::m_DragThreshold
int32_t ___m_DragThreshold_9;
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::m_CurrentSelected
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_CurrentSelected_10;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_HasFocus
bool ___m_HasFocus_11;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_SelectionGuard
bool ___m_SelectionGuard_12;
// UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.EventSystem::m_DummyData
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___m_DummyData_13;
};
struct EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields
{
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem> UnityEngine.EventSystems.EventSystem::m_EventSystems
List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* ___m_EventSystems_6;
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult> UnityEngine.EventSystems.EventSystem::s_RaycastComparer
Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC* ___s_RaycastComparer_14;
// UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig UnityEngine.EventSystems.EventSystem::s_UIToolkitOverride
UIToolkitOverrideConfig_t4E6B4528E38BCA7DA72C45424634806200A50182 ___s_UIToolkitOverride_15;
};
// UnityEngine.UI.Graphic
struct Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
{
// UnityEngine.Material UnityEngine.UI.Graphic::m_Material
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_Material_6;
// UnityEngine.Color UnityEngine.UI.Graphic::m_Color
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_Color_7;
// System.Boolean UnityEngine.UI.Graphic::m_SkipLayoutUpdate
bool ___m_SkipLayoutUpdate_8;
// System.Boolean UnityEngine.UI.Graphic::m_SkipMaterialUpdate
bool ___m_SkipMaterialUpdate_9;
// System.Boolean UnityEngine.UI.Graphic::m_RaycastTarget
bool ___m_RaycastTarget_10;
// UnityEngine.Vector4 UnityEngine.UI.Graphic::m_RaycastPadding
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___m_RaycastPadding_11;
// UnityEngine.RectTransform UnityEngine.UI.Graphic::m_RectTransform
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_RectTransform_12;
// UnityEngine.CanvasRenderer UnityEngine.UI.Graphic::m_CanvasRenderer
CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860* ___m_CanvasRenderer_13;
// UnityEngine.Canvas UnityEngine.UI.Graphic::m_Canvas
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* ___m_Canvas_14;
// System.Boolean UnityEngine.UI.Graphic::m_VertsDirty
bool ___m_VertsDirty_15;
// System.Boolean UnityEngine.UI.Graphic::m_MaterialDirty
bool ___m_MaterialDirty_16;
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyLayoutCallback
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___m_OnDirtyLayoutCallback_17;
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyVertsCallback
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___m_OnDirtyVertsCallback_18;
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyMaterialCallback
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___m_OnDirtyMaterialCallback_19;
// UnityEngine.Mesh UnityEngine.UI.Graphic::m_CachedMesh
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___m_CachedMesh_22;
// UnityEngine.Vector2[] UnityEngine.UI.Graphic::m_CachedUvs
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___m_CachedUvs_23;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween> UnityEngine.UI.Graphic::m_ColorTweenRunner
TweenRunner_1_t5BB0582F926E75E2FE795492679A6CF55A4B4BC4* ___m_ColorTweenRunner_24;
// System.Boolean UnityEngine.UI.Graphic::<useLegacyMeshGeneration>k__BackingField
bool ___U3CuseLegacyMeshGenerationU3Ek__BackingField_25;
};
struct Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931_StaticFields
{
// UnityEngine.Material UnityEngine.UI.Graphic::s_DefaultUI
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_DefaultUI_4;
// UnityEngine.Texture2D UnityEngine.UI.Graphic::s_WhiteTexture
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___s_WhiteTexture_5;
// UnityEngine.Mesh UnityEngine.UI.Graphic::s_Mesh
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___s_Mesh_20;
// UnityEngine.UI.VertexHelper UnityEngine.UI.Graphic::s_VertexHelper
VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE* ___s_VertexHelper_21;
};
// UnityEngine.InputSystem.Mouse
struct Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F : public Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A
{
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Mouse::<scroll>k__BackingField
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CscrollU3Ek__BackingField_45;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Mouse::<leftButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CleftButtonU3Ek__BackingField_46;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Mouse::<middleButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CmiddleButtonU3Ek__BackingField_47;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Mouse::<rightButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CrightButtonU3Ek__BackingField_48;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Mouse::<backButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CbackButtonU3Ek__BackingField_49;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Mouse::<forwardButton>k__BackingField
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CforwardButtonU3Ek__BackingField_50;
// UnityEngine.InputSystem.Controls.IntegerControl UnityEngine.InputSystem.Mouse::<clickCount>k__BackingField
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* ___U3CclickCountU3Ek__BackingField_51;
};
struct Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F_StaticFields
{
// UnityEngine.InputSystem.Mouse UnityEngine.InputSystem.Mouse::<current>k__BackingField
Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* ___U3CcurrentU3Ek__BackingField_52;
// UnityEngine.InputSystem.Mouse UnityEngine.InputSystem.Mouse::s_PlatformMouseDevice
Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* ___s_PlatformMouseDevice_53;
};
// UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase
struct SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706 : public LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B
{
// System.Single UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::m_TurnAmount
float ___m_TurnAmount_8;
// System.Single UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::m_DebounceTime
float ___m_DebounceTime_9;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::m_EnableTurnLeftRight
bool ___m_EnableTurnLeftRight_10;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::m_EnableTurnAround
bool ___m_EnableTurnAround_11;
// System.Single UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::m_CurrentTurnAmount
float ___m_CurrentTurnAmount_12;
// System.Single UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::m_TimeStarted
float ___m_TimeStarted_13;
};
// UnityEngine.XR.Interaction.Toolkit.TeleportationProvider
struct TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972 : public LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B
{
// UnityEngine.XR.Interaction.Toolkit.TeleportRequest UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::<currentRequest>k__BackingField
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE ___U3CcurrentRequestU3Ek__BackingField_8;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::<validRequest>k__BackingField
bool ___U3CvalidRequestU3Ek__BackingField_9;
};
// UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor
struct XRBaseControllerInteractor_t718A447F8F3D646B51B42E1FAFEA2C1A1EF1C66E : public XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158
{
// UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor/InputTriggerType UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_SelectActionTrigger
int32_t ___m_SelectActionTrigger_25;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HideControllerOnSelect
bool ___m_HideControllerOnSelect_26;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayAudioClipOnSelectEntered
bool ___m_PlayAudioClipOnSelectEntered_27;
// UnityEngine.AudioClip UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_AudioClipForOnSelectEntered
AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20* ___m_AudioClipForOnSelectEntered_28;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayAudioClipOnSelectExited
bool ___m_PlayAudioClipOnSelectExited_29;
// UnityEngine.AudioClip UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_AudioClipForOnSelectExited
AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20* ___m_AudioClipForOnSelectExited_30;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayAudioClipOnSelectCanceled
bool ___m_PlayAudioClipOnSelectCanceled_31;
// UnityEngine.AudioClip UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_AudioClipForOnSelectCanceled
AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20* ___m_AudioClipForOnSelectCanceled_32;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayAudioClipOnHoverEntered
bool ___m_PlayAudioClipOnHoverEntered_33;
// UnityEngine.AudioClip UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_AudioClipForOnHoverEntered
AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20* ___m_AudioClipForOnHoverEntered_34;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayAudioClipOnHoverExited
bool ___m_PlayAudioClipOnHoverExited_35;
// UnityEngine.AudioClip UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_AudioClipForOnHoverExited
AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20* ___m_AudioClipForOnHoverExited_36;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayAudioClipOnHoverCanceled
bool ___m_PlayAudioClipOnHoverCanceled_37;
// UnityEngine.AudioClip UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_AudioClipForOnHoverCanceled
AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20* ___m_AudioClipForOnHoverCanceled_38;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayHapticsOnSelectEntered
bool ___m_PlayHapticsOnSelectEntered_39;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticSelectEnterIntensity
float ___m_HapticSelectEnterIntensity_40;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticSelectEnterDuration
float ___m_HapticSelectEnterDuration_41;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayHapticsOnSelectExited
bool ___m_PlayHapticsOnSelectExited_42;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticSelectExitIntensity
float ___m_HapticSelectExitIntensity_43;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticSelectExitDuration
float ___m_HapticSelectExitDuration_44;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayHapticsOnSelectCanceled
bool ___m_PlayHapticsOnSelectCanceled_45;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticSelectCancelIntensity
float ___m_HapticSelectCancelIntensity_46;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticSelectCancelDuration
float ___m_HapticSelectCancelDuration_47;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayHapticsOnHoverEntered
bool ___m_PlayHapticsOnHoverEntered_48;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticHoverEnterIntensity
float ___m_HapticHoverEnterIntensity_49;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticHoverEnterDuration
float ___m_HapticHoverEnterDuration_50;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayHapticsOnHoverExited
bool ___m_PlayHapticsOnHoverExited_51;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticHoverExitIntensity
float ___m_HapticHoverExitIntensity_52;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticHoverExitDuration
float ___m_HapticHoverExitDuration_53;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_PlayHapticsOnHoverCanceled
bool ___m_PlayHapticsOnHoverCanceled_54;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticHoverCancelIntensity
float ___m_HapticHoverCancelIntensity_55;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_HapticHoverCancelDuration
float ___m_HapticHoverCancelDuration_56;
// UnityEngine.XR.Interaction.Toolkit.XRBaseController UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_Controller
XRBaseController_t44C1BB30A7E1D279DD2508F34D3352B33A9AD60C* ___m_Controller_57;
// UnityEngine.XR.Interaction.Toolkit.ActivateEventArgs UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_ActivateEventArgs
ActivateEventArgs_tAC81C18EA24D76411EE5A5D61523A551CCB46C3E* ___m_ActivateEventArgs_58;
// UnityEngine.XR.Interaction.Toolkit.DeactivateEventArgs UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_DeactivateEventArgs
DeactivateEventArgs_t7AE1163C39B5B95A4501EC961D8D643C369774D0* ___m_DeactivateEventArgs_59;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_ToggleSelectActive
bool ___m_ToggleSelectActive_60;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_WaitingForSelectDeactivate
bool ___m_WaitingForSelectDeactivate_61;
// UnityEngine.AudioSource UnityEngine.XR.Interaction.Toolkit.XRBaseControllerInteractor::m_EffectsAudioSource
AudioSource_t871AC2272F896738252F04EE949AEF5B241D3299* ___m_EffectsAudioSource_62;
};
// UnityEngine.XR.Interaction.Toolkit.XRController
struct XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F : public XRBaseController_t44C1BB30A7E1D279DD2508F34D3352B33A9AD60C
{
// UnityEngine.XR.XRNode UnityEngine.XR.Interaction.Toolkit.XRController::m_ControllerNode
int32_t ___m_ControllerNode_23;
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/Button UnityEngine.XR.Interaction.Toolkit.XRController::m_SelectUsage
int32_t ___m_SelectUsage_24;
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/Button UnityEngine.XR.Interaction.Toolkit.XRController::m_ActivateUsage
int32_t ___m_ActivateUsage_25;
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/Button UnityEngine.XR.Interaction.Toolkit.XRController::m_UIPressUsage
int32_t ___m_UIPressUsage_26;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRController::m_AxisToPressThreshold
float ___m_AxisToPressThreshold_27;
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/Button UnityEngine.XR.Interaction.Toolkit.XRController::m_RotateAnchorLeft
int32_t ___m_RotateAnchorLeft_28;
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/Button UnityEngine.XR.Interaction.Toolkit.XRController::m_RotateAnchorRight
int32_t ___m_RotateAnchorRight_29;
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/Button UnityEngine.XR.Interaction.Toolkit.XRController::m_MoveObjectIn
int32_t ___m_MoveObjectIn_30;
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/Button UnityEngine.XR.Interaction.Toolkit.XRController::m_MoveObjectOut
int32_t ___m_MoveObjectOut_31;
// UnityEngine.Experimental.XR.Interaction.BasePoseProvider UnityEngine.XR.Interaction.Toolkit.XRController::m_PoseProvider
BasePoseProvider_t55E2883DF2C8052200284D64B68471636876FA1D* ___m_PoseProvider_32;
// UnityEngine.XR.InputDevice UnityEngine.XR.Interaction.Toolkit.XRController::m_InputDevice
InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD ___m_InputDevice_33;
};
// UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider
struct ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E : public ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A
{
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::m_LeftHandMoveAction
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___m_LeftHandMoveAction_16;
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::m_RightHandMoveAction
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___m_RightHandMoveAction_17;
};
// UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider
struct ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7 : public ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A
{
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::m_LeftHandTurnAction
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___m_LeftHandTurnAction_9;
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::m_RightHandTurnAction
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___m_RightHandTurnAction_10;
};
// UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider
struct ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9 : public SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706
{
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::m_LeftHandSnapTurnAction
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___m_LeftHandSnapTurnAction_14;
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::m_RightHandSnapTurnAction
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___m_RightHandSnapTurnAction_15;
};
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider
struct DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC : public ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A
{
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider/InputAxes UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::m_InputBinding
int32_t ___m_InputBinding_16;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController> UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::m_Controllers
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* ___m_Controllers_17;
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::m_DeadzoneMin
float ___m_DeadzoneMin_18;
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::m_DeadzoneMax
float ___m_DeadzoneMax_19;
};
struct DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC_StaticFields
{
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2>[] UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::k_Vec2UsageList
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* ___k_Vec2UsageList_20;
};
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider
struct DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118 : public ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A
{
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider/InputAxes UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::m_InputBinding
int32_t ___m_InputBinding_9;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController> UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::m_Controllers
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* ___m_Controllers_10;
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::m_DeadzoneMin
float ___m_DeadzoneMin_11;
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::m_DeadzoneMax
float ___m_DeadzoneMax_12;
};
struct DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118_StaticFields
{
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2>[] UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::k_Vec2UsageList
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* ___k_Vec2UsageList_13;
};
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider
struct DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466 : public SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706
{
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider/InputAxes UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::m_TurnUsage
int32_t ___m_TurnUsage_14;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController> UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::m_Controllers
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* ___m_Controllers_15;
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::m_DeadZone
float ___m_DeadZone_16;
};
struct DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466_StaticFields
{
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2>[] UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::k_Vec2UsageList
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* ___k_Vec2UsageList_17;
};
// UnityEngine.XR.Interaction.Toolkit.TeleportationAnchor
struct TeleportationAnchor_t5C73F0B7F59911E6F9F98FA9156ECBC6E9DD9085 : public BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8
{
// UnityEngine.Transform UnityEngine.XR.Interaction.Toolkit.TeleportationAnchor::m_TeleportAnchorTransform
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___m_TeleportAnchorTransform_37;
};
// UnityEngine.XR.Interaction.Toolkit.TeleportationArea
struct TeleportationArea_t4E760401D8B7EBAA17DD75E248517C0ECBB608FD : public BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8
{
};
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster
struct TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149 : public BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832
{
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::m_IgnoreReversedGraphics
bool ___m_IgnoreReversedGraphics_6;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::m_CheckFor2DOcclusion
bool ___m_CheckFor2DOcclusion_7;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::m_CheckFor3DOcclusion
bool ___m_CheckFor3DOcclusion_8;
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::m_BlockingMask
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_BlockingMask_9;
// UnityEngine.QueryTriggerInteraction UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::m_RaycastTriggerInteraction
int32_t ___m_RaycastTriggerInteraction_10;
// UnityEngine.Canvas UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::m_Canvas
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* ___m_Canvas_11;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::m_HasWarnedEventCameraNull
bool ___m_HasWarnedEventCameraNull_12;
// UnityEngine.RaycastHit[] UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::m_OcclusionHits3D
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___m_OcclusionHits3D_13;
// UnityEngine.RaycastHit2D[] UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::m_OcclusionHits2D
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* ___m_OcclusionHits2D_14;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::m_RaycastResultsCache
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* ___m_RaycastResultsCache_17;
};
struct TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields
{
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitComparer UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::s_RaycastHitComparer
RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F* ___s_RaycastHitComparer_15;
// UnityEngine.Vector3[] UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::s_Corners
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___s_Corners_16;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::s_SortedGraphics
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* ___s_SortedGraphics_18;
};
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster
struct TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542 : public BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832
{
// UnityEngine.QueryTriggerInteraction UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::m_RaycastTriggerInteraction
int32_t ___m_RaycastTriggerInteraction_6;
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::m_EventMask
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_EventMask_7;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::m_MaxRayIntersections
int32_t ___m_MaxRayIntersections_8;
// UnityEngine.Camera UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::m_EventCamera
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___m_EventCamera_9;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::m_HasWarnedEventCameraNull
bool ___m_HasWarnedEventCameraNull_10;
// UnityEngine.RaycastHit[] UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::m_RaycastHits
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___m_RaycastHits_11;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitComparer UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::m_RaycastHitComparer
RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485* ___m_RaycastHitComparer_12;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::m_RaycastArrayWrapper
RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* ___m_RaycastArrayWrapper_13;
// System.Collections.Generic.List`1<UnityEngine.RaycastHit> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::m_RaycastResultsCache
List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* ___m_RaycastResultsCache_14;
};
// UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule
struct UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7 : public BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1
{
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::m_ClickSpeed
float ___m_ClickSpeed_10;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::m_MoveDeadzone
float ___m_MoveDeadzone_11;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::m_RepeatDelay
float ___m_RepeatDelay_12;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::m_RepeatRate
float ___m_RepeatRate_13;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::m_TrackedDeviceDragThresholdMultiplier
float ___m_TrackedDeviceDragThresholdMultiplier_14;
// UnityEngine.Camera UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::<uiCamera>k__BackingField
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___U3CuiCameraU3Ek__BackingField_15;
// UnityEngine.EventSystems.AxisEventData UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::m_CachedAxisEvent
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* ___m_CachedAxisEvent_16;
// UnityEngine.EventSystems.PointerEventData UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::m_CachedPointerEvent
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___m_CachedPointerEvent_17;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::m_CachedTrackedDeviceEventData
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* ___m_CachedTrackedDeviceEventData_18;
// System.Action`2<UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::finalizeRaycastResults
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* ___finalizeRaycastResults_19;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::pointerEnter
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___pointerEnter_20;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::pointerExit
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___pointerExit_21;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::pointerDown
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___pointerDown_22;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::pointerUp
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___pointerUp_23;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::pointerClick
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___pointerClick_24;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::initializePotentialDrag
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___initializePotentialDrag_25;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::beginDrag
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___beginDrag_26;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::drag
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___drag_27;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::endDrag
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___endDrag_28;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::drop
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___drop_29;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::scroll
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___scroll_30;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::updateSelected
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* ___updateSelected_31;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.AxisEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::move
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* ___move_32;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::submit
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* ___submit_33;
// System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData> UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::cancel
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* ___cancel_34;
};
// UnityEngine.XR.Interaction.Toolkit.XRRayInteractor
struct XRRayInteractor_t0B25C1D5A938B199A71908E189AB351B43DA4C76 : public XRBaseControllerInteractor_t718A447F8F3D646B51B42E1FAFEA2C1A1EF1C66E
{
// UnityEngine.XR.Interaction.Toolkit.XRRayInteractor/LineType UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_LineType
int32_t ___m_LineType_66;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_BlendVisualLinePoints
bool ___m_BlendVisualLinePoints_67;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_MaxRaycastDistance
float ___m_MaxRaycastDistance_68;
// UnityEngine.Transform UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_ReferenceFrame
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___m_ReferenceFrame_69;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_Velocity
float ___m_Velocity_70;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_Acceleration
float ___m_Acceleration_71;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_AdditionalGroundHeight
float ___m_AdditionalGroundHeight_72;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_AdditionalFlightTime
float ___m_AdditionalFlightTime_73;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_EndPointDistance
float ___m_EndPointDistance_74;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_EndPointHeight
float ___m_EndPointHeight_75;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_ControlPointDistance
float ___m_ControlPointDistance_76;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_ControlPointHeight
float ___m_ControlPointHeight_77;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_SampleFrequency
int32_t ___m_SampleFrequency_78;
// UnityEngine.XR.Interaction.Toolkit.XRRayInteractor/HitDetectionType UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_HitDetectionType
int32_t ___m_HitDetectionType_79;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_SphereCastRadius
float ___m_SphereCastRadius_80;
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_RaycastMask
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_RaycastMask_81;
// UnityEngine.QueryTriggerInteraction UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_RaycastTriggerInteraction
int32_t ___m_RaycastTriggerInteraction_82;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_HitClosestOnly
bool ___m_HitClosestOnly_83;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_KeepSelectedTargetValid
bool ___m_KeepSelectedTargetValid_84;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_HoverToSelect
bool ___m_HoverToSelect_85;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_HoverTimeToSelect
float ___m_HoverTimeToSelect_86;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_EnableUIInteraction
bool ___m_EnableUIInteraction_87;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_AllowAnchorControl
bool ___m_AllowAnchorControl_88;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_UseForceGrab
bool ___m_UseForceGrab_89;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_RotateSpeed
float ___m_RotateSpeed_90;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_TranslateSpeed
float ___m_TranslateSpeed_91;
// UnityEngine.Transform UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_AnchorRotateReferenceFrame
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___m_AnchorRotateReferenceFrame_92;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_ValidTargets
List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___m_ValidTargets_93;
// UnityEngine.Transform UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_OriginalAttachTransform
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___m_OriginalAttachTransform_94;
// UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_InputModule
XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* ___m_InputModule_95;
// UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_RegisteredInputModule
XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* ___m_RegisteredInputModule_96;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_CurrentNearestObject
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___m_CurrentNearestObject_97;
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_LastTimeHoveredObjectChanged
float ___m_LastTimeHoveredObjectChanged_98;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_PassedHoverTimeToSelect
bool ___m_PassedHoverTimeToSelect_99;
// UnityEngine.RaycastHit[] UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_RaycastHits
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___m_RaycastHits_100;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_RaycastHitsCount
int32_t ___m_RaycastHitsCount_101;
// UnityEngine.XR.Interaction.Toolkit.XRRayInteractor/RaycastHitComparer UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_RaycastHitComparer
RaycastHitComparer_tC59C36D577B7426F5EE8E3AE65B988F953757E9D* ___m_RaycastHitComparer_102;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRRayInteractor/SamplePoint> UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_SamplePoints
List_1_tC0F6311D5ACC55EC4184D225E50673DBDAC555BD* ___m_SamplePoints_103;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_SamplePointsFrameUpdated
int32_t ___m_SamplePointsFrameUpdated_104;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_RaycastHitEndpointIndex
int32_t ___m_RaycastHitEndpointIndex_105;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_UIRaycastHitEndpointIndex
int32_t ___m_UIRaycastHitEndpointIndex_106;
// UnityEngine.Vector3[] UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_ControlPoints
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___m_ControlPoints_107;
// UnityEngine.Vector3[] UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::m_HitChordControlPoints
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___m_HitChordControlPoints_108;
};
struct XRRayInteractor_t0B25C1D5A938B199A71908E189AB351B43DA4C76_StaticFields
{
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRRayInteractor/SamplePoint> UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::s_ScratchSamplePoints
List_1_tC0F6311D5ACC55EC4184D225E50673DBDAC555BD* ___s_ScratchSamplePoints_109;
// UnityEngine.Vector3[] UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::s_ScratchControlPoints
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___s_ScratchControlPoints_110;
};
// UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule
struct XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0 : public UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7
{
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::m_MaxTrackedDeviceRaycastDistance
float ___m_MaxTrackedDeviceRaycastDistance_35;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::m_EnableXRInput
bool ___m_EnableXRInput_36;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::m_EnableMouseInput
bool ___m_EnableMouseInput_37;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::m_EnableTouchInput
bool ___m_EnableTouchInput_38;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseModel UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::m_Mouse
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37 ___m_Mouse_39;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch> UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::m_RegisteredTouches
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* ___m_RegisteredTouches_40;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::m_RollingInteractorIndex
int32_t ___m_RollingInteractorIndex_41;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor> UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::m_RegisteredInteractors
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* ___m_RegisteredInteractors_42;
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2>[]
struct InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91 : public RuntimeArray
{
ALIGN_FIELD (8) InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C m_Items[1];
inline InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CnameU3Ek__BackingField_0), (void*)NULL);
}
inline InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CnameU3Ek__BackingField_0), (void*)NULL);
}
};
// UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo[]
struct ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC : public RuntimeArray
{
ALIGN_FIELD (8) ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 m_Items[1];
inline ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___name_0), (void*)NULL);
}
inline ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___name_0), (void*)NULL);
}
};
// UnityEngine.RaycastHit[]
struct RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8 : public RuntimeArray
{
ALIGN_FIELD (8) RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 m_Items[1];
inline RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 value)
{
m_Items[index] = value;
}
};
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7 : public RuntimeArray
{
ALIGN_FIELD (8) RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA m_Items[1];
inline RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C : public RuntimeArray
{
ALIGN_FIELD (8) Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 m_Items[1];
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Touch[]
struct TouchU5BU5D_t242545870BFCA81F368CCF82E00F9E2A7FB523B3 : public RuntimeArray
{
ALIGN_FIELD (8) Touch_t03E51455ED508492B3F278903A0114FA0E87B417 m_Items[1];
inline Touch_t03E51455ED508492B3F278903A0114FA0E87B417 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Touch_t03E51455ED508492B3F278903A0114FA0E87B417* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Touch_t03E51455ED508492B3F278903A0114FA0E87B417 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Touch_t03E51455ED508492B3F278903A0114FA0E87B417 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Touch_t03E51455ED508492B3F278903A0114FA0E87B417* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Touch_t03E51455ED508492B3F278903A0114FA0E87B417 value)
{
m_Items[index] = value;
}
};
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
{
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData[]
struct RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F : public RuntimeArray
{
ALIGN_FIELD (8) RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD m_Items[1];
inline RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CgraphicU3Ek__BackingField_0), (void*)NULL);
}
inline RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CgraphicU3Ek__BackingField_0), (void*)NULL);
}
};
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7 : public RuntimeArray
{
ALIGN_FIELD (8) RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 m_Items[1];
inline RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
inline RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
};
// UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor[]
struct RegisteredInteractorU5BU5D_t33AC6CD1C7F2D832B7436B5E1F4F4914E9F078B7 : public RuntimeArray
{
ALIGN_FIELD (8) RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E m_Items[1];
inline RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___interactor_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3ChoverTargetsU3Ek__BackingField_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CpointerTargetU3Ek__BackingField_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CpressedRaycastU3Ek__BackingField_6))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CpressedRaycastU3Ek__BackingField_6))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CpressedGameObjectU3Ek__BackingField_7), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CpressedGameObjectRawU3Ek__BackingField_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CdraggedGameObjectU3Ek__BackingField_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___model_1))->___m_RaycastPoints_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___U3CcurrentRaycastU3Ek__BackingField_10))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___U3CcurrentRaycastU3Ek__BackingField_10))->___module_1), (void*)NULL);
#endif
}
inline RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___interactor_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3ChoverTargetsU3Ek__BackingField_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CpointerTargetU3Ek__BackingField_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CpressedRaycastU3Ek__BackingField_6))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CpressedRaycastU3Ek__BackingField_6))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CpressedGameObjectU3Ek__BackingField_7), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CpressedGameObjectRawU3Ek__BackingField_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___m_ImplementationData_1))->___U3CdraggedGameObjectU3Ek__BackingField_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___model_1))->___m_RaycastPoints_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___U3CcurrentRaycastU3Ek__BackingField_10))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_1))->___U3CcurrentRaycastU3Ek__BackingField_10))->___module_1), (void*)NULL);
#endif
}
};
// UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch[]
struct RegisteredTouchU5BU5D_tC266F7A4629252045ECEBE7BFA7219C15AF92FD7 : public RuntimeArray
{
ALIGN_FIELD (8) RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 m_Items[1];
inline RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3ChoverTargetsU3Ek__BackingField_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CpointerTargetU3Ek__BackingField_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CpressedRaycastU3Ek__BackingField_5))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CpressedRaycastU3Ek__BackingField_5))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CpressedGameObjectU3Ek__BackingField_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CpressedGameObjectRawU3Ek__BackingField_7), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CdraggedGameObjectU3Ek__BackingField_8), (void*)NULL);
#endif
}
inline RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3ChoverTargetsU3Ek__BackingField_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CpointerTargetU3Ek__BackingField_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CpressedRaycastU3Ek__BackingField_5))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CpressedRaycastU3Ek__BackingField_5))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CpressedGameObjectU3Ek__BackingField_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CpressedGameObjectRawU3Ek__BackingField_7), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___model_2))->___m_ImplementationData_6))->___U3CdraggedGameObjectU3Ek__BackingField_8), (void*)NULL);
#endif
}
};
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_pinvoke(const ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D& unmarshaled, ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_pinvoke_back(const ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_pinvoke& marshaled, ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D& unmarshaled);
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_pinvoke_cleanup(ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_com(const ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D& unmarshaled, ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_com& marshaled);
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_com_back(const ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_com& marshaled, ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D& unmarshaled);
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_com_cleanup(ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_com& marshaled);
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_pinvoke(const RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023& unmarshaled, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_pinvoke_back(const RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke& marshaled, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023& unmarshaled);
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_pinvoke_cleanup(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_com(const RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023& unmarshaled, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com& marshaled);
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_com_back(const RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com& marshaled, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023& unmarshaled);
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_com_cleanup(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com& marshaled);
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_pinvoke(const MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729& unmarshaled, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_pinvoke_back(const MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke& marshaled, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729& unmarshaled);
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_pinvoke_cleanup(MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_pinvoke(const InternalData_t7100B940380492C19774536244433DFD434CEB1F& unmarshaled, InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_pinvoke_back(const InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_pinvoke& marshaled, InternalData_t7100B940380492C19774536244433DFD434CEB1F& unmarshaled);
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_pinvoke_cleanup(InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_com(const MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729& unmarshaled, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com& marshaled);
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_com_back(const MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com& marshaled, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729& unmarshaled);
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_com_cleanup(MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com& marshaled);
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_com(const InternalData_t7100B940380492C19774536244433DFD434CEB1F& unmarshaled, InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_com& marshaled);
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_com_back(const InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_com& marshaled, InternalData_t7100B940380492C19774536244433DFD434CEB1F& unmarshaled);
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_com_cleanup(InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_com& marshaled);
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_pinvoke(const ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3& unmarshaled, ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_pinvoke_back(const ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_pinvoke& marshaled, ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3& unmarshaled);
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_pinvoke_cleanup(ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_com(const ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3& unmarshaled, ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_com& marshaled);
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_com_back(const ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_com& marshaled, ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3& unmarshaled);
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_com_cleanup(ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_com& marshaled);
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_pinvoke(const ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC& unmarshaled, ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_pinvoke_back(const ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_pinvoke& marshaled, ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC& unmarshaled);
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_pinvoke_cleanup(ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_com(const ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC& unmarshaled, ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_com& marshaled);
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_com_back(const ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_com& marshaled, ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC& unmarshaled);
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_com_cleanup(ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_com& marshaled);
// System.Void UnityEngine.Events.UnityEvent`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m8D77F4F05F69D0E52E8A445322811EEC25987525_gshared (UnityEvent_1_t3CE03B42D5873C0C0E0692BEE72E1E6D5399F205* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1<System.Object>::Remove(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<System.Object>::get_registeredSnapshot()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* RegistrationList_1_get_registeredSnapshot_mB07CB8F0D54483210DCB65E3485609E0ABBE490E_gshared_inline (RegistrationList_1_t99EE15A7482978101DC3214641F5003F17001659* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<System.Object>::IsStillRegistered(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegistrationList_1_IsStillRegistered_m374D07E60BAD713523EAB1B8C7D0DD177012BE94_gshared (RegistrationList_1_t99EE15A7482978101DC3214641F5003F17001659* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<System.Object>::Register(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegistrationList_1_Register_m0180D60A59DADC8579AC0D1F5975009E8E1F9F78_gshared (RegistrationList_1_t99EE15A7482978101DC3214641F5003F17001659* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Void System.Action`1<System.Object>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<System.Object>::Unregister(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegistrationList_1_Unregister_mEDC309C281E3430255DA75943324115B135B3BE2_gshared (RegistrationList_1_t99EE15A7482978101DC3214641F5003F17001659* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject** ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<System.Object>::GetRegisteredItems(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegistrationList_1_GetRegisteredItems_m5C0934C90E1708DD2EA83619270AD3A862CC9DAA_gshared (RegistrationList_1_t99EE15A7482978101DC3214641F5003F17001659* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___results0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<System.Object>::IsRegistered(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegistrationList_1_IsRegistered_m42E579B61E99C1CBF07334EA55C1C165C364A527_gshared (RegistrationList_1_t99EE15A7482978101DC3214641F5003F17001659* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_mCFB5EA7351D5860D2B91592B91A84CA265A41433_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.HashSet`1<System.Object>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1_Clear_m75A6528F0B47448EB3B3A05EC379260E9BDFC2DD_gshared (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.HashSet`1<System.Object>::Add(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Add_m2CD7657B3459B61DD4BBA47024AC71F7D319658B_gshared (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.HashSet`1<System.Object>::Contains(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Contains_m9BACE52BFA0BD83C601529D3629118453E459BBB_gshared (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<System.Object>::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegistrationList_1_Flush_mD6D069FF510189D35150DD43E21EFAE1600CCFD3_gshared (RegistrationList_1_t99EE15A7482978101DC3214641F5003F17001659* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegistrationList_1__ctor_m1F3D485A1DF3D1CF4AF63FE687E4824EE1FB5475_gshared (RegistrationList_1_t99EE15A7482978101DC3214641F5003F17001659* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.HashSet`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1__ctor_m9132EE1422BAA45E44B7FFF495F378790D36D90E_gshared (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, const RuntimeMethod* method) ;
// T UnityEngine.Component::GetComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
// System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4_gshared (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// T UnityEngine.GameObject::GetComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GameObject_GetComponent_TisRuntimeObject_m6EAED4AA356F0F48288F67899E5958792395563B_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.InputAction::ReadValue<UnityEngine.Vector2>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_gshared (InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* __this, const RuntimeMethod* method) ;
// T UnityEngine.Object::FindObjectOfType<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Object_FindObjectOfType_TisRuntimeObject_m9990A7304DF02BA1ED160587D1C2F6DAE89BB343_gshared (const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.InputFeatureUsage`1<System.Boolean>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputFeatureUsage_1__ctor_mEB36F8937385A1065CD9F48AE2DAD9EAE49EFCE7_gshared (InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637* __this, String_t* ___usageName0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.InputFeatureUsage`1<System.Single>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputFeatureUsage_1__ctor_m6357AF3E3C16046E807776AA58473ABC83F88989_gshared (InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848* __this, String_t* ___usageName0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2>::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A_gshared (InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C* __this, String_t* ___usageName0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Clear()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Single>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m97AA589FB0CCE1240A0C9F7F7C32573B94FD2592_gshared (Dictionary_2_t1E85CF9786F2C7C796C8CC2EB86ADA13A263ECAB* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Single>::set_Item(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mB3364B977072656B662C984B4F7E39394C341B2A_gshared (Dictionary_2_t1E85CF9786F2C7C796C8CC2EB86ADA13A263ECAB* __this, RuntimeObject* ___key0, float ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mEB3B61CB86B1419919338B0668DC4E568C2FFF93_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* ___comparison0, const RuntimeMethod* method) ;
// TValue System.Collections.Generic.Dictionary`2<System.Object,System.Single>::get_Item(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Dictionary_2_get_Item_m592530FB0319E03D62CA02B0349798F60BC09A31_gshared (Dictionary_2_t1E85CF9786F2C7C796C8CC2EB86ADA13A263ECAB* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Single>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7090A0C6890D4FE1C83844A6616D8E9A5AEC802C_gshared (Dictionary_2_t1E85CF9786F2C7C796C8CC2EB86ADA13A263ECAB* __this, const RuntimeMethod* method) ;
// System.Void System.Comparison`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_mC1E8799BBCE317B612875123C9C894BD470BFE6A_gshared (Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void UnityEngine.SubsystemManager::GetInstances<System.Object>(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemManager_GetInstances_TisRuntimeObject_m483A6D40AA7F54CA9B8E450BD763C2F4FB515A16_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___subsystems0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.HashSet`1<System.Object>::Remove(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Remove_mF1D84C0A2829DDA2A0CEE1D82A5B999B5F6627CB_gshared (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9 Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCD4950A75FFADD54AF354D48C6C0DB0B5A22A5F4_gshared (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEA5E01B81EB943B7003D87CEC1B6040524F0402C_gshared (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.HashSet`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HashSet_1_get_Count_m41CC85EEB7855CEFA3BC7A32F115387939318ED3_gshared_inline (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.HashSet`1/Enumerator<T> System.Collections.Generic.HashSet`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8 HashSet_1_GetEnumerator_m143B98FEED7E9CABA2C494AB2F04DAD60A504635_gshared (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.HashSet`1/Enumerator<System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m139A176CD271A0532D75BE08DA7831C8C45CE28F_gshared_inline (Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m27565F5ACCCC75C3DD34CC4CAE3E6AEFEB9144A6_gshared (Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFB582AEAA2E73F3128B5571197BEDE256A83F657_gshared (Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<UnityEngine.Vector3>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810_gshared (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector3>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_gshared_inline (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::Clear()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mEF6F24F9B19B3360DC8CAAD446C7696B33FC39B8_gshared_inline (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63 List_1_GetEnumerator_m98886FC8DF151AF831AD3B47051966D509D484E2_gshared (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD Enumerator_get_Current_m4EB063F639AF28B245521BD522C30F593726BBB7_gshared_inline (Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___item0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8813B70B0648CF6A6D0FBFAC93417D0BF62C140E_gshared (Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFBDA2B2BB848674E3458E8F995047979D6A956F2_gshared (Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mE6C474BBCAFBE5F68FF0E6FF95C034FE7AD19956_gshared_inline (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD ___item0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.SortingHelpers::Sort<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortingHelpers_Sort_TisRaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_mF080C3925716C90E9068635B64500AB651DD46D1_gshared (RuntimeObject* ___hits0, RuntimeObject* ___comparer1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m8E9878CB260E91008DF9EBD16392E9B92D08093E_gshared (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mF6CAC69CE096CD58F1DC4EDEB0927A8A83524BCB_gshared (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC54E2BCBE43279A96FC082F5CDE2D76388BD8F9C_gshared (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::Clear()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m455780C5A45049F9BDC25EAD3BA10A681D16385D_gshared_inline (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* __this, const RuntimeMethod* method) ;
// System.Void System.Array::Resize<UnityEngine.RaycastHit>(T[]&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Resize_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mD5BCCA6C065C9A0784DDA90B211D93A05AF83339_gshared (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8** ___array0, int32_t ___newSize1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.RaycastHit>::Clear()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mBB1C1097E6EAB4F19E432E94B29D294EC9313A1F_gshared_inline (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.RaycastHit>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m06E7BBAD0E1AC28E9F9E403F1A5B7E56D2343F78_gshared (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.SortingHelpers::Sort<UnityEngine.RaycastHit>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortingHelpers_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mE36842A81DD293C053693681100FBDC73AF79D0D_gshared (RuntimeObject* ___hits0, RuntimeObject* ___comparer1, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.RaycastHit>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F List_1_GetEnumerator_mDD871A2334871E99D82AAD9D0843B05D712F8799_gshared (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.RaycastHit>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 Enumerator_get_Current_mCD34ACB6BE5F6BEEEE297AD23C2C1FC1174813FF_gshared_inline (Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.RaycastHit>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2769E67BF3F70EE5E543F882C4C77FFDDA59EF11_gshared (Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.RaycastHit>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mB4EDC66D3E8011A4ED117827EB18BEAD7B269CB6_gshared (Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.RaycastHit>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7715EBA40C1E9928D580B0D503FA394AB9503EFC_gshared (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* __this, const RuntimeMethod* method) ;
// System.Void System.Action`2<System.Object,System.Object>::Invoke(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t297B5C47242D1B98BEC955E2804FA142B43E7927* ___functor2, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Clear()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<System.Object>(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_GetEventHandler_TisRuntimeObject_mCC6FD728B0AB18205C62403EB509BBF746BCBE2B_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___root0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mE7193CDED91D2857455C645004C9195F9703899B_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___root0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t297B5C47242D1B98BEC955E2804FA142B43E7927* ___callbackFunction2, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_gshared (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_gshared_inline (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m45F907169865B34600173F8463808BC00FE4120B_gshared_inline (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E ___item0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::set_Item(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m977C691A5E504255565A1351BB052D5D238E20ED_gshared (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, int32_t ___index0, RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mD1B83CE5C1865EA57FFDC6B54A38BD746329FF24_gshared (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, int32_t ___index0, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.InputControl`1<UnityEngine.Vector2>::ReadValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 InputControl_1_ReadValue_m362E05F00FE8CF8FC52F0D673291907EC7FA6541_gshared (InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B_gshared (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_gshared_inline (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>::set_Item(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_mEA01B6D51EE3751D4467647ED8D246D6B5F4F0C2_gshared (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, int32_t ___index0, RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m2B08809ACCCD8B2CAF21468D0671EB5643A4A2CA_gshared_inline (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 ___item0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mF3DDC40240537B6E9B272FDFF5F6335E97934C47_gshared (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m94BD49CB8971447490F93532B823C4E4F3DAE5A4_gshared (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.Shader::PropertyToID(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Shader_PropertyToID_mF5F7BA2EFF23D83482ECDE4C34227145D817B1EB (String_t* ___name0, const RuntimeMethod* method) ;
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::.ctor()
inline void UnityEvent_1__ctor_m3AD21B8B26995B681EBEFE4D13BA498B4E61D7F6 (UnityEvent_1_tA1FEDF2DDBADC48134C49F2E20E0FC2BA29AA88D* __this, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_tA1FEDF2DDBADC48134C49F2E20E0FC2BA29AA88D*, const RuntimeMethod*))UnityEvent_1__ctor_m8D77F4F05F69D0E52E8A445322811EEC25987525_gshared)(__this, method);
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::.ctor()
inline void UnityEvent_1__ctor_mF55C58688D34DDA5177764806B2CCEB5F28FAE0F (UnityEvent_1_tD0BC7F894F453C8793ED59E99D035F8314FF379A* __this, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_tD0BC7F894F453C8793ED59E99D035F8314FF379A*, const RuntimeMethod*))UnityEvent_1__ctor_m8D77F4F05F69D0E52E8A445322811EEC25987525_gshared)(__this, method);
}
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs>::.ctor()
inline void UnityEvent_1__ctor_mD2633EF820530931EAF2FB29AB58956AEF611106 (UnityEvent_1_tF375C8038EBFFA6D72A05014787BE5CDB0A95008* __this, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_tF375C8038EBFFA6D72A05014787BE5CDB0A95008*, const RuntimeMethod*))UnityEvent_1__ctor_m8D77F4F05F69D0E52E8A445322811EEC25987525_gshared)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInteractionEventArgs__ctor_mFBE9F5A938004146A92AFBA8FC7382B4CE7F7995 (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs>::.ctor()
inline void UnityEvent_1__ctor_mA086380519C0EE2CA2F6E67ECE2E468346318190 (UnityEvent_1_t4B30B07A73CFB8205961561C2945408585355F26* __this, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_t4B30B07A73CFB8205961561C2945408585355F26*, const RuntimeMethod*))UnityEvent_1__ctor_m8D77F4F05F69D0E52E8A445322811EEC25987525_gshared)(__this, method);
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs>::.ctor()
inline void UnityEvent_1__ctor_m9A22AE02370829BC50BCF8446C62BA97F6AEBF16 (UnityEvent_1_t8C99CC340A51BB1718EAC4102D4F90EE78F667F8* __this, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_t8C99CC340A51BB1718EAC4102D4F90EE78F667F8*, const RuntimeMethod*))UnityEvent_1__ctor_m8D77F4F05F69D0E52E8A445322811EEC25987525_gshared)(__this, method);
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs>::.ctor()
inline void UnityEvent_1__ctor_m6869722916D4191AE0CA5EA0785E7D3E1651D771 (UnityEvent_1_t6653C165067CA012C0771D17D5AF3506C58F446B* __this, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_t6653C165067CA012C0771D17D5AF3506C58F446B*, const RuntimeMethod*))UnityEvent_1__ctor_m8D77F4F05F69D0E52E8A445322811EEC25987525_gshared)(__this, method);
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.ActivateEventArgs>::.ctor()
inline void UnityEvent_1__ctor_mAD6CA690018D1D4ED5CF39C974B9555205D306C3 (UnityEvent_1_tEC38375A3667634400B758463CD6936646CE1ED8* __this, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_tEC38375A3667634400B758463CD6936646CE1ED8*, const RuntimeMethod*))UnityEvent_1__ctor_m8D77F4F05F69D0E52E8A445322811EEC25987525_gshared)(__this, method);
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.XR.Interaction.Toolkit.DeactivateEventArgs>::.ctor()
inline void UnityEvent_1__ctor_mA5D691D0FA13310D1357A593DB2FE896066BB1DC (UnityEvent_1_tE847E7CEE2FFE0AFBB1D8E8F6D62843F7AF62E40* __this, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_tE847E7CEE2FFE0AFBB1D8E8F6D62843F7AF62E40*, const RuntimeMethod*))UnityEvent_1__ctor_m8D77F4F05F69D0E52E8A445322811EEC25987525_gshared)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseRegistrationEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRegistrationEventArgs__ctor_m161AA13E866857D922FA734ECFC87A1A3915D681 (BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21* __this, const RuntimeMethod* method) ;
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C (Delegate_t* ___a0, Delegate_t* ___b1, const RuntimeMethod* method) ;
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116 (Delegate_t* ___source0, Delegate_t* ___value1, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRInteractionManager> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::get_activeInteractionManagers()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* XRInteractionManager_get_activeInteractionManagers_m5A2A2413296876F10164C973358D57FA2B3EB1E5_inline (const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRInteractionManager>::Add(T)
inline void List_1_Add_mAC275A6AD5BAF441B0B613B730F3CB6DFC5351A5_inline (List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* __this, XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B*, XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void UnityEngine.Events.UnityAction::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131 (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void UnityEngine.Application::add_onBeforeRender(UnityEngine.Events.UnityAction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Application_add_onBeforeRender_m10ABDBFFB06BEA4E016EDE6AFBAF474986DF03EE (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.Application::remove_onBeforeRender(UnityEngine.Events.UnityAction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Application_remove_onBeforeRender_m8E7F9777E8D9C69269A69D2429B8C32A24A52597 (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRInteractionManager>::Remove(T)
inline bool List_1_Remove_mC8F44A1040275FF01C54D3CA3DE9DF963B8B4507 (List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* __this, XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B*, XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD*, const RuntimeMethod*))List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared)(__this, ___item0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::FlushRegistration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_FlushRegistration_mD3A98438B16A1A1CF88A66E6935578619C60251A (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, const RuntimeMethod* method) ;
// Unity.Profiling.ProfilerMarker/AutoScope Unity.Profiling.ProfilerMarker::Auto()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, const RuntimeMethod* method) ;
// System.Void Unity.Profiling.ProfilerMarker/AutoScope::Dispose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline (AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::get_registeredSnapshot()
inline List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* RegistrationList_1_get_registeredSnapshot_m4D9B2ADE24FB0068235042702F5E33CAEED329A1_inline (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* __this, const RuntimeMethod* method)
{
return (( List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* (*) (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52*, const RuntimeMethod*))RegistrationList_1_get_registeredSnapshot_mB07CB8F0D54483210DCB65E3485609E0ABBE490E_gshared_inline)(__this, method);
}
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::GetEnumerator()
inline Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1 List_1_GetEnumerator_mFCC042FED9DAA11ED85796F500191258E8EEE306 (List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* __this, const RuntimeMethod* method)
{
return (( Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1 (*) (List_1_tC6684CD164AA8009B3DC3C06499A47813321B877*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::get_Current()
inline XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* Enumerator_get_Current_mC1A1FC2C5810F5F0D86FCA778FC392FE71DC8AA7_inline (Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1* __this, const RuntimeMethod* method)
{
return (( XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* (*) (Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::IsStillRegistered(T)
inline bool RegistrationList_1_IsStillRegistered_m1E7ECF06FC7C79B6C8A8AD135D4B0BBAA74539D9 (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52*, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, const RuntimeMethod*))RegistrationList_1_IsStillRegistered_m374D07E60BAD713523EAB1B8C7D0DD177012BE94_gshared)(__this, ___item0, method);
}
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::GetValidTargets(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t02510C493B34D49F210C22C40442D863A08509CB* XRInteractionManager_GetValidTargets_m682F8B8F1BB671DADE1CC90A262ECEBDBA3DD49C (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___validTargets1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::MoveNext()
inline bool Enumerator_MoveNext_mDFD000D29E07CFC47B33BAF84EFC4EE39184368A (Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::Dispose()
inline void Enumerator_Dispose_m376C7B614B2C84EDEA8F43A62438413574C26649 (Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// System.Collections.Generic.List`1<T> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::get_registeredSnapshot()
inline List_1_t02510C493B34D49F210C22C40442D863A08509CB* RegistrationList_1_get_registeredSnapshot_m9473E5BC5CD3C22F9C198C6984F11C6D20790FF0_inline (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* __this, const RuntimeMethod* method)
{
return (( List_1_t02510C493B34D49F210C22C40442D863A08509CB* (*) (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1*, const RuntimeMethod*))RegistrationList_1_get_registeredSnapshot_mB07CB8F0D54483210DCB65E3485609E0ABBE490E_gshared_inline)(__this, method);
}
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::GetEnumerator()
inline Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A (List_1_t02510C493B34D49F210C22C40442D863A08509CB* __this, const RuntimeMethod* method)
{
return (( Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F (*) (List_1_t02510C493B34D49F210C22C40442D863A08509CB*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::get_Current()
inline XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_inline (Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F* __this, const RuntimeMethod* method)
{
return (( XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* (*) (Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::IsStillRegistered(T)
inline bool RegistrationList_1_IsStillRegistered_mE833446C9980E1D3ED1CF4DF9C99493D64D19D76 (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, const RuntimeMethod*))RegistrationList_1_IsStillRegistered_m374D07E60BAD713523EAB1B8C7D0DD177012BE94_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::MoveNext()
inline bool Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A (Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Dispose()
inline void Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032 (Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::Register(T)
inline bool RegistrationList_1_Register_m253E4BFE742E1612EEE8EDD487EA2BBFF08F08B9 (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52*, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, const RuntimeMethod*))RegistrationList_1_Register_m0180D60A59DADC8579AC0D1F5975009E8E1F9F78_gshared)(__this, ___item0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseRegistrationEventArgs::set_manager(UnityEngine.XR.Interaction.Toolkit.XRInteractionManager)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BaseRegistrationEventArgs_set_manager_mDCA0E4515B5577A245206663B79F1BD793865AA5_inline (BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21* __this, XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs::set_interactor(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteractorRegisteredEventArgs_set_interactor_mC7D4F7F96D374D0689576F9781A8059692A21B17_inline (InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs::get_interactor()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* InteractorRegisteredEventArgs_get_interactor_m5941F52A62289266C834D92590783488A171FAD8_inline (InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* __this, const RuntimeMethod* method) ;
// System.Void System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs>::Invoke(T)
inline void Action_1_Invoke_mFAD1E936D88D445859A758BFFC78F1C6EFC46BF5 (Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* __this, InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5*, InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared)(__this, ___obj0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::IsRegistered(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRInteractionManager_IsRegistered_mF3B3EB4CB278C9BCF8589AFE0EB3A416EEBB6CF2 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::Unregister(T)
inline bool RegistrationList_1_Unregister_m64C6C400470922647AF50AD797FFF0AE0B128439 (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52*, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, const RuntimeMethod*))RegistrationList_1_Unregister_mEDC309C281E3430255DA75943324115B135B3BE2_gshared)(__this, ___item0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs::set_interactor(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteractorUnregisteredEventArgs_set_interactor_m06E8669E5C820661A28255E6983ECD6FE607B4E9_inline (InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs::get_interactor()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* InteractorUnregisteredEventArgs_get_interactor_m850F10AA69039103E6E674733DB4CA93C4369E65_inline (InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* __this, const RuntimeMethod* method) ;
// System.Void System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs>::Invoke(T)
inline void Action_1_Invoke_m34572A2D485C4B87E3AADE940062C73D44F3E62F (Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* __this, InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0*, InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared)(__this, ___obj0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Register(T)
inline bool RegistrationList_1_Register_m7DCABDDB4796B0476939482CD2773B3AA8CE1734 (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, const RuntimeMethod*))RegistrationList_1_Register_m0180D60A59DADC8579AC0D1F5975009E8E1F9F78_gshared)(__this, ___item0, method);
}
// System.Collections.Generic.List`1<UnityEngine.Collider> UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::get_colliders()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* XRBaseInteractable_get_colliders_m7E5D104638AC4B5E5C77D40094AA52B9ABEB32FB_inline (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.Collider>::GetEnumerator()
inline Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420 (List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* __this, const RuntimeMethod* method)
{
return (( Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A (*) (List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.Collider>::get_Current()
inline Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_inline (Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A* __this, const RuntimeMethod* method)
{
return (( Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* (*) (Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___x0, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___y1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80 (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___key0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82*, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Add(TKey,TValue)
inline void Dictionary_2_Add_m76E02C9B05790A97DCAA8FD976C5D699ACC36A06 (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___key0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82*, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___key0, ___value1, method);
}
// System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m76BF8F3A6AD789E38B708848A2688D400AAC250A (String_t* ___format0, RuntimeObject* ___arg01, RuntimeObject* ___arg12, RuntimeObject* ___arg23, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method) ;
// System.Void UnityEngine.Debug::LogWarning(System.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m5C8299150E64600CBF5C92706AD610C21D0C0DC5 (RuntimeObject* ___message0, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___context1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Collider>::MoveNext()
inline bool Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1 (Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Collider>::Dispose()
inline void Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D (Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs::set_interactable(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteractableRegisteredEventArgs_set_interactable_m8FAF324ECEAFDB5BD64BE2D71A991B9A3FDACBB4_inline (InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs::get_interactable()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* InteractableRegisteredEventArgs_get_interactable_m8E24757B1B66EF6ED74A2BCC89A63E10364E7C6E_inline (InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* __this, const RuntimeMethod* method) ;
// System.Void System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs>::Invoke(T)
inline void Action_1_Invoke_mC17D7793688D010F3126A615FC594E301D0D7E73 (Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* __this, InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8*, InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared)(__this, ___obj0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::IsRegistered(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRInteractionManager_IsRegistered_m65C28B573DBC80DE8DBD06206B7F9AC60E3E4C6F (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Unregister(T)
inline bool RegistrationList_1_Unregister_mB689C6D9DF13F34D2096F76A4EC04C646D1CB12D (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, const RuntimeMethod*))RegistrationList_1_Unregister_mEDC309C281E3430255DA75943324115B135B3BE2_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Remove(TKey)
inline bool Dictionary_2_Remove_m05A7F101C863C57A729D38F2C1678CBA3FD3FCF2 (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82*, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76*, const RuntimeMethod*))Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared)(__this, ___key0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs::set_interactable(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteractableUnregisteredEventArgs_set_interactable_m0433D6227E005137B947C8C68C7131B2D3F7E1BF_inline (InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs::get_interactable()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* InteractableUnregisteredEventArgs_get_interactable_m6B266EFCEBB22E4EE3F3E1F86E9D3D2E6F9BCA05_inline (InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* __this, const RuntimeMethod* method) ;
// System.Void System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs>::Invoke(T)
inline void Action_1_Invoke_mF62C32833A5CA3B6D70A0905F43517B44F778668 (Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* __this, InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0*, InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared)(__this, ___obj0, method);
}
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::GetRegisteredItems(System.Collections.Generic.List`1<T>)
inline void RegistrationList_1_GetRegisteredItems_m7CD5E08831E2F32B03029FACF6586C2CD594928A (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* __this, List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* ___results0, const RuntimeMethod* method)
{
(( void (*) (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52*, List_1_tC6684CD164AA8009B3DC3C06499A47813321B877*, const RuntimeMethod*))RegistrationList_1_GetRegisteredItems_m5C0934C90E1708DD2EA83619270AD3A862CC9DAA_gshared)(__this, ___results0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::GetRegisteredItems(System.Collections.Generic.List`1<T>)
inline void RegistrationList_1_GetRegisteredItems_m1B926AF8964B1C5D223218C3D08486AFF6792CF7 (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* __this, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___results0, const RuntimeMethod* method)
{
(( void (*) (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1*, List_1_t02510C493B34D49F210C22C40442D863A08509CB*, const RuntimeMethod*))RegistrationList_1_GetRegisteredItems_m5C0934C90E1708DD2EA83619270AD3A862CC9DAA_gshared)(__this, ___results0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::IsRegistered(T)
inline bool RegistrationList_1_IsRegistered_m9D9D660882469D157EEB9DE7915A910E9BD27288 (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52*, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, const RuntimeMethod*))RegistrationList_1_IsRegistered_m42E579B61E99C1CBF07334EA55C1C165C364A527_gshared)(__this, ___item0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::IsRegistered(T)
inline bool RegistrationList_1_IsRegistered_mF6023184299C85A52C86AE91C564809BB5B49E14 (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, const RuntimeMethod*))RegistrationList_1_IsRegistered_m42E579B61E99C1CBF07334EA55C1C165C364A527_gshared)(__this, ___item0, method);
}
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::GetInteractableForCollider(UnityEngine.Collider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* XRInteractionManager_GetInteractableForCollider_m546BE05EAB715F319718D1A173325A8EE87EAD25 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___interactableCollider0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___x0, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___y1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Clear()
inline void Dictionary_2_Clear_m40262E1F68FF034440AAFD97105127989FC01B4A (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82*, const RuntimeMethod*))Dictionary_2_Clear_mCFB5EA7351D5860D2B91592B91A84CA265A41433_gshared)(__this, method);
}
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::RemoveAllUnregistered(UnityEngine.XR.Interaction.Toolkit.XRInteractionManager,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRInteractionManager_RemoveAllUnregistered_mF0644617A7589EC13D31B2E99930C402FD4E117E (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___manager0, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___interactables1, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::get_Count()
inline int32_t List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_inline (List_1_t02510C493B34D49F210C22C40442D863A08509CB* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t02510C493B34D49F210C22C40442D863A08509CB*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::get_Item(System.Int32)
inline XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F (List_1_t02510C493B34D49F210C22C40442D863A08509CB* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* (*) (List_1_t02510C493B34D49F210C22C40442D863A08509CB*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::RemoveAt(System.Int32)
inline void List_1_RemoveAt_m98D513CB3B528DDFCA9B1AA0C9A6350C06299C1F (List_1_t02510C493B34D49F210C22C40442D863A08509CB* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t02510C493B34D49F210C22C40442D863A08509CB*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___index0, method);
}
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::get_selectTarget()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* XRBaseInteractor_get_selectTarget_m2888C3BFA4B168C6DDD37CAC1A999BEF406596E4_inline (XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::get_selectingInteractor()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* XRBaseInteractable_get_selectingInteractor_mDA5536E167016B048166B2DC5061AE3F752B115A_inline (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::GetHoverTargets(System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRBaseInteractor_GetHoverTargets_m97B6CFE8D71144CF21C4D470482DAB9101D4AA35 (XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* __this, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___targets0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.HashSet`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Clear()
inline void HashSet_1_Clear_m60D5575FEC3B4BA030ECA79F40952F7A6FAF425B (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* __this, const RuntimeMethod* method)
{
(( void (*) (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782*, const RuntimeMethod*))HashSet_1_Clear_m75A6528F0B47448EB3B3A05EC379260E9BDFC2DD_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Add(T)
inline bool HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485 (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, const RuntimeMethod*))HashSet_1_Add_m2CD7657B3459B61DD4BBA47024AC71F7D319658B_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Contains(T)
inline bool HashSet_1_Contains_m39CBC6F250AA52AB65D1D155D740C35A6072245F (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, const RuntimeMethod*))HashSet_1_Contains_m9BACE52BFA0BD83C601529D3629118453E459BBB_gshared)(__this, ___item0, method);
}
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor> UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::get_hoveringInteractors()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* XRBaseInteractable_get_hoveringInteractors_mE0B8E9F9A3CFC8FE238AF4148B9B467DEA95F7C7_inline (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::get_Count()
inline int32_t List_1_get_Count_m135A9F055811F521A15CDBBEBBC9B062F364EE49_inline (List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tC6684CD164AA8009B3DC3C06499A47813321B877*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::get_Item(System.Int32)
inline XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* List_1_get_Item_m8803B45B5906AB61810300959ED9133A62A29586 (List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* (*) (List_1_tC6684CD164AA8009B3DC3C06499A47813321B877*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::get_isSelected()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRBaseInteractable_get_isSelected_m48487E7F2E3E1EDB6D9B6985FF146020F628B3CE_inline (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs::set_interactor(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BaseInteractionEventArgs_set_interactor_mD8877C3687E32637F0E1F67F83B4B0B8AF91C649_inline (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs::set_interactable(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BaseInteractionEventArgs_set_interactable_m2F82CCB58107BAB47A77981E751779A7A4FA3266_inline (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs::set_isCanceled(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SelectExitEventArgs_set_isCanceled_mCD4C4244EBD5D443FD62B581F29FF05B2751AF42_inline (SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs::set_isCanceled(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HoverExitEventArgs_set_isCanceled_mD30ECFAFDE30B96DB1C4BA30800D72D6CC31218C_inline (HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::Flush()
inline void RegistrationList_1_Flush_m5917C42B2029F59B417BFDC752E08BB585063511 (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* __this, const RuntimeMethod* method)
{
(( void (*) (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52*, const RuntimeMethod*))RegistrationList_1_Flush_mD6D069FF510189D35150DD43E21EFAE1600CCFD3_gshared)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Flush()
inline void RegistrationList_1_Flush_mFBEBA2CAF9F291947B6D1473B45AA010CB19E995 (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* __this, const RuntimeMethod* method)
{
(( void (*) (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1*, const RuntimeMethod*))RegistrationList_1_Flush_mD6D069FF510189D35150DD43E21EFAE1600CCFD3_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::.ctor()
inline void Dictionary_2__ctor_m171CA807CFD9125876994104E2005D04F38AA95C (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>::.ctor()
inline void RegistrationList_1__ctor_mA1373140CD8C0A195EB37EAE8C06B5C097592295 (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* __this, const RuntimeMethod* method)
{
(( void (*) (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52*, const RuntimeMethod*))RegistrationList_1__ctor_m1F3D485A1DF3D1CF4AF63FE687E4824EE1FB5475_gshared)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager/RegistrationList`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::.ctor()
inline void RegistrationList_1__ctor_m0840E8D309F3A1153D845D204D33E34CBF66A9F4 (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* __this, const RuntimeMethod* method)
{
(( void (*) (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1*, const RuntimeMethod*))RegistrationList_1__ctor_m1F3D485A1DF3D1CF4AF63FE687E4824EE1FB5475_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::.ctor()
inline void List_1__ctor_m5E0E87678A3837CA7E7B32D1DC89E510829A97C4 (List_1_t02510C493B34D49F210C22C40442D863A08509CB* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t02510C493B34D49F210C22C40442D863A08509CB*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::.ctor()
inline void HashSet_1__ctor_m67D0471240C68496D5D4CF51915F03455FD5AB4F (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* __this, const RuntimeMethod* method)
{
(( void (*) (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782*, const RuntimeMethod*))HashSet_1__ctor_m9132EE1422BAA45E44B7FFF495F378790D36D90E_gshared)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SelectEnterEventArgs__ctor_mE74661F8720305C7C924ADBA1766057084A1D264 (SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SelectExitEventArgs__ctor_mF2917F17EA7F2AD8B1698AE1E4D5C3B9F0225A69 (SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HoverEnterEventArgs__ctor_m64B2FD3D0E28418D562AB3E809D4D41FB73B61F5 (HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HoverExitEventArgs__ctor_mE583F8ECA5AA5CD5766A4819840CF8AA29473223 (HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractorRegisteredEventArgs__ctor_m1CEEB1E90C5E36396D47DEE555CA51EAF67E51A4 (InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractorUnregisteredEventArgs__ctor_m4A66D6EAF8334F6DB39B8C23D81FF3641910F98F (InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractableRegisteredEventArgs__ctor_m822E9B17C5624FD5DAC56EDDB45B0BBC559ED753 (InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractableUnregisteredEventArgs__ctor_m06876C6525B6E04247181AE3D01F172CD6CF8A9E (InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.MonoBehaviour::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRInteractionManager>::.ctor()
inline void List_1__ctor_m8785F571D6882158F57F659B5C8842B1430E82BE (List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void Unity.Profiling.ProfilerMarker::.ctor(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::Unsubscribe(UnityEngine.XR.Interaction.Toolkit.LocomotionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_Unsubscribe_m9EACB74F852F90A861C7983CDFB425F5B99DFC14 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* ___provider0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::Subscribe(UnityEngine.XR.Interaction.Toolkit.LocomotionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_Subscribe_mD02046724D31A50E465795C29C463F8F42E35565 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* ___provider0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::SetupCharacterController()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_SetupCharacterController_m3259E81F5099D6F5A91D23EC016C25FD173547A0 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method) ;
// T UnityEngine.Component::GetComponent<UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase>()
inline ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* Component_GetComponent_TisContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A_m236FB899DE4FE15D29146811DF5A14B607A3A1A0 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
{
return (( ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
}
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRig::get_cameraInRigSpaceHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRRig_get_cameraInRigSpaceHeight_m9ED1541D7D6485281124CE4EC109D826851BC575 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.Mathf::Clamp(System.Single,System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_m154E404AF275A3B2EC99ECAA3879B4CB9F0606DC_inline (float ___value0, float ___min1, float ___max2, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.XRRig::get_cameraInRigSpacePos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 XRRig_get_cameraInRigSpacePos_mA397E5CCFBED6DB8DE87BE51E2C2CA686604B72E (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.CharacterController::get_skinWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CharacterController_get_skinWidth_mF22F34BB1F1824D67171FCF5F187F5585749A5DA (CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.CharacterController::set_height(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterController_set_height_m7F8FCAFE75439842BAC1FFA1E302EFD812D170FB (CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* __this, float ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.CharacterController::set_center(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterController_set_center_mF22160684B1FB453417D5457B14FEF437B5646EB (CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___value0, const RuntimeMethod* method) ;
// System.Void System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>::.ctor(System.Object,System.IntPtr)
inline void Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7 (Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::add_beginLocomotion(System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_add_beginLocomotion_mE886C8B4354EE712934C278A497C77834B4754F0 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::add_endLocomotion(System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_add_endLocomotion_mB5BE7BC07AD5A5A22A5CAD63540D2A0D6D698606 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::remove_beginLocomotion(System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_remove_beginLocomotion_mBACFA0AD5B200C844F3B0191C9312813F4696CD0 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::remove_endLocomotion(System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_remove_endLocomotion_mC78E210D6096F0D694ADB7108AE7AA2132923B0D (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.LocomotionSystem UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::get_system()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94_inline (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.XRRig UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::get_xrRig()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* LocomotionSystem_get_xrRig_m66C8141D2D2FACDEC33DB82CAC8ED5278DEEDDE1_inline (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.XRRig::get_rig()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* XRRig_get_rig_mE186F9F6B042C09CA316CFB7137A8CC44D49A573_inline (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// T UnityEngine.GameObject::GetComponent<UnityEngine.CharacterController>()
inline CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* GameObject_GetComponent_TisCharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A_m4848A6B0B029AE9B1F4FE4CC1FDE5E3CF030D325 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
{
return (( CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_m6EAED4AA356F0F48288F67899E5958792395563B_gshared)(__this, method);
}
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30 (String_t* ___format0, RuntimeObject* ___arg01, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
// System.Void UnityEngine.Debug::LogError(System.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m385F8F46AD9C455E80053F42571A7CE321915C0A (RuntimeObject* ___message0, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___context1, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::SetInputActionProperty(UnityEngine.InputSystem.InputActionProperty&,UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousMoveProvider_SetInputActionProperty_m372EC1CCE4169CE641FD0DCBEE996DF11C35148C (ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* ___property0, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value1, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.Inputs.InputActionPropertyExtensions::EnableDirectAction(UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputActionPropertyExtensions_EnableDirectAction_mA8846AAA44837965CF99FD82C518A86D6479AB46 (InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___property0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.Inputs.InputActionPropertyExtensions::DisableDirectAction(UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputActionPropertyExtensions_DisableDirectAction_m9699BBB4F5F25E03534B2C4A346DC52D2FEE30A7 (InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___property0, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.InputAction UnityEngine.InputSystem.InputActionProperty::get_action()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* InputActionProperty_get_action_mABF2197D9CC6586E5DFB0481CF9C1B2586F41A47 (InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.Vector2::get_zero()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline (const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.InputAction::ReadValue<UnityEngine.Vector2>()
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF (InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* __this, const RuntimeMethod* method)
{
return (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD*, const RuntimeMethod*))InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_gshared)(__this, method);
}
// UnityEngine.Vector2 UnityEngine.Vector2::op_Addition(UnityEngine.Vector2,UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Addition_m704B5B98EAFE885978381E21B7F89D9DF83C2A60_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Application::get_isPlaying()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337 (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Behaviour::get_isActiveAndEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A (Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousMoveProviderBase__ctor_m1AB119E41778C58681F1785ECE37EF8270A24EA0 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::SetInputActionProperty(UnityEngine.InputSystem.InputActionProperty&,UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousTurnProvider_SetInputActionProperty_m9DDF18609BB9EC477E7DC06DE67B3AB94A443977 (ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* ___property0, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value1, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousTurnProviderBase__ctor_mA41947ADBB4D280EC0EAB152CA5653FE7315B606 (ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Vector2::op_Inequality(UnityEngine.Vector2,UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Inequality_mCF3935E28AC7B30B279F07F9321CC56718E1311A_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___lhs0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rhs1, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::get_zero()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Vector3::op_Inequality(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Inequality_m6A7FB1C9E9DE194708997BFA24C6E238D92D908E_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___lhs0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rhs1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Vector2::op_Equality(UnityEngine.Vector2,UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Equality_m5447BF12C18339431AB8AF02FA463C543D88D463_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___lhs0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rhs1, const RuntimeMethod* method) ;
// System.Void UnityEngine.Vector3::.ctor(System.Single,System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::ClampMagnitude(UnityEngine.Vector3,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_ClampMagnitude_mDEF1E073986286F6EFA1552A5D0E1A0F6CBF4500_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___vector0, float ___maxLength1, const RuntimeMethod* method) ;
// UnityEngine.Transform UnityEngine.GameObject::get_transform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Transform::get_up()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Transform_get_up_mE47A9D9D96422224DD0539AA5524DA5440145BB2 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.XRRig::get_cameraGameObject()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* XRRig_get_cameraGameObject_m599F292919A35F8427477F95D733377B56C43A73_inline (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Transform::get_forward()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Transform_get_forward_mFCFACF7165FDAB21E80E384C494DF278386CEE2F (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.Vector3::Dot(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___lhs0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rhs1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Mathf::Approximately(System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline (float ___a0, float ___b1, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::op_UnaryNegation(UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_UnaryNegation_m3AC523A7BED6E843165BDF598690F0560D8CAA63_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::ProjectOnPlane(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_ProjectOnPlane_mCAFA9F9416EA4740DCA8757B6E52260BF536770A_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___vector0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___planeNormal1, const RuntimeMethod* method) ;
// UnityEngine.Quaternion UnityEngine.Quaternion::FromToRotation(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 Quaternion_FromToRotation_m041093DBB23CB3641118310881D6B7746E3B8418 (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___fromDirection0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___toDirection1, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Quaternion::op_Multiply(UnityEngine.Quaternion,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0 (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rotation0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___point1, const RuntimeMethod* method) ;
// System.Single UnityEngine.Time::get_deltaTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_deltaTime_m7AB6BFA101D83E1D8F2EF3D5A128AEE9DDBF1A6D (const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::op_Multiply(UnityEngine.Vector3,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, float ___d1, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Transform::TransformDirection(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Transform_TransformDirection_m9BE1261DF2D48B7A4A27D31EE24D2D97F89E7757 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___direction0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::FindCharacterController()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousMoveProviderBase_FindCharacterController_m55140569E91D84284B2CC949BDBEB4A162F1B1CB (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Collider::get_enabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Collider_get_enabled_mDBFB488088ADB14C8016A83EF445653AC5A4A12B (Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.CharacterController::get_isGrounded()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharacterController_get_isGrounded_m548072EC190878925C0F97595B6C307714EFDD67 (CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Physics::get_gravity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Physics_get_gravity_m3A4C8594035C638686900919118B176B9F0A6F81 (const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::op_Addition(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___b1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::CanBeginLocomotion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocomotionProvider_CanBeginLocomotion_m3DE86A342E4B792E125FE73F2FE933BE99EDA9F0 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::BeginLocomotion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocomotionProvider_BeginLocomotion_mFB221E462FEC6E933C9161E30271678311D1AAEF (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method) ;
// UnityEngine.CollisionFlags UnityEngine.CharacterController::Move(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharacterController_Move_mE3F7AC1B4A2D6955980811C088B68ED3A31D2DA4 (CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___motion0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::EndLocomotion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocomotionProvider_EndLocomotion_m64CC4C14527FF9F8D2956159425A2208E4612ECB (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Transform::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.Transform::set_position(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_position_mA1A817124BB41B685043DED2A9BA48CDF37C4156 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider__ctor_m402BA4925BA100FA69742DD86D76BA0ECB39C7E7 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase::TurnRig(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousTurnProviderBase_TurnRig_mA600D2931DEB1C2D38A61A1E909412AB89230B48 (ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A* __this, float ___turnAmount0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.Inputs.Cardinal UnityEngine.XR.Interaction.Toolkit.Inputs.CardinalUtility::GetNearestCardinal(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CardinalUtility_GetNearestCardinal_m6761662410E5FAE1002827B1863A7A2871B85734 (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Single UnityEngine.Vector2::get_magnitude()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.Mathf::Sign(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Sign_m015249B312238B8DCA3493489FAFC3055E2FFEF8_inline (float ___f0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::RotateAroundCameraUsingRigUp(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_RotateAroundCameraUsingRigUp_mE9DB5E392764B04743D17BC410E1DB5D37A10CC2 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, float ___angleDegrees0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController>::get_Count()
inline int32_t List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_inline (List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController>::get_Item(System.Int32)
inline XRBaseController_t44C1BB30A7E1D279DD2508F34D3352B33A9AD60C* List_1_get_Item_mE3735CD7D71FB40C90C7625AEE4A7F16E2EEC53F (List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( XRBaseController_t44C1BB30A7E1D279DD2508F34D3352B33A9AD60C* (*) (List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseController::get_enableInputActions()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRBaseController_get_enableInputActions_m4E285A2F619049FF60318453228523C193C9E8CE_inline (XRBaseController_t44C1BB30A7E1D279DD2508F34D3352B33A9AD60C* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.InputDevice UnityEngine.XR.Interaction.Toolkit.XRController::get_inputDevice()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD XRController_get_inputDevice_m584AA43BBBC4CD0FAD047217DDB64DCD35281389 (XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.InputDevice::TryGetFeatureValue(UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2>,UnityEngine.Vector2&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_TryGetFeatureValue_mB2C15D1FC747DA9FB5958FA17E77049886FB3BBA (InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD* __this, InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C ___usage0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* ___value1, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::GetDeadzoneAdjustedValue(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 DeviceBasedContinuousMoveProvider_GetDeadzoneAdjustedValue_m90BE91A308931611184788A6B87DA7F4C0BE8606 (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::GetDeadzoneAdjustedValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DeviceBasedContinuousMoveProvider_GetDeadzoneAdjustedValue_m6E80A90408CDC315BCAEB19795923D3D0F848B42 (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, float ___value0, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.Vector2::op_Multiply(UnityEngine.Vector2,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Multiply_m4EEB2FF3F4830390A53CE9B6076FB31801D65EED_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, float ___d1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController>::.ctor()
inline void List_1__ctor_m724463B39B944A8F8354B96833F40DDC56293D8E (List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::GetDeadzoneAdjustedValue(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 DeviceBasedContinuousTurnProvider_GetDeadzoneAdjustedValue_m7330A75975136CD9152900A65A8A4813D5C69870 (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::GetDeadzoneAdjustedValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DeviceBasedContinuousTurnProvider_GetDeadzoneAdjustedValue_m0359AEBBAEA030B13719A3A3084FDC1EF6535D3F (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, float ___value0, const RuntimeMethod* method) ;
// T UnityEngine.Object::FindObjectOfType<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>()
inline LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* Object_FindObjectOfType_TisLocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B_m867D5A523EFB0B4B4A6226EBE9555249C65CF210 (const RuntimeMethod* method)
{
return (( LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* (*) (const RuntimeMethod*))Object_FindObjectOfType_TisRuntimeObject_m9990A7304DF02BA1ED160587D1C2F6DAE89BB343_gshared)(method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::get_busy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocomotionSystem_get_busy_m28D47236EB8305F858FAA903E490FF1F9D678A9F (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.RequestResult UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::RequestExclusiveOperation(UnityEngine.XR.Interaction.Toolkit.LocomotionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LocomotionSystem_RequestExclusiveOperation_m38B962B56859A1978AC995893D7FD9C7CEB0A0F1 (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* ___provider0, const RuntimeMethod* method) ;
// System.Void System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>::Invoke(T)
inline void Action_1_Invoke_m6D24480D7E389B915C20866DC6A3BE7E48E919DA (Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* __this, LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*, LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared)(__this, ___obj0, method);
}
// UnityEngine.XR.Interaction.Toolkit.RequestResult UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::FinishExclusiveOperation(UnityEngine.XR.Interaction.Toolkit.LocomotionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LocomotionSystem_FinishExclusiveOperation_mE60B5D19065E9DC6F76357B21942126ED8383644 (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* ___provider0, const RuntimeMethod* method) ;
// T UnityEngine.Object::FindObjectOfType<UnityEngine.XR.Interaction.Toolkit.XRRig>()
inline XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* Object_FindObjectOfType_TisXRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_m204F4BA9167666E8C55752375D5587D40BAE9C06 (const RuntimeMethod* method)
{
return (( XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* (*) (const RuntimeMethod*))Object_FindObjectOfType_TisRuntimeObject_m9990A7304DF02BA1ED160587D1C2F6DAE89BB343_gshared)(method);
}
// System.Single UnityEngine.Time::get_time()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_time_m0BEE9AACD0723FE414465B77C9C64D12263675F3 (const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::ResetExclusivity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionSystem_ResetExclusivity_m25A6EA802DDFDAF8A1FE6C59FB85C66F58A55DDE (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::SetInputActionProperty(UnityEngine.InputSystem.InputActionProperty&,UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedSnapTurnProvider_SetInputActionProperty_mC9D57A366A4C04274E9FAB6B9E46E383A2B96FCC (ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* ___property0, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value1, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SnapTurnProviderBase__ctor_m962618BDF42FF3FCDB3D8816C9ADDA6E18304F7D (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.Vector2::get_sqrMagnitude()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::StartTurn(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SnapTurnProviderBase_StartTurn_m8050D3721A33C34B57752916F121AC72754B6390 (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, float ___amount0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::Awake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRBaseInteractable_Awake_m0F05BB9C7C9315AD7A6FA1654A50612AFB5D8EA0 (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, const RuntimeMethod* method) ;
// T UnityEngine.Object::FindObjectOfType<UnityEngine.XR.Interaction.Toolkit.TeleportationProvider>()
inline TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* Object_FindObjectOfType_TisTeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972_m59197783B83969B16374A3B8BE819108C6C9F049 (const RuntimeMethod* method)
{
return (( TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* (*) (const RuntimeMethod*))Object_FindObjectOfType_TisRuntimeObject_m9990A7304DF02BA1ED160587D1C2F6DAE89BB343_gshared)(method);
}
// System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_m18E1885C296CC868AC918101523697CFE6413C79 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___exists0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRayInteractor::TryGetCurrent3DRaycastHit(UnityEngine.RaycastHit&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRayInteractor_TryGetCurrent3DRaycastHit_m3B0B4ECA2D4B2786F08B42F1BA327D63706BB060 (XRRayInteractor_t0B25C1D5A938B199A71908E189AB351B43DA4C76* __this, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* ___raycastHit0, const RuntimeMethod* method) ;
// UnityEngine.Collider UnityEngine.RaycastHit::get_collider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* RaycastHit_get_collider_m84B160439BBEAB6D9E94B799F720E25C9E2D444D (RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs::get_interactor()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* BaseInteractionEventArgs_get_interactor_mE0AC419B526DA1A39B56DA244258474047DD0176_inline (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::SendTeleportRequest(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable_SendTeleportRequest_mAF7A72334016F5310C979FE97FDC30C4665677A8 (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnSelectEntered(UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRBaseInteractable_OnSelectEntered_m548EC86DEEF771E952DFC75BAE8EA5C27E441C5C (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* ___args0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs::get_isCanceled()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SelectExitEventArgs_get_isCanceled_m4C9FCCB6A51201B8728DAF9BA356BB589A149FF7_inline (SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnSelectExited(UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRBaseInteractable_OnSelectExited_m0D5AEB82DE37B8584A97A262468AF59B70A5568C (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* ___args0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnActivated(UnityEngine.XR.Interaction.Toolkit.ActivateEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRBaseInteractable_OnActivated_mF584BF76F2FE64DB21A707C4FDBBEA7885D6524C (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, ActivateEventArgs_tAC81C18EA24D76411EE5A5D61523A551CCB46C3E* ___args0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnDeactivated(UnityEngine.XR.Interaction.Toolkit.DeactivateEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRBaseInteractable_OnDeactivated_m3A86068F620BFE049FCF5D0712CDC3A2819F1577 (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, DeactivateEventArgs_t7AE1163C39B5B95A4501EC961D8D643C369774D0* ___args0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRBaseInteractable__ctor_m0B36974579D0C9F2799C4C5DE77B136C291247F4 (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, const RuntimeMethod* method) ;
// UnityEngine.Transform UnityEngine.Component::get_transform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
// UnityEngine.Color UnityEngine.Color::get_blue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_blue_m0D04554379CB8606EF48E3091CDC3098B81DD86D_inline (const RuntimeMethod* method) ;
// System.Void UnityEngine.Gizmos::set_color(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gizmos_set_color_mFD4A7935FF025F5922374A8DD797BA0558BF1AD2 (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___value0, const RuntimeMethod* method) ;
// UnityEngine.Quaternion UnityEngine.Transform::get_rotation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.GizmoHelpers::DrawWireCubeOriented(UnityEngine.Vector3,UnityEngine.Quaternion,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GizmoHelpers_DrawWireCubeOriented_mB0B3D31FD9FCEFEC22AFB3B26E9AA374BB918730 (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position0, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rotation1, float ___size2, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.GizmoHelpers::DrawAxisArrows(UnityEngine.Transform,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GizmoHelpers_DrawAxisArrows_m2E693699692850260E01A003FDE03C207C04804F (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___transform0, float ___size1, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable__ctor_m03523AE1E1C51AF0E9B210844669220113406EE7 (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.RaycastHit::get_point()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 RaycastHit_get_point_m02B764612562AFE0F998CC7CFB2EEDE41BA47F39 (RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::set_currentRequest(UnityEngine.XR.Interaction.Toolkit.TeleportRequest)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TeleportationProvider_set_currentRequest_m109FD936C57760C70C312B799E6AD6D7651B0581_inline (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::set_validRequest(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TeleportationProvider_set_validRequest_m539A9FBCF21BBCE6062D888442666D0679B27B0D_inline (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::get_validRequest()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TeleportationProvider_get_validRequest_m083A1AF44E1AD7BD791A2B599216067B94D65788_inline (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.TeleportRequest UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::get_currentRequest()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE TeleportationProvider_get_currentRequest_m0CCE6B6BE488A506F4FD398A18C8D0450ED6C39B_inline (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::get_up()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_up_mAB5269BFCBCB1BD241450C9BF2F156303D30E0C3_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::MatchRigUp(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_MatchRigUp_m02778B1BD71CC152FF1A66B7C448E1DED5464744 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___destinationUp0, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::get_forward()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_forward_mEBAB24D77FC02FC88ED880738C3B1D47C758B3EB_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::MatchRigUpCameraForward(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_MatchRigUpCameraForward_m0C2B0CEA4D62279A7E2D370B072996F8418D550E (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___destinationUp0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___destinationForward1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::MoveCameraToWorldLocation(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_MoveCameraToWorldLocation_mA5697533798D47028152B51FCB8B68BC48CC2B0D (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___desiredWorldLocation0, const RuntimeMethod* method) ;
// System.Void UnityEngine.Gizmos::DrawLine(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___from0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___to1, const RuntimeMethod* method) ;
// System.Void UnityEngine.Gizmos::DrawRay(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gizmos_DrawRay_m0FB8AC474F4025A0775879DC8640C8816E14A454 (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___from0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___direction1, const RuntimeMethod* method) ;
// UnityEngine.Color UnityEngine.Color::get_green()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_green_m336EB73DD4A5B11B7F405CF4BC7F37A466FB4FF7_inline (const RuntimeMethod* method) ;
// UnityEngine.Color UnityEngine.Color::get_red()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_red_m27D04C1E5FE794AD933B7B9364F3D34B9EA25109_inline (const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Transform::get_right()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Transform_get_right_mC6DC057C23313802E2186A9E0DB760D795A758A4 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.InputDevice::get_isValid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_isValid_mA908CF8195CECA44FF457430AFF9198C3FEC0948 (InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.InputFeatureUsage`1<System.Boolean>::.ctor(System.String)
inline void InputFeatureUsage_1__ctor_mEB36F8937385A1065CD9F48AE2DAD9EAE49EFCE7 (InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637* __this, String_t* ___usageName0, const RuntimeMethod* method)
{
(( void (*) (InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637*, String_t*, const RuntimeMethod*))InputFeatureUsage_1__ctor_mEB36F8937385A1065CD9F48AE2DAD9EAE49EFCE7_gshared)(__this, ___usageName0, method);
}
// System.Boolean UnityEngine.XR.InputDevice::TryGetFeatureValue(UnityEngine.XR.InputFeatureUsage`1<System.Boolean>,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_TryGetFeatureValue_m24EC3B6C41AE4098269427232AD5F52E786BF884 (InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD* __this, InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 ___usage0, bool* ___value1, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.InputFeatureUsage`1<System.Single>::.ctor(System.String)
inline void InputFeatureUsage_1__ctor_m6357AF3E3C16046E807776AA58473ABC83F88989 (InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848* __this, String_t* ___usageName0, const RuntimeMethod* method)
{
(( void (*) (InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848*, String_t*, const RuntimeMethod*))InputFeatureUsage_1__ctor_m6357AF3E3C16046E807776AA58473ABC83F88989_gshared)(__this, ___usageName0, method);
}
// System.Boolean UnityEngine.XR.InputDevice::TryGetFeatureValue(UnityEngine.XR.InputFeatureUsage`1<System.Single>,System.Single&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_TryGetFeatureValue_m675D52240379FEF80D6499B5031941812FDFD081 (InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD* __this, InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848 ___usage0, float* ___value1, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector2>::.ctor(System.String)
inline void InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A (InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C* __this, String_t* ___usageName0, const RuntimeMethod* method)
{
(( void (*) (InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C*, String_t*, const RuntimeMethod*))InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A_gshared)(__this, ___usageName0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo::.ctor(System.String,UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonReadType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69 (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412* __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Clear()
inline void List_1_Clear_m39CF62A1FA54AAD0EE4BC97B663FA35E0C754B21_inline (List_1_t02510C493B34D49F210C22C40442D863A08509CB* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t02510C493B34D49F210C22C40442D863A08509CB*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1_AddRange_mE1066F7F49419B6C26CA7685407062B5A484F0FD (List_1_t02510C493B34D49F210C22C40442D863A08509CB* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t02510C493B34D49F210C22C40442D863A08509CB*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared)(__this, ___collection0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,System.Single>::Clear()
inline void Dictionary_2_Clear_m079CAFEFDB10EC87A1C25FC08BD32C3F1134A573 (Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F*, const RuntimeMethod*))Dictionary_2_Clear_m97AA589FB0CCE1240A0C9F7F7C32573B94FD2592_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,System.Single>::set_Item(TKey,TValue)
inline void Dictionary_2_set_Item_mA255F5E255E66993AEA236E6D1F2BD11AEDEA14F (Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___key0, float ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, float, const RuntimeMethod*))Dictionary_2_set_Item_mB3364B977072656B662C984B4F7E39394C341B2A_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Sort(System.Comparison`1<T>)
inline void List_1_Sort_m256078382FC40045587959BD5B9AFAF789460CD1 (List_1_t02510C493B34D49F210C22C40442D863A08509CB* __this, Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A* ___comparison0, const RuntimeMethod* method)
{
(( void (*) (List_1_t02510C493B34D49F210C22C40442D863A08509CB*, Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A*, const RuntimeMethod*))List_1_Sort_mEB3B61CB86B1419919338B0668DC4E568C2FFF93_gshared)(__this, ___comparison0, method);
}
// TValue System.Collections.Generic.Dictionary`2<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,System.Single>::get_Item(TKey)
inline float Dictionary_2_get_Item_mE0F123D3CCC105693B04EE651053CD324DC2FD4A (Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___key0, const RuntimeMethod* method)
{
return (( float (*) (Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, const RuntimeMethod*))Dictionary_2_get_Item_m592530FB0319E03D62CA02B0349798F60BC09A31_gshared)(__this, ___key0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,System.Single>::.ctor()
inline void Dictionary_2__ctor_m09DA62123E32D2F4548D8180EC0ADFF29CFF5074 (Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F*, const RuntimeMethod*))Dictionary_2__ctor_m7090A0C6890D4FE1C83844A6616D8E9A5AEC802C_gshared)(__this, method);
}
// System.Void System.Comparison`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::.ctor(System.Object,System.IntPtr)
inline void Comparison_1__ctor_mD2DDA56B9090282D66F10976E281BE284F0209B7 (Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A*, RuntimeObject*, intptr_t, const RuntimeMethod*))Comparison_1__ctor_mC1E8799BBCE317B612875123C9C894BD470BFE6A_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::MoveOffsetHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_MoveOffsetHeight_m6AF8AA5C9DB9F82E9B7A997E45619DC10A122C64 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::TryInitializeCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_TryInitializeCamera_m2A3FCB48EC42E30997999D41D5D473F3B6DE3790 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Transform::InverseTransformPoint(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Transform_InverseTransformPoint_m18CD395144D9C78F30E15A5B82B6670E792DBA5D (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::UpgradeTrackingSpaceToTrackingOriginMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_UpgradeTrackingSpaceToTrackingOriginMode_m90C7E3360BB6776280F797F8896CB1A6EECCA596 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::UpgradeTrackingOriginModeToRequest()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_UpgradeTrackingOriginModeToRequest_m389DECA9B678D71FAA9E2A14106798A93A1F08FE (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.Component::get_gameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::<OnValidate>g__IsModeStale|35_0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_U3COnValidateU3Eg__IsModeStaleU7C35_0_m64AB1C559E4CAA47441B7CD9A68EBB52C062829F (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// UnityEngine.Camera UnityEngine.Camera::get_main()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* Camera_get_main_mF222B707D3BF8CC9C7544609EFC71CFB62E81D43 (const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem>::GetEnumerator()
inline Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5 List_1_GetEnumerator_mD7750792B348A44331FAA1F78D8608F585823A50 (List_1_t90832B88D7207769654164CC28440CF594CC397D* __this, const RuntimeMethod* method)
{
return (( Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5 (*) (List_1_t90832B88D7207769654164CC28440CF594CC397D*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.XRInputSubsystem>::get_Current()
inline XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* Enumerator_get_Current_mEBE35085F23AD21C6E36B9EFAED53B414317CE31_inline (Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5* __this, const RuntimeMethod* method)
{
return (( XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* (*) (Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Void System.Action`1<UnityEngine.XR.XRInputSubsystem>::.ctor(System.Object,System.IntPtr)
inline void Action_1__ctor_m06CD1A5164C93280C6A23D8435BF77A89B8E4B0F (Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.XR.XRInputSubsystem::remove_trackingOriginUpdated(System.Action`1<UnityEngine.XR.XRInputSubsystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInputSubsystem_remove_trackingOriginUpdated_m6A04D2813F1D4A37C013BA00EBC862D1EEA7473E (XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* __this, Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.XRInputSubsystem>::MoveNext()
inline bool Enumerator_MoveNext_m43BF1149292892E0A147B31279D198F4ABA5D952 (Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.XRInputSubsystem>::Dispose()
inline void Enumerator_Dispose_m984D421A36C91A4FA622218385CB4346C9411DF3 (Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::SetupCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_SetupCamera_mF14AD1A86C728BC80E1C491B99D432ADC6A80967 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// System.Collections.IEnumerator UnityEngine.XR.Interaction.Toolkit.XRRig::RepeatInitializeCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XRRig_RepeatInitializeCamera_mE36D220D554117D9FFF4F8CAFE47E32E08015B0C (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.Collections.IEnumerator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* MonoBehaviour_StartCoroutine_m4CAFF732AA28CD3BDC5363B44A863575530EC812 (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, RuntimeObject* ___routine0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CRepeatInitializeCameraU3Ed__41__ctor_m6B95E9FAB0B4538741707561ADAB158E77B30508 (U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) ;
// System.Void UnityEngine.SubsystemManager::GetInstances<UnityEngine.XR.XRInputSubsystem>(System.Collections.Generic.List`1<T>)
inline void SubsystemManager_GetInstances_TisXRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34_mEF47974C54AA515C3180A0AD3418F3E4037983EE (List_1_t90832B88D7207769654164CC28440CF594CC397D* ___subsystems0, const RuntimeMethod* method)
{
(( void (*) (List_1_t90832B88D7207769654164CC28440CF594CC397D*, const RuntimeMethod*))SubsystemManager_GetInstances_TisRuntimeObject_m483A6D40AA7F54CA9B8E450BD763C2F4FB515A16_gshared)(___subsystems0, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem>::get_Count()
inline int32_t List_1_get_Count_mF8DDB0BDC273D655115D5E62307ADF657EC28DE5_inline (List_1_t90832B88D7207769654164CC28440CF594CC397D* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t90832B88D7207769654164CC28440CF594CC397D*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::SetupCamera(UnityEngine.XR.XRInputSubsystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_SetupCamera_m8DFC1790FD94C84F2FAA4DFDE1D05B270048CEA3 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* ___inputSubsystem0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.XRInputSubsystem::add_trackingOriginUpdated(System.Action`1<UnityEngine.XR.XRInputSubsystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInputSubsystem_add_trackingOriginUpdated_mA5E69767B6E8D505BE73804A4B4EA738A27F675E (XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* __this, Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A* ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::SetupCameraLegacy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_SetupCameraLegacy_mCD89564985CB93F730497582C666C474896C9749 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.TrackingOriginModeFlags UnityEngine.XR.XRInputSubsystem::GetTrackingOriginMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRInputSubsystem_GetTrackingOriginMode_mBAFED615F74039A681825BB956AD3C8FA7DE45F2 (XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::set_currentTrackingOriginMode(UnityEngine.XR.TrackingOriginModeFlags)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRRig_set_currentTrackingOriginMode_m8808FA6451664B1A54B94D29536F52EAF1C2B50F_inline (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, int32_t ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.TrackingOriginModeFlags UnityEngine.XR.XRInputSubsystem::GetSupportedTrackingOriginModes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRInputSubsystem_GetSupportedTrackingOriginModes_mBA7190E84E6BB4F251C232B97565E228AECB3018 (XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.TrackingOriginModeFlags UnityEngine.XR.Interaction.Toolkit.XRRig::get_currentTrackingOriginMode()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRRig_get_currentTrackingOriginMode_m4E0D1ECA3BB9564009C4ADC500DDF4FCC2D0182B_inline (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806 (String_t* ___format0, RuntimeObject* ___arg01, RuntimeObject* ___arg12, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.XRInputSubsystem::TrySetTrackingOriginMode(UnityEngine.XR.TrackingOriginModeFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRInputSubsystem_TrySetTrackingOriginMode_m132C190CEAE4403A381BF1C1C4B5FF349F2A3FA7 (XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* __this, int32_t ___origin0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.XRInputSubsystem::TryRecenter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRInputSubsystem_TryRecenter_m4F8888E40ED79139DCB81D56A67C03B4D931A6BB (XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::MoveOffsetHeight(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_MoveOffsetHeight_m08324B80614054B51915190FAFD0251988912FF0 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, float ___y0, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Transform::get_localPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Transform_get_localPosition_mA9C86B990DF0685EA1061A120218993FDCC60A95 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.Transform::set_localPosition(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localPosition_mDE1C997F7D79C0885210B7732B4BA50EE7D73134 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::RotateAroundCameraPosition(UnityEngine.Vector3,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_RotateAroundCameraPosition_mE07A8F00166F1D159F941C6F22D5A37FC2B865BF (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___vector0, float ___angleDegrees1, const RuntimeMethod* method) ;
// System.Void UnityEngine.Transform::RotateAround(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_RotateAround_m489C5BE8B8B15D0A5F4863DE6D23FF2CC8FA76C6 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___point0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___axis1, float ___angle2, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Vector3::op_Equality(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Equality_m15951D1B53E3BE36C9D265E229090020FBD72EBB_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___lhs0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rhs1, const RuntimeMethod* method) ;
// UnityEngine.Quaternion UnityEngine.Quaternion::op_Multiply(UnityEngine.Quaternion,UnityEngine.Quaternion)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 Quaternion_op_Multiply_m5AC8B39C55015059BDD09122E04E47D4BFAB2276_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___lhs0, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rhs1, const RuntimeMethod* method) ;
// System.Void UnityEngine.Transform::set_rotation(UnityEngine.Quaternion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_rotation_m61340DE74726CF0F9946743A727C4D444397331D (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___value0, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::get_normalized()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.Vector3::SignedAngle(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_SignedAngle_mD30E71B2F64983C2C4D86F17E7023BAA84CE50BE_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___from0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___to1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___axis2, const RuntimeMethod* method) ;
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::Rotate(UnityEngine.Quaternion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 Matrix4x4_Rotate_mE2C31B51EEC282F2969B9C2BE24BD73E312807E8 (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___q0, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.XRRig::get_rigInCameraSpacePos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 XRRig_get_rigInCameraSpacePos_m504AE7211B9F2359312069B68DD810C00F04F578 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Matrix4x4::MultiplyPoint3x4(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Matrix4x4_MultiplyPoint3x4_mACCBD70AFA82C63DA88555780B7B6B01281AB814 (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___point0, const RuntimeMethod* method) ;
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::SetupCameraLegacy(UnityEngine.XR.TrackingSpaceType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_SetupCameraLegacy_m3BD245ACAB3B62653238B9155C53B7DD20EF0061 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, int32_t ___trackingSpaceType0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.XRDevice::SetTrackingSpaceType(UnityEngine.XR.TrackingSpaceType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRDevice_SetTrackingSpaceType_mD5276BBB091C1AD8082D8F84F4DA0141E682C348 (int32_t ___trackingSpaceType0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.InputTracking::Recenter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputTracking_Recenter_m08E21C730EF172666DB09B3227016DA631EB6B22 (const RuntimeMethod* method) ;
// UnityEngine.XR.TrackingSpaceType UnityEngine.XR.XRDevice::GetTrackingSpaceType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRDevice_GetTrackingSpaceType_mB55EB16A8A3974609A81C799E16A0251E3D53BDB (const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem>::.ctor()
inline void List_1__ctor_mC249FC827BC3BE999A938F8B5BD884F8AA0CB7FA (List_1_t90832B88D7207769654164CC28440CF594CC397D* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t90832B88D7207769654164CC28440CF594CC397D*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::IsModeStaleLegacy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_IsModeStaleLegacy_m391BF8291CBAF96C761E8A1174B78BDB9F526B0C (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method) ;
// System.Void System.NotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::get_interactionManager()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* TriggerContactMonitor_get_interactionManager_m962AC519D6229441CA8EB1F2703A6B653E0B9B1F_inline (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.Collider>::Add(T)
inline bool HashSet_1_Add_m8F91FD4088E131696D75A31DF6A17F7204B07C37 (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B*, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76*, const RuntimeMethod*))HashSet_1_Add_m2CD7657B3459B61DD4BBA47024AC71F7D319658B_gshared)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::set_Item(TKey,TValue)
inline void Dictionary_2_set_Item_m020DA30FB093D699CEAA4B02CFFC8971106167B5 (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___key0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82*, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Action`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Invoke(T)
inline void Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC (Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared)(__this, ___obj0, method);
}
// System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.Collider>::Remove(T)
inline bool HashSet_1_Remove_m5DFAA82D84865660E1D5FA8BBF27AED9A390EF2D (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B*, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76*, const RuntimeMethod*))HashSet_1_Remove_mF1D84C0A2829DDA2A0CEE1D82A5B999B5F6627CB_gshared)(__this, ___item0, method);
}
// System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::GetEnumerator()
inline Enumerator_t6B4BB26A13A662A4B1E681DD83CAAB5BA158CAC3 Dictionary_2_GetEnumerator_m7EB0E0CC4C6F660FCC0BF988C7CF08158EAA9D1C (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* __this, const RuntimeMethod* method)
{
return (( Enumerator_t6B4BB26A13A662A4B1E681DD83CAAB5BA158CAC3 (*) (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82*, const RuntimeMethod*))Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::get_Current()
inline KeyValuePair_2_tA6D30FFB4692368D27138C35CCA0D714E3EF6ABA Enumerator_get_Current_mF52B0FA8838B2C802DCDD385FB2BFC7B5110F390_inline (Enumerator_t6B4BB26A13A662A4B1E681DD83CAAB5BA158CAC3* __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tA6D30FFB4692368D27138C35CCA0D714E3EF6ABA (*) (Enumerator_t6B4BB26A13A662A4B1E681DD83CAAB5BA158CAC3*, const RuntimeMethod*))Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline)(__this, method);
}
// TValue System.Collections.Generic.KeyValuePair`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::get_Value()
inline XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* KeyValuePair_2_get_Value_m3EE91401838D1F361844DF4F85724FB69CF93E67_inline (KeyValuePair_2_tA6D30FFB4692368D27138C35CCA0D714E3EF6ABA* __this, const RuntimeMethod* method)
{
return (( XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* (*) (KeyValuePair_2_tA6D30FFB4692368D27138C35CCA0D714E3EF6ABA*, const RuntimeMethod*))KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::MoveNext()
inline bool Enumerator_MoveNext_mE30AF5FEE3FA912E634BD92B4970FB75BEED9664 (Enumerator_t6B4BB26A13A662A4B1E681DD83CAAB5BA158CAC3* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t6B4BB26A13A662A4B1E681DD83CAAB5BA158CAC3*, const RuntimeMethod*))Enumerator_MoveNext_mCD4950A75FFADD54AF354D48C6C0DB0B5A22A5F4_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Dispose()
inline void Enumerator_Dispose_m75FB25D8B11134C9C4066F72FA6AC6E8A9F2258A (Enumerator_t6B4BB26A13A662A4B1E681DD83CAAB5BA158CAC3* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t6B4BB26A13A662A4B1E681DD83CAAB5BA158CAC3*, const RuntimeMethod*))Enumerator_Dispose_mEA5E01B81EB943B7003D87CEC1B6040524F0402C_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>::Remove(T)
inline bool HashSet_1_Remove_mF49EBE1351C8F52E2EF711118423B90BD6CD74C5 (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, const RuntimeMethod*))HashSet_1_Remove_mF1D84C0A2829DDA2A0CEE1D82A5B999B5F6627CB_gshared)(__this, ___item0, method);
}
// System.Int32 System.Collections.Generic.HashSet`1<UnityEngine.Collider>::get_Count()
inline int32_t HashSet_1_get_Count_m6DCD41ED4CF35B3625B468EF2E8BD97E1E72E2C1_inline (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B*, const RuntimeMethod*))HashSet_1_get_Count_m41CC85EEB7855CEFA3BC7A32F115387939318ED3_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.Collider>::Clear()
inline void List_1_Clear_m567A0E8ADE485441540D5B46AB6C518558DDA2FE_inline (List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
}
// System.Collections.Generic.HashSet`1/Enumerator<T> System.Collections.Generic.HashSet`1<UnityEngine.Collider>::GetEnumerator()
inline Enumerator_t5E62D883610A9174D8971F153A9D3DB97CED7B3D HashSet_1_GetEnumerator_mEEC525C8B84ED95D0F8FC4BB677A53CFF2117D00 (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* __this, const RuntimeMethod* method)
{
return (( Enumerator_t5E62D883610A9174D8971F153A9D3DB97CED7B3D (*) (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B*, const RuntimeMethod*))HashSet_1_GetEnumerator_m143B98FEED7E9CABA2C494AB2F04DAD60A504635_gshared)(__this, method);
}
// T System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.Collider>::get_Current()
inline Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* Enumerator_get_Current_m10F66F13C7B3FA8C93CAAF4A0D26B9695EB8F9B9_inline (Enumerator_t5E62D883610A9174D8971F153A9D3DB97CED7B3D* __this, const RuntimeMethod* method)
{
return (( Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* (*) (Enumerator_t5E62D883610A9174D8971F153A9D3DB97CED7B3D*, const RuntimeMethod*))Enumerator_get_Current_m139A176CD271A0532D75BE08DA7831C8C45CE28F_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.Collider>::Add(T)
inline void List_1_Add_m67ADCB698F31486B35CF5DB4CFB1E97EB807FEFD_inline (List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252*, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.Collider>::MoveNext()
inline bool Enumerator_MoveNext_mD434DF7C6AE02F45F424CB0EB0BA8F955F226687 (Enumerator_t5E62D883610A9174D8971F153A9D3DB97CED7B3D* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t5E62D883610A9174D8971F153A9D3DB97CED7B3D*, const RuntimeMethod*))Enumerator_MoveNext_m27565F5ACCCC75C3DD34CC4CAE3E6AEFEB9144A6_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.Collider>::Dispose()
inline void Enumerator_Dispose_m2E1BCE0886AD98672E79E03B1DFBCC33E831052C (Enumerator_t5E62D883610A9174D8971F153A9D3DB97CED7B3D* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t5E62D883610A9174D8971F153A9D3DB97CED7B3D*, const RuntimeMethod*))Enumerator_Dispose_mFB582AEAA2E73F3128B5571197BEDE256A83F657_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.Collider>::Contains(T)
inline bool HashSet_1_Contains_m1E6C922FF221537A47E8526FC09741D893BEF324 (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B*, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76*, const RuntimeMethod*))HashSet_1_Contains_m9BACE52BFA0BD83C601529D3629118453E459BBB_gshared)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.HashSet`1<UnityEngine.Collider>::.ctor()
inline void HashSet_1__ctor_mD2808C0A1FC4A9BC48EDB86348A1FDBDE7F33C11 (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* __this, const RuntimeMethod* method)
{
(( void (*) (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B*, const RuntimeMethod*))HashSet_1__ctor_m9132EE1422BAA45E44B7FFF495F378790D36D90E_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.Collider>::.ctor()
inline void List_1__ctor_m0CDD6F02F45026B4267E7117C5DDC188F87EE7BE (List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_move()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 JoystickModel_get_move_mB60103AA953140276E6BDBFF9E2674048B666B81_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_move(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoystickModel_set_move_m84DB43EE4C57318CE0B7FFC8416A6E9DC7DEDEFD_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_submitButtonDown()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JoystickModel_get_submitButtonDown_m2C594CD060FC1467793EB7D04F3A356D3FF5215F_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_submitButtonDelta(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoystickModel_set_submitButtonDelta_mBCE238395763AD138FBF5CAD201B57F4AAF0A838_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_submitButtonDown(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_set_submitButtonDown_m972C04699F6CF1AE3EF76B94B9F303D508345596 (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, bool ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_submitButtonDelta()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JoystickModel_get_submitButtonDelta_m012B855F15407CE39563A2465270BFE766488E7A_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_cancelButtonDown()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JoystickModel_get_cancelButtonDown_m0D382FCC9FD1D913786C962041D034B0A93FABDA_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_cancelButtonDelta(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoystickModel_set_cancelButtonDelta_m508A4F611F64F834D6EDB84B6539F80FAD1F98DE_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_cancelButtonDown(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_set_cancelButtonDown_mF5A043FAAB87DC5964D93A18CF3D643600009BEA (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, bool ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_cancelButtonDelta()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JoystickModel_get_cancelButtonDelta_m51F7C586967ECC22CE4DA5F81255F83347A71E9E_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_implementationData()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A JoystickModel_get_implementationData_mE5B08F7B50DD4815D1930845A677CB4620467160_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_implementationData(UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoystickModel_set_implementationData_m1654E5AEE33F55136D14F090EC47DF7E5C097C39_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_Reset_m140D036D05B8FF021576CAABBCC5DC942AC9C079 (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_Reset_mAFDFEBC8EA109267A0A16C62033097C38AB9849E (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::OnFrameFinished()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_OnFrameFinished_mEF369FFD6CC791F3E9EE01510F1B07356D28A804 (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::get_consecutiveMoveCount()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ImplementationData_get_consecutiveMoveCount_mB600F1F6A45941D8114E410D6014964554D7ADEC_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::set_consecutiveMoveCount(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_consecutiveMoveCount_mE564012624169F567A720A33E73AA649FD164198_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, int32_t ___value0, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.MoveDirection UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::get_lastMoveDirection()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ImplementationData_get_lastMoveDirection_m5795BF4D421FE58497DF6E154592CCC66CA43018_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::set_lastMoveDirection(UnityEngine.EventSystems.MoveDirection)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_lastMoveDirection_mE7B0C290F1AB9C8C30172606E3B05C9A9EE0B59B_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::get_lastMoveTime()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ImplementationData_get_lastMoveTime_mFEE11CE8F3FFDD639707E8064EA99CCD64F5C99F_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::set_lastMoveTime(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_lastMoveTime_m008BD50A07C1403D58D895BE67A571FF72C914D4_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, float ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::get_isDown()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MouseButtonModel_get_isDown_m6D25D5D7BE9E1781DF3B00F4C0ADD0942F7A0A8C_inline (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::get_lastFrameDelta()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E_inline (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::set_lastFrameDelta(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MouseButtonModel_set_lastFrameDelta_m760052CA3C1CA5CE93AA226D9F6D7D46023D5346_inline (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::set_isDown(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonModel_set_isDown_mF109D7F287B91F942F835520CB7B67EC131A9EC0 (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_Reset_mE8D9F86E602D177FCA6FEC7F0F8279D9EA08F60F (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonModel_Reset_m04966A9974669AFD8314FF5D8DA61B0AA13D8808 (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::OnFrameFinished()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonModel_OnFrameFinished_m3AA8EAB2730BD77885C53B5127E65FBADC09DF89 (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_isDragging()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ImplementationData_get_isDragging_m4342CE900F2E1C5F378AAF38248795FDB757278A_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_dragging(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_pressedTime()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ImplementationData_get_pressedTime_m6BB28908890AC2AA318371062BD0B1825AD011A0_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_clickTime(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___value0, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_pressedPosition()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_m68E4FD86C4F9EC5B81D3A15A9ED5776642075218_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_pressPosition(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_pressedRaycast()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_mBDF58873A81E64D77396EEDD9BA9FDE899807683_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerPressRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_pressedGameObject()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_mED5188E469B0B53324D43C84CDC4092BFE81802B_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerPress(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_pressedGameObjectRaw()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_mE114B4837644AF9AA92C0AB5952ACC15385A8E35_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_rawPointerPress(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_draggedGameObject()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_m5AABEB516101C86E6A8E7243C2E12B3BD2DDE43E_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerDrag(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::CopyTo(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonModel_CopyTo_mE192240DC4F3852B78A43812C3273BE692F95B04 (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.PointerEventData::get_dragging()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_isDragging(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_isDragging_m23603F83850AE86ED35D0A35EA577A51A5934912_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Single UnityEngine.EventSystems.PointerEventData::get_clickTime()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_pressedTime(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedTime_m08CE027B7019E15F97EC2997A310D2E26B2B688A_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, float ___value0, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_pressPosition()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_pressPosition_m8A6788DA6BF81481E4EBCBA2ED1838F786EBAE63_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_pressedPosition(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedPosition_m1402B47299E1C642D94FAF5AA83750DCBC61FA10_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::get_pointerPressRaycast()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_pressedRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedRaycast_m3FEA7BEBCA8A181BCBA546A396608AD05E719314_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_pointerPress()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_pressedGameObject(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObject_m43A6B848D7254A1A27999F73ACDEAFC53B69A6E5_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_rawPointerPress()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_rawPointerPress_m8B7A6235A116E26EDDBBDB24473BE0F9634C7B71_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_pressedGameObjectRaw(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObjectRaw_mBF3547F3629CF684A4151F0EB8EDC49AA6C85D6E_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_pointerDrag()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_draggedGameObject(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_draggedGameObject_m9992F3D5D397185C774C37867A18FED90348B6F6_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::CopyFrom(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonModel_CopyFrom_mDB836BEC9F0538CD4C75CC917EA71A474279B1E6 (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_pointerId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MouseModel_get_pointerId_m4093B901532AE29AF876BDE011E97CDB75B19A48_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_changedThisFrame()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_changedThisFrame(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, bool ___value0, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_position()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_position_m7E6304F677CAB4B807B518B947B95AA63A2BE95A_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.Vector2::op_Subtraction(UnityEngine.Vector2,UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_deltaPosition(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MouseModel_set_deltaPosition_mF4C0644A65E3E98A9A397643D0E006B9187654DA_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_position(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_position_mF52DACDB97F269AEC85646486093D6A135C5E509 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_deltaPosition()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_deltaPosition_m343DD465AA88D7C5DE2A2E8A48CC3645434F70FF_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_scrollDelta()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_scrollDelta_mE5D60044DDB3DC20CB2660C371DCF359DE7B19E0_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_scrollDelta(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_scrollDelta_m107437C513BD8F66EFDE6160EF224FEC6DA1F7A9 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_leftButton()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_leftButton_m4E4FEAA3354E2243FC862B4E1212D8C372B399A0_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_leftButton(UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_leftButton_mDFA9E10E68EC1E60BDAA76BEC99F128F69B0272A (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_leftButtonPressed(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_leftButtonPressed_mF1308166818C7AE8C3083EAE08FF32B24C8DDBF1 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, bool ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_rightButton()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_rightButton_m847C28E359189D4A2D4E39F0F5D3CC9943D5E624_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_rightButton(UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_rightButton_m41EB3062E8E1FD0F92D648F5591DBCE675E81FDF (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_rightButtonPressed(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_rightButtonPressed_m87EF490742E8A801BBAB04A32A4B868C7E6031AE (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, bool ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_middleButton()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_middleButton_m8997BE389494AA17D6BF696BDF1E4889A68EA3C1_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_middleButton(UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_middleButton_m528B124FF921B92CD25CD2EE623D97B8DE01C318 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_middleButtonPressed(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_middleButtonPressed_mF1E5EA114314006CDD15F484FCE7450F3D3B0A39 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalData_Reset_m285105197FFE5EC122647161C449132D50E4472F (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel__ctor_m63009692E802DED0663F43C9C8C5190FF33C8573 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, int32_t ___pointerId0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::OnFrameFinished()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_OnFrameFinished_m3C72244B03A8536965118B81CB098E355CCAE12D (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerId(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerId_m5B5FF54AB1DE7BD4454022A7C0535C618049BD9B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_position(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_delta(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_scrollDelta(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_scrollDelta_m58007CAE9A9B333B82C36B9E5431FBD926CB556C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::get_pointerTarget()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* InternalData_get_pointerTarget_m4C93CAD2F36BD7E897463C1C3DE6BD07B741BF06_inline (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerEnter(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.GameObject>::Clear()
inline void List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
}
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::get_hoverTargets()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* InternalData_get_hoverTargets_m7B27E64A82CB4C34D900E18D81B2BDCE8336EA4C_inline (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.GameObject>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared)(__this, ___collection0, method);
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_useDragThreshold(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_useDragThreshold_m63FE2034E4B240F1A0A902B1EB893B3DBA2D848B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::CopyTo(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_CopyTo_m783AAB4CDC5D0569D63B7DCDFFDD13E6219AA8BA (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::set_hoverTargets(System.Collections.Generic.List`1<UnityEngine.GameObject>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InternalData_set_hoverTargets_m0EBDF30E6181C88E401E66EF7241F8C206B88360_inline (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_pointerEnter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::set_pointerTarget(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InternalData_set_pointerTarget_mC6341AA6C2995C1E180BA15AE61884C000F6D89C_inline (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::CopyFrom(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_CopyFrom_m7B8817A31CE42B0A96A5FAD2B93DEF906E4E1055 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.GameObject>::.ctor()
inline void List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_pointerId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchModel_get_pointerId_mEF567A1F3619C12F6519E4A6335E47BEC45F3D6A_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method) ;
// UnityEngine.TouchPhase UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_selectPhase()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchModel_get_selectPhase_m8EF259C3B4DE6A8B17699E796E4294405E07450D_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_selectDelta()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchModel_get_selectDelta_mE61F993C8533C9E3BBEB2BDBDC65DB68D19C15C5_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::set_selectDelta(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TouchModel_set_selectDelta_m78599CB986783C0797E2C4DFF21B3C41062E29BD_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::set_changedThisFrame(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TouchModel_set_changedThisFrame_m6F51A89025E6D541FAD0C743D409CA10F0981ECF_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::set_selectPhase(UnityEngine.TouchPhase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_set_selectPhase_m20B064E217FF3B1FC1D408A613E37D482B7ABFE7 (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_changedThisFrame()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TouchModel_get_changedThisFrame_mAF76A9DB5F6F80A8BE56ADB2BDD35E55A5BE717B_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_position()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TouchModel_get_position_m6D3991EE4E0BD3CF7D530F9BDCB34804A21C431F_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::set_deltaPosition(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TouchModel_set_deltaPosition_m347C7275855704F7257AADD47BCABBBEA82F5499_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::set_position(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_set_position_mCC5A8772603B39F6EB6440B5592AA3FCB813D908 (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_deltaPosition()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TouchModel_get_deltaPosition_m8F1A9044D3FFE83FA0E82B3D6268829F6DD2A5CD_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_Reset_mCC0BA6F7121A295E5A12ED99C63C2A644C4CBD2D (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel__ctor_m7DCCF8284C173C8BD0BE01B0CD15F912C15FEF4B (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, int32_t ___pointerId0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_Reset_m23AF647E5BDA070B4FAF70877E2A5932D5235454 (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::OnFrameFinished()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_OnFrameFinished_m4FD14ED5AF9964A444CD372A80B81ED55671FEF2 (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pointerTarget()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pointerTarget_m1B2B7AB756D7AB58E4DDD61724B28C5BEA7ED45F_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_isDragging()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ImplementationData_get_isDragging_mA2CDC9BC26BCAE431DC2D5556C26C4081C0120EC_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pressedTime()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ImplementationData_get_pressedTime_m72D41F1D9D6D5374145B9EA73D48DD514DF57FD8_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pressedPosition()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_m521F6BF90F71F5364A9D3C9A7DBEC1B3263C2410_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pressedRaycast()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_m449154600AFBECB2454BE161E4F2D8E1C64E2725_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pressedGameObject()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_m1C35ACFE7671A98B1BE4C9E63F99DE6F26F5A701_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pressedGameObjectRaw()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_m9ACBBB249DE666C8A4FC22EF9D2738F7769ABC26_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_draggedGameObject()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_mE3FA41A9E5B1A53CE2D810ECB6F70E931C8C24D2_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_hoverTargets()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ImplementationData_get_hoverTargets_m4291FA348576902BD6421C43CEF21005B42DDEA2_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::CopyTo(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_CopyTo_mDDC9DCAA045380589E0325B4D8D272E419D4A75C (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pointerTarget(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pointerTarget_m0D4C6DE0126FB9B434079FB0191701AE39D11CFA_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_isDragging(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_isDragging_mF4D332D1A15D3A25CA9DCD01FA66D1DD3509053A_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pressedTime(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedTime_m1DD37E6DF363A9D52AAB0DF5D41FA85D480412AB_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, float ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pressedPosition(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedPosition_mE0AE62062AD3BB0B3F91FC5A0A72C984838BB6A8_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pressedRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedRaycast_mD8206A598973DF87B20BDBBEC8E6E470D7EDC8FB_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pressedGameObject(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObject_m0B1B3517DF2991D515A6EE42D9A4E1EEB0F3D1A8_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pressedGameObjectRaw(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObjectRaw_m53BFBDBF206350007C3B16570C0D1D1017B4478F_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_draggedGameObject(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_draggedGameObject_m6E44F10143BEC035EA6D122100AE0E331D40EF45_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::CopyFrom(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_CopyFrom_m6727074A88A573B3B5A696C9BAC2EE03F1FD70FF (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_hoverTargets(System.Collections.Generic.List`1<UnityEngine.GameObject>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_hoverTargets_mA2493C8E719D7734B4B52E0224B269C9265795FE_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::.ctor(UnityEngine.EventSystems.EventSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData__ctor_m63837790B68893F0022CCEFEF26ADD55A975F71C (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___eventSystem0, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.BaseInputModule UnityEngine.EventSystems.BaseEventData::get_currentInputModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* BaseEventData_get_currentInputModule_mA46B583FC6DAA697F2DAA91A73D14B3E914AF1A5 (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.EventSystems.PointerEventData::get_pointerId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_pointerId_m81DDB468147FE75C1474C9C6C35753BB53A21275_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.IUIInteractor UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::GetInteractor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XRUIInputModule_GetInteractor_mBBAF268AB57CAB8CB6390D339B7D5A5893CEF747 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, int32_t ___pointerId0, const RuntimeMethod* method) ;
// UnityEngine.Canvas UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::get_canvas()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* TrackedDeviceGraphicRaycaster_get_canvas_mAD7A34E53FB188AC4DA28255C022DAFCBBA5613D (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, const RuntimeMethod* method) ;
// UnityEngine.Camera UnityEngine.Canvas::get_worldCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* Canvas_get_worldCamera_mD2FDE13B61A5213F4E64B40008EB0A8D2D07B853 (Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::PerformRaycasts(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster_PerformRaycasts_mFCEEBBF50B3116C9783A46D8A99F138FB7C788A2 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* ___eventData0, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___resultAppendList1, const RuntimeMethod* method) ;
// T UnityEngine.Component::GetComponent<UnityEngine.Canvas>()
inline Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* Component_GetComponent_TisCanvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26_m209BA4F663AB98A4504995B5BD3EADEDEFB92BF2 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
{
return (( Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
}
// System.Single UnityEngine.RaycastHit::get_distance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78 (RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.RaycastHit2D::get_distance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613 (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<UnityEngine.Vector3> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::get_rayPoints()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* TrackedDeviceEventData_get_rayPoints_m634507CA62EF8BCFC3A5F1B7F1DE107480FBFE7D_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, const RuntimeMethod* method) ;
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::get_layerMask()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB TrackedDeviceEventData_get_layerMask_m4A2A83C58E6B60DC4ED886236CCB760E70D610DD_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<UnityEngine.Vector3>::get_Item(System.Int32)
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810 (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B*, int32_t, const RuntimeMethod*))List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810_gshared)(__this, ___index0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::PerformRaycast(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.LayerMask,UnityEngine.Camera,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackedDeviceGraphicRaycaster_PerformRaycast_mF146A36CF05B6428122C843316097970AD82732C (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___from0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___to1, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___layerMask2, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___currentEventCamera3, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___resultAppendList4, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::set_rayHitIndex(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceEventData_set_rayHitIndex_m1DBE5C18ABAC0E5B241D10DB6164A391F37D5AF7_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector3>::get_Count()
inline int32_t List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_inline (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B*, const RuntimeMethod*))List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_gshared_inline)(__this, method);
}
// System.Single UnityEngine.Vector3::Distance(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Distance_m99C722723EDD875852EF854AD7B7C4F8AC4F84AB_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___b1, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::op_Subtraction(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___b1, const RuntimeMethod* method) ;
// System.Void UnityEngine.Ray::.ctor(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ray__ctor_mE298992FD10A3894C38373198385F345C58BD64C (Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___origin0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___direction1, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.LayerMask::op_Implicit(UnityEngine.LayerMask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LayerMask_op_Implicit_m5D697E103A7CB05CADCED9F90FD4F6BAE955E763 (LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___mask0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.Physics::RaycastNonAlloc(UnityEngine.Ray,UnityEngine.RaycastHit[],System.Single,System.Int32,UnityEngine.QueryTriggerInteraction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Physics_RaycastNonAlloc_mDFA9A2E36F048930570165C0BDDF4AE342ACF767 (Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___ray0, RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___results1, float ___maxDistance2, int32_t ___layerMask3, int32_t ___queryTriggerInteraction4, const RuntimeMethod* method) ;
// UnityEngine.RaycastHit UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::FindClosestHit(UnityEngine.RaycastHit[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 TrackedDeviceGraphicRaycaster_FindClosestHit_m90A61B47165A9C072BB7879FE72753C87EF62497 (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___hits0, int32_t ___count1, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Ray::get_origin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6 (Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Implicit_m8F73B300CB4E6F9B4EB5FB6130363D76CEAA230B_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___v0, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Ray::get_direction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086 (Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.Physics2D::RaycastNonAlloc(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.RaycastHit2D[],System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Physics2D_RaycastNonAlloc_mA6FFB21AB7C60872B57CF07BE6CF1A9F1341211B (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___origin0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___direction1, RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* ___results2, float ___distance3, int32_t ___layerMask4, const RuntimeMethod* method) ;
// UnityEngine.RaycastHit2D UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::FindClosestHit(UnityEngine.RaycastHit2D[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA TrackedDeviceGraphicRaycaster_FindClosestHit_mFDC5F6850B9AE7BE705AC95267570FF2F4344467 (RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* ___hits0, int32_t ___count1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::Clear()
inline void List_1_Clear_mEF6F24F9B19B3360DC8CAAD446C7696B33FC39B8_inline (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F*, const RuntimeMethod*))List_1_Clear_mEF6F24F9B19B3360DC8CAAD446C7696B33FC39B8_gshared_inline)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::SortedRaycastGraphics(UnityEngine.Canvas,UnityEngine.Ray,System.Single,UnityEngine.LayerMask,UnityEngine.Camera,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster_SortedRaycastGraphics_m5C36293D866172FE0B49DFADCFDF0A5391525803 (Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* ___canvas0, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___ray1, float ___maxDistance2, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___layerMask3, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___eventCamera4, List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* ___results5, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::GetEnumerator()
inline Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63 List_1_GetEnumerator_m98886FC8DF151AF831AD3B47051966D509D484E2 (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, const RuntimeMethod* method)
{
return (( Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63 (*) (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F*, const RuntimeMethod*))List_1_GetEnumerator_m98886FC8DF151AF831AD3B47051966D509D484E2_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::get_Current()
inline RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD Enumerator_get_Current_m4EB063F639AF28B245521BD522C30F593726BBB7_inline (Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63* __this, const RuntimeMethod* method)
{
return (( RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD (*) (Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63*, const RuntimeMethod*))Enumerator_get_Current_m4EB063F639AF28B245521BD522C30F593726BBB7_gshared_inline)(__this, method);
}
// UnityEngine.UI.Graphic UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::get_graphic()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* RaycastHitData_get_graphic_mD7D675E65B6B19526DEC71B273334796C44D7B88_inline (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::get_distance()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float RaycastHitData_get_distance_mC2299A0A61CCB9C17D93D532D8DE4109C8291EC0_inline (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.RaycastResult::set_gameObject(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::get_Count()
inline int32_t List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t8292C421BBB00D7661DC07462822936152BAB446*, const RuntimeMethod*))List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_gshared_inline)(__this, method);
}
// System.Int32 UnityEngine.UI.Graphic::get_depth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Graphic_get_depth_m16A82C751AE0497941048A3715D48A1066939460 (Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.Canvas::get_sortingLayerID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Canvas_get_sortingLayerID_m38FE23D0D6A2001F62CA24676298E95BEE968AB6 (Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.Canvas::get_sortingOrder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Canvas_get_sortingOrder_mFA9AC878A11BBEE1716CF7E7DF52E0AAC570C451 (Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::get_worldHitPosition()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 RaycastHitData_get_worldHitPosition_mA36CED27016B4C803EE9129A379C1052152D15F2_inline (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::get_screenPosition()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHitData_get_screenPosition_mAAA69CF11624FC7EA8667F228C640DEFCD6FB2AB_inline (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::get_displayIndex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RaycastHitData_get_displayIndex_mA3B5A6BD21766DBCE8EA33251BF23FDE7DFE0C50_inline (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Add(T)
inline void List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t8292C421BBB00D7661DC07462822936152BAB446*, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023, const RuntimeMethod*))List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_gshared_inline)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::MoveNext()
inline bool Enumerator_MoveNext_m8813B70B0648CF6A6D0FBFAC93417D0BF62C140E (Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63*, const RuntimeMethod*))Enumerator_MoveNext_m8813B70B0648CF6A6D0FBFAC93417D0BF62C140E_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::Dispose()
inline void Enumerator_Dispose_mFBDA2B2BB848674E3458E8F995047979D6A956F2 (Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63*, const RuntimeMethod*))Enumerator_Dispose_mFBDA2B2BB848674E3458E8F995047979D6A956F2_gshared)(__this, method);
}
// System.Collections.Generic.IList`1<UnityEngine.UI.Graphic> UnityEngine.UI.GraphicRegistry::GetGraphicsForCanvas(UnityEngine.Canvas)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GraphicRegistry_GetGraphicsForCanvas_m14232DD9431F5D6093757D5DCC48EBF1BB0128EE (Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* ___canvas0, const RuntimeMethod* method) ;
// UnityEngine.CanvasRenderer UnityEngine.UI.Graphic::get_canvasRenderer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860* Graphic_get_canvasRenderer_m62AB727277A28728264860232642DA6EC20DEAB1 (Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.CanvasRenderer::get_cull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasRenderer_get_cull_m48007D7CB40B3C0EC29F0CB316AFAC88748EF3D7 (CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.GameObject::get_layer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GameObject_get_layer_m108902B9C89E9F837CE06B9942AA42307450FEAF (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
// UnityEngine.RectTransform UnityEngine.UI.Graphic::get_rectTransform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* Graphic_get_rectTransform_mF4752E8934267D630810E84CE02CDFB81EB1FD6D (Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::RayIntersectsRectTransform(UnityEngine.RectTransform,UnityEngine.Ray,UnityEngine.Vector3&,System.Single&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackedDeviceGraphicRaycaster_RayIntersectsRectTransform_m350FD64F586049EB34A5326AD0EFA3F37189A978 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___transform0, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___ray1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* ___worldPosition2, float* ___distance3, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Camera::WorldToScreenPoint(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Camera_WorldToScreenPoint_m26B4C8945C3B5731F1CC5944CFD96BF17126BAA3 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.Camera::get_targetDisplay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Camera_get_targetDisplay_m204A169C94EEABDB491FA5A77CC684146B10DF80 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::.ctor(UnityEngine.UI.Graphic,UnityEngine.Vector3,UnityEngine.Vector2,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitData__ctor_m46C10CA0C3686A7DFC808CC5E995563E3E6E0900 (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* ___graphic0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldHitPosition1, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition2, float ___distance3, int32_t ___displayIndex4, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::Add(T)
inline void List_1_Add_mE6C474BBCAFBE5F68FF0E6FF95C034FE7AD19956_inline (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F*, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD, const RuntimeMethod*))List_1_Add_mE6C474BBCAFBE5F68FF0E6FF95C034FE7AD19956_gshared_inline)(__this, ___item0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SortingHelpers::Sort<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IComparer`1<T>)
inline void SortingHelpers_Sort_TisRaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_mF080C3925716C90E9068635B64500AB651DD46D1 (RuntimeObject* ___hits0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))SortingHelpers_Sort_TisRaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_mF080C3925716C90E9068635B64500AB651DD46D1_gshared)(___hits0, ___comparer1, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1_AddRange_m8E9878CB260E91008DF9EBD16392E9B92D08093E (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m8E9878CB260E91008DF9EBD16392E9B92D08093E_gshared)(__this, ___collection0, method);
}
// System.Void UnityEngine.RectTransform::GetWorldCorners(UnityEngine.Vector3[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_GetWorldCorners_m6E15303C3B065B2F65E0A7F0E0217695564C2E09 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___fourCornersArray0, const RuntimeMethod* method) ;
// System.Void UnityEngine.Plane::.ctor(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Plane__ctor_mBF36EDC369DE0EC29502B4C655CDBAFFB17BD863 (Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___b1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___c2, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Plane::Raycast(UnityEngine.Ray,System.Single&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Plane_Raycast_mC6D25A732413A2694A75CB0F2F9E75DEDDA117F0 (Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___ray0, float* ___enter1, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Ray::GetPoint(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Ray_GetPoint_mAF4E1D38026156E6434EF2BED2420ED5236392AF (Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* __this, float ___distance0, const RuntimeMethod* method) ;
// UnityEngine.LayerMask UnityEngine.LayerMask::op_Implicit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB LayerMask_op_Implicit_mDC9C22C4477684D460FCF25B1BFE6B54419FB922 (int32_t ___intVal0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>::.ctor()
inline void List_1__ctor_mF6CAC69CE096CD58F1DC4EDEB0927A8A83524BCB (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F*, const RuntimeMethod*))List_1__ctor_mF6CAC69CE096CD58F1DC4EDEB0927A8A83524BCB_gshared)(__this, method);
}
// System.Void UnityEngine.EventSystems.BaseRaycaster::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster__ctor_m1B6A963368E54C1E450BE15FAF1AE082142A1683 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitComparer__ctor_m3738852194278662207000E744F68BCA0B6C5C59 (RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F* __this, const RuntimeMethod* method) ;
// System.Int32 System.Int32::CompareTo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586 (int32_t* __this, int32_t ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_implementationData()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC TrackedDeviceModel_get_implementationData_m95202DC252DDE53560803CED892DDD834686B749_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_pointerId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TrackedDeviceModel_get_pointerId_m7AEFEA8657A653D0968500004E01A9B8672464DD_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_maxRaycastDistance()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float TrackedDeviceModel_get_maxRaycastDistance_m7D59D0EB9A5D126EB753972241962421E4A41E7A_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_maxRaycastDistance(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_maxRaycastDistance_m6EC3C19F85D167D4BFC03883616522D37BFB2648_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, float ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_select()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackedDeviceModel_get_select_mF73B603383F4D45021CD0AAFC29324A54AC8D55D_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_selectDelta()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TrackedDeviceModel_get_selectDelta_m3F6B5717A4F6C2DC505EA92A11846820A14B35FC_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_selectDelta(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_selectDelta_m61649F57176681CCBD64C07F4A4F0F3974DECE4C_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_changedThisFrame(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_select(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_select_m9513F69D1C9E4B312EC23820BFC81CA7030E6F02 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_changedThisFrame()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackedDeviceModel_get_changedThisFrame_m4C3C35C841B822ABB3D5DEE90F26FA74D8EE9FE1_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_position()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 TrackedDeviceModel_get_position_mA1B101753B4DE6F7142EE4DB49487104019DF4BE_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_position(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_position_mDB462484180081FA49D38E28ACAE1772E8F11442 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___value0, const RuntimeMethod* method) ;
// UnityEngine.Quaternion UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_orientation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 TrackedDeviceModel_get_orientation_m870C73AC6F4686930F729F7BDBF5812D7BB0CBCA_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Quaternion::op_Inequality(UnityEngine.Quaternion,UnityEngine.Quaternion)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Quaternion_op_Inequality_mC1922F160B14F6F404E46FFCC10B282D913BE354_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___lhs0, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rhs1, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_orientation(UnityEngine.Quaternion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_orientation_m1A0A17586D375B499F224DECEC2BB19721EF05FA (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___value0, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<UnityEngine.Vector3> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_raycastPoints()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* TrackedDeviceModel_get_raycastPoints_m3087C3A9A899CDA89FABE930AB7CD63A9856E07B_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_raycastPoints(System.Collections.Generic.List`1<UnityEngine.Vector3>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_raycastPoints_m582BE854A82211D8DC757CF5A79445D1DC464C3A (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___value0, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_currentRaycast()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 TrackedDeviceModel_get_currentRaycast_mAF58714250F6AB9E34888B19F2449EF2D0FA94E4_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_currentRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_currentRaycast_mB605A8C85EFDAEDC5D8A39468CD0933E54F50C73_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_currentRaycastEndpointIndex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TrackedDeviceModel_get_currentRaycastEndpointIndex_m2CF4F264EBDDE6EAE7285ED58636F55FB1FCAA9C_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_currentRaycastEndpointIndex(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_currentRaycastEndpointIndex_m590E66F5A9635363FE8E140E0F9CC28328AEC2E1_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, int32_t ___value0, const RuntimeMethod* method) ;
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_raycastLayerMask()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB TrackedDeviceModel_get_raycastLayerMask_mB1E60DDB72A91FD2A65B00356D485513174C60AF_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_raycastLayerMask(UnityEngine.LayerMask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_raycastLayerMask_m15984C257F236CA50C3131EE3A6AA7814BAB715B (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___value0, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_scrollDelta()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TrackedDeviceModel_get_scrollDelta_mCADE5E90334C1EE03593B0BCB7E21D55D2098E87_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_scrollDelta(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_scrollDelta_m961E99EA067FBCA97B2E8BC805BF1D608DF95014 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::.ctor()
inline void List_1__ctor_mC54E2BCBE43279A96FC082F5CDE2D76388BD8F9C (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B*, const RuntimeMethod*))List_1__ctor_mC54E2BCBE43279A96FC082F5CDE2D76388BD8F9C_gshared)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::Reset(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_Reset_m29196B36856087C2404D20AF734005C0BB6B0AA9 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, bool ___resetImplementation0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel__ctor_m2128F49761ECD982EEC5C86F0B18C9991A3ADE2E (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, int32_t ___pointerId0, const RuntimeMethod* method) ;
// UnityEngine.Quaternion UnityEngine.Quaternion::get_identity()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 Quaternion_get_identity_mB9CAEEB21BC81352CBF32DB9664BFC06FA7EA27B_inline (const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::Clear()
inline void List_1_Clear_m455780C5A45049F9BDC25EAD3BA10A681D16385D_inline (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B*, const RuntimeMethod*))List_1_Clear_m455780C5A45049F9BDC25EAD3BA10A681D16385D_gshared_inline)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_Reset_m78CB6F5BD992AECD4D7D58E5880CFC0DF4DBBC55 (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::OnFrameFinished()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_OnFrameFinished_m0CB3B1A5BB3236A786E674AEE6E740951AC59184 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::set_rayPoints(System.Collections.Generic.List`1<UnityEngine.Vector3>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceEventData_set_rayPoints_m50DE65136BB92487876DC7FA3E8FD98AB95CDE04_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::set_layerMask(UnityEngine.LayerMask)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceEventData_set_layerMask_mE98A92C0797C746EE0692EA41121D862C279D76F_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___value0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pointerTarget()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pointerTarget_mB2D4D091AC3BC5E937FB7252047DA33AC409FAEB_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_isDragging()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ImplementationData_get_isDragging_mEE3BF283FC9C5235D15708D18BE89E06319F781D_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pressedTime()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ImplementationData_get_pressedTime_m154FBADD86CD746C703BF37003C64C428CADAC35_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_position()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_position_m421FC9657A48CBED5AD985B2D7905BF7B06CA446_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pressedPosition()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_mE3E33C31F62A5ABF18461C479CA7DA9D8DB32262_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pressedRaycast()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_mA355A412C26FAB49EA39F4DEFDA824465DFDE48E_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pressedGameObject()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_m81DA354AA04B9531100A8C8C6A61100493115CF5_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pressedGameObjectRaw()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_mE9702863BC33793FB5DE550F0789A9058F369A2C_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_draggedGameObject()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_mBD53214AA566627B15D7EA5F6080758FF95C1848_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_hoverTargets()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ImplementationData_get_hoverTargets_m49C9E4E462CC1064607FA5A3BA0EF5AB0360EE0D_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::CopyTo(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_CopyTo_m077D1C3D2AB67EE3E95101C04E8ABDFD5D82D56B (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* ___eventData0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pointerTarget(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pointerTarget_m6A49B7736E5B50E934D4D998648ED2AB2D69C582_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_isDragging(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_isDragging_m315511026FE53448151B19E47E4902F90E819BC2_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pressedTime(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedTime_m0EB8960EE81F4D82A71AAC719999CE01D64DCDA6_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, float ___value0, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_position()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_position(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_position_m82C559B25F9B9515CCAE8FA900B78A2072CD3F7E_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pressedPosition(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedPosition_m9BBCEC0224F0FCB1572F06B61A01074A0CAD5DCA_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pressedRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedRaycast_mB79CE5436DFBFAB118F234D25B7D49E72582D9EB_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pressedGameObject(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObject_mF87125F8EFFBE3ED0609B5C67EA86704715996FE_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pressedGameObjectRaw(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObjectRaw_m3AEB4F85F771C297EAE30B1CAAFDD990446624B4_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_draggedGameObject(UnityEngine.GameObject)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_draggedGameObject_m977BE3A90025D2F50AC30A321D30245423B9CA6A_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::get_pointerCurrentRaycast()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::get_rayHitIndex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TrackedDeviceEventData_get_rayHitIndex_mF78EEEBC65BFB650372F8AE3736CC747A852D857_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::CopyFrom(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_CopyFrom_m2A29E70045067F467379D43A4AFB7CDCAFC1786B (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* ___eventData0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_hoverTargets(System.Collections.Generic.List`1<UnityEngine.GameObject>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_hoverTargets_mCD8DCF11D40DAC82195A1724F2BA0D85FF57E70C_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Math::Max(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_m830F00B616D7A2130E46E974DFB27E9DA7FE30E5 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method) ;
// T UnityEngine.Component::GetComponent<UnityEngine.Camera>()
inline Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* Component_GetComponent_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m64AC6C06DD93C5FB249091FEC84FA8475457CCC4 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
{
return (( Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::PerformRaycasts(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDevicePhysicsRaycaster_PerformRaycasts_m86E342C9D8A61B890C0909381DE96566125257E7 (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* ___eventData0, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___resultAppendList1, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.UIBehaviour::Awake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_Awake_mDF9D1A4867C8E730C59A7CAE97709CA9B8F3A0F2 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::.ctor(UnityEngine.RaycastHit[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitArraySegment__ctor_m1EA0C75F9B3A4AD6EEEA6EBB5D9926EC57FF0B01 (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___raycastHits0, int32_t ___count1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::PerformRaycast(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.LayerMask,UnityEngine.Camera,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackedDevicePhysicsRaycaster_PerformRaycast_m20052CC3DBF3C62D0A7705DF04CDEE6CFCF763FD (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___from0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___to1, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___layerMask2, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___currentEventCamera3, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___resultAppendList4, const RuntimeMethod* method) ;
// System.Void System.Array::Resize<UnityEngine.RaycastHit>(T[]&,System.Int32)
inline void Array_Resize_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mD5BCCA6C065C9A0784DDA90B211D93A05AF83339 (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
(( void (*) (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8**, int32_t, const RuntimeMethod*))Array_Resize_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mD5BCCA6C065C9A0784DDA90B211D93A05AF83339_gshared)(___array0, ___newSize1, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::set_count(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RaycastHitArraySegment_set_count_m914E21014BA452D837B277FC9088881160F7AE1D_inline (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.RaycastHit>::Clear()
inline void List_1_Clear_mBB1C1097E6EAB4F19E432E94B29D294EC9313A1F_inline (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9*, const RuntimeMethod*))List_1_Clear_mBB1C1097E6EAB4F19E432E94B29D294EC9313A1F_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.RaycastHit>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1_AddRange_m06E7BBAD0E1AC28E9F9E403F1A5B7E56D2343F78 (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m06E7BBAD0E1AC28E9F9E403F1A5B7E56D2343F78_gshared)(__this, ___collection0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SortingHelpers::Sort<UnityEngine.RaycastHit>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IComparer`1<T>)
inline void SortingHelpers_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mE36842A81DD293C053693681100FBDC73AF79D0D (RuntimeObject* ___hits0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))SortingHelpers_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mE36842A81DD293C053693681100FBDC73AF79D0D_gshared)(___hits0, ___comparer1, method);
}
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.RaycastHit>::GetEnumerator()
inline Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F List_1_GetEnumerator_mDD871A2334871E99D82AAD9D0843B05D712F8799 (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* __this, const RuntimeMethod* method)
{
return (( Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F (*) (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9*, const RuntimeMethod*))List_1_GetEnumerator_mDD871A2334871E99D82AAD9D0843B05D712F8799_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.RaycastHit>::get_Current()
inline RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 Enumerator_get_Current_mCD34ACB6BE5F6BEEEE297AD23C2C1FC1174813FF_inline (Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F* __this, const RuntimeMethod* method)
{
return (( RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 (*) (Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F*, const RuntimeMethod*))Enumerator_get_Current_mCD34ACB6BE5F6BEEEE297AD23C2C1FC1174813FF_gshared_inline)(__this, method);
}
// T UnityEngine.GameObject::GetComponent<UnityEngine.EventSystems.IEventSystemHandler>()
inline RuntimeObject* GameObject_GetComponent_TisIEventSystemHandler_t050874E4CAEDCBA7E792A19EE3405EA443AE36B5_m92329A00F346E4869E58F27F69886E60D43A3F53 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_m6EAED4AA356F0F48288F67899E5958792395563B_gshared)(__this, method);
}
// UnityEngine.Vector3 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector2_op_Implicit_mCD214B04BC52AED3C89C3BEF664B6247E5F8954A_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___v0, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Display::RelativeMouseAt(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Display_RelativeMouseAt_m978A03E5176C10A4A5CD1DEE6088FF7C3FE6EBBF (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___inputMouseCoordinates0, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.RaycastHit::get_normal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 RaycastHit_get_normal_mD8741B70D2039C5CAFC4368D4CE59D89562040B5 (RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.RaycastHit>::MoveNext()
inline bool Enumerator_MoveNext_m2769E67BF3F70EE5E543F882C4C77FFDDA59EF11 (Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F*, const RuntimeMethod*))Enumerator_MoveNext_m2769E67BF3F70EE5E543F882C4C77FFDDA59EF11_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.RaycastHit>::Dispose()
inline void Enumerator_Dispose_mB4EDC66D3E8011A4ED117827EB18BEAD7B269CB6 (Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F*, const RuntimeMethod*))Enumerator_Dispose_mB4EDC66D3E8011A4ED117827EB18BEAD7B269CB6_gshared)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitComparer__ctor_m25412161F14970521D7D85A4DD8BAE3C18AC4CC0 (RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.RaycastHit>::.ctor()
inline void List_1__ctor_m7715EBA40C1E9928D580B0D503FA394AB9503EFC (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9*, const RuntimeMethod*))List_1__ctor_m7715EBA40C1E9928D580B0D503FA394AB9503EFC_gshared)(__this, method);
}
// UnityEngine.RaycastHit UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 RaycastHitArraySegment_get_Current_mECA5B92CC673BB2BCED92B7F5E82075A17A800C8 (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitArraySegment_Reset_mA0FABB4A4E7AD22B6E83C3248A9D57EAFF1490EB (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<UnityEngine.RaycastHit> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RaycastHitArraySegment_GetEnumerator_mC9D09D2871FFB820FB5496456E5649B01594A0F7 (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, const RuntimeMethod* method) ;
// System.Int32 System.Single::CompareTo(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_CompareTo_m06F7868162EB392D3E99103D1A0BD27463C9E66F (float* __this, float ___value0, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseInputModule::get_eventSystem()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.BaseInputModule UnityEngine.EventSystems.EventSystem::get_currentInputModule()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.EventSystem::get_current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* EventSystem_get_current_mD15EA86304E070D175EF359A051A7DB807CA26C0 (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::SendUpdateEventToSelectedObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIInputModule_SendUpdateEventToSelectedObject_m7DD6DD3839C2A33F9D34A11A8643D193DBE8268B (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::get_currentSelectedGameObject()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
// System.Void System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData>::Invoke(T1,T2)
inline void Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E (Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___arg10, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___arg21, const RuntimeMethod* method)
{
(( void (*) (Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared)(__this, ___arg10, ___arg21, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler> UnityEngine.EventSystems.ExecuteEvents::get_updateSelectedHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* ExecuteEvents_get_updateSelectedHandler_mB63CDEA5DE1C37F2E0974E9E9679686627E924E6_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IUpdateSelectedHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m29048196EE9931B2E91B895CA98BCBBE2418E0B0 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Void UnityEngine.EventSystems.EventSystem::RaycastAll(UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_RaycastAll_mE93CC75909438D20D17A0EF98348A064FBFEA528 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___raycastResults1, const RuntimeMethod* method) ;
// System.Void System.Action`2<UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>>::Invoke(T1,T2)
inline void Action_2_Invoke_m61417268186749514FEB09357684A88FE79CAC93 (Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___arg10, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___arg21, const RuntimeMethod* method)
{
(( void (*) (Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5*, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*, List_1_t8292C421BBB00D7661DC07462822936152BAB446*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared)(__this, ___arg10, ___arg21, method);
}
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.BaseInputModule::FindFirstRaycast(System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 BaseInputModule_FindFirstRaycast_m911AAA96B2E1178B5446F594B2BD30849FE4AA2B (List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___candidates0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Clear()
inline void List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t8292C421BBB00D7661DC07462822936152BAB446*, const RuntimeMethod*))List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_gshared_inline)(__this, method);
}
// UnityEngine.EventSystems.PointerEventData UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::GetOrCreateCachedPointerEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* UIInputModule_GetOrCreateCachedPointerEvent_mBA7B83A85F177D7D70FFC22976A2D81F767C2190 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::PerformRaycast(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 UIInputModule_PerformRaycast_m4716E7450EC96B541A924BB1DC20E58B2F159B28 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerCurrentRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessMouseButton(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState,UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessMouseButton_mCD0F73EA5A20835EE50E9F238E2BDA4865B0F391 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, int32_t ___mouseButtonChanges0, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData1, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessMouseMovement(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessMouseMovement_m8654AF723206F8BE52803F57801811E4B54E9E41 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessMouseScroll(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessMouseScroll_m8A93D635F089F339891607F19D746BA4DB11452F (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessMouseButtonDrag(UnityEngine.EventSystems.PointerEventData,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessMouseButtonDrag_m768E9FBBC339845C4E7849C71B86D14DEB91F141 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, float ___pixelDragThresholdMultiplier1, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::get_gameObject()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.GameObject>::GetEnumerator()
inline Enumerator_t88BD1282EF117E59AACFC9EC55B89F0B9EDACE60 List_1_GetEnumerator_mA843D26C63E5963415DFCA6E49DFA27AFD9C75E8 (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, const RuntimeMethod* method)
{
return (( Enumerator_t88BD1282EF117E59AACFC9EC55B89F0B9EDACE60 (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.GameObject>::get_Current()
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* Enumerator_get_Current_m7236EBE1CFCB6533F96E030500D322B13D0CA5A4_inline (Enumerator_t88BD1282EF117E59AACFC9EC55B89F0B9EDACE60* __this, const RuntimeMethod* method)
{
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (Enumerator_t88BD1282EF117E59AACFC9EC55B89F0B9EDACE60*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Void System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>::Invoke(T1,T2)
inline void Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2 (Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___arg10, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___arg21, const RuntimeMethod* method)
{
(( void (*) (Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared)(__this, ___arg10, ___arg21, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerExitHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* ExecuteEvents_get_pointerExitHandler_m154D2E32DCA968A218B1AC5997E5D8F68D4E5E77_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerExitHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m8ED3323A06D78E8415B7A71D7EF4233770B49FAC (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.GameObject>::MoveNext()
inline bool Enumerator_MoveNext_m96F4B0BD0A5485C8E8CC57D961DF6F1FA256AF27 (Enumerator_t88BD1282EF117E59AACFC9EC55B89F0B9EDACE60* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t88BD1282EF117E59AACFC9EC55B89F0B9EDACE60*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.GameObject>::Dispose()
inline void Enumerator_Dispose_m07D362A07C19B36C2FD1B4DC79DD99903D4DA95D (Enumerator_t88BD1282EF117E59AACFC9EC55B89F0B9EDACE60* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t88BD1282EF117E59AACFC9EC55B89F0B9EDACE60*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// UnityEngine.GameObject UnityEngine.EventSystems.BaseInputModule::FindCommonRoot(UnityEngine.GameObject,UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* BaseInputModule_FindCommonRoot_m1DF898E40BF0776AFEB75AE67F40946223797090 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___g10, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___g21, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1<UnityEngine.GameObject>::Remove(T)
inline bool List_1_Remove_mCCE85D4D5326536C4B214C73D07030F4CCD18485 (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared)(__this, ___item0, method);
}
// UnityEngine.Transform UnityEngine.Transform::get_parent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerEnterHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* ExecuteEvents_get_pointerEnterHandler_m590CE74EB8D301A4E92EC941C5E644B7C2DE39E9_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerEnterHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m1213F2A971A7A51A5ECC489D28744318D57355EB (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.GameObject>::Add(T)
inline void List_1_Add_m43FBF207375C6E06B8C45ECE614F9B8008FB686E_inline (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_eligibleForClick(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___value0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.ISelectHandler>(UnityEngine.GameObject)
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_GetEventHandler_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m24416E302B1BDD2CCDDB58B1E20423E4B02F2D7A (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___root0, const RuntimeMethod* method)
{
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_mCC6FD728B0AB18205C62403EB509BBF746BCBE2B_gshared)(___root0, method);
}
// System.Void UnityEngine.EventSystems.EventSystem::SetSelectedGameObject(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_SetSelectedGameObject_m9675415B7B3FE13B35E2CCB220F0C8AF04ECA173 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___selected0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___pointer1, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerDownHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* ExecuteEvents_get_pointerDownHandler_mF03E3A959BA9C0FA008013C1A02AE0AF6042DF44_inline (const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<UnityEngine.EventSystems.IPointerDownHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mAAB1B55CF77D247B61D04981A59169EFFE9E0AFD (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___root0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* ___callbackFunction2, const RuntimeMethod* method)
{
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117*, const RuntimeMethod*))ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mE7193CDED91D2857455C645004C9195F9703899B_gshared)(___root0, ___eventData1, ___callbackFunction2, method);
}
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.IPointerClickHandler>(UnityEngine.GameObject)
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m7B3F3A069FC951B1807EE83D8EE034137BBE248F (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___root0, const RuntimeMethod* method)
{
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_mCC6FD728B0AB18205C62403EB509BBF746BCBE2B_gshared)(___root0, method);
}
// System.Single UnityEngine.Time::get_unscaledTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_unscaledTime_m99A3C76AB74B5278B44A5E8B3498E51ABBF793CA (const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_lastPress()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_lastPress_m46720C62503214A44EE947679A8BA307BC2AEEDC_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.EventSystems.PointerEventData::get_clickCount()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_clickCount_m3977011C09DB9F904B1AAC3708B821B8D6AC0F9F_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.PointerEventData::set_clickCount(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___value0, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.IDragHandler>(UnityEngine.GameObject)
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m7F91F49169EDCAE4A288B31A5E5DE7600BEC5952 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___root0, const RuntimeMethod* method)
{
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_mCC6FD728B0AB18205C62403EB509BBF746BCBE2B_gshared)(___root0, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_initializePotentialDrag()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* ExecuteEvents_get_initializePotentialDrag_mD6C19D7BF028E6319B08CBF2BB7F0B8FDEEB03F1_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IInitializePotentialDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_m3C0AB91A07534AE98AC11E5B57F40BFF17544993 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerUpHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* ExecuteEvents_get_pointerUpHandler_mD03905CA3A384EC6AA81326758AB878087DC8C86_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerUpHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_m9FC5FE3B9CC6D87743F88BD3B2B437653DF82673 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Boolean UnityEngine.EventSystems.PointerEventData::get_eligibleForClick()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_eligibleForClick_m4B01A1640C694FD7421BDFB19CF763BC85672C8E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerClickHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* ExecuteEvents_get_pointerClickHandler_m4BF7FB241BD3AE488E0E1BE900666ECC2F2DFA78_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerClickHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_mB18F35F748E39943F1C1AE45EE7D15EBDF39833D (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler> UnityEngine.EventSystems.ExecuteEvents::get_dropHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* ExecuteEvents_get_dropHandler_m61ECC86CEAC77AA7C7E7793F6241D2413858354C_inline (const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<UnityEngine.EventSystems.IDropHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m4C9DA44082FBE5886FBFBFE66CBC89771C7971C5 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___root0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* ___callbackFunction2, const RuntimeMethod* method)
{
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733*, const RuntimeMethod*))ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mE7193CDED91D2857455C645004C9195F9703899B_gshared)(___root0, ___eventData1, ___callbackFunction2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_endDragHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* ExecuteEvents_get_endDragHandler_m6F1588E368AD932233A5E6BCD8D7259E9C5B921E_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IEndDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_mF257FA331CEC3705FC5A620859468C5B9AF0F756 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Boolean UnityEngine.EventSystems.PointerEventData::IsPointerMoving()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_IsPointerMoving_m281B3698E618D116F3D1E7473BADFAE5B67C834E (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// UnityEngine.CursorLockMode UnityEngine.Cursor::get_lockState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cursor_get_lockState_m99E97A23A051AA1167B9C49C3F6E8244E74531AE (const RuntimeMethod* method) ;
// System.Int32 UnityEngine.EventSystems.EventSystem::get_pixelDragThreshold()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventSystem_get_pixelDragThreshold_m2F7B0D1B5ACC63EB507FD7CCFE74F2B2804FF2E3_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_beginDragHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* ExecuteEvents_get_beginDragHandler_m330A9FEFFAF518FC1DAABE7A425BEB345B019421_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IBeginDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_m186924444C6950BA260CFE27CEFE0F76402342A2 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_dragHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* ExecuteEvents_get_dragHandler_m301F931ED0A78DBF5838822F836FBD221A57C76A_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m0E5281FDDCB78D969625ECB14A393CA5D572C3A8 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_scrollDelta()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.IScrollHandler>(UnityEngine.GameObject)
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_GetEventHandler_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m06334DCDF81CE782B175B591853E95AEE623A740 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___root0, const RuntimeMethod* method)
{
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_mCC6FD728B0AB18205C62403EB509BBF746BCBE2B_gshared)(___root0, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler> UnityEngine.EventSystems.ExecuteEvents::get_scrollHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* ExecuteEvents_get_scrollHandler_m2C857BD9AD23E281213BEAFD9ECCE080A784CF08_inline (const RuntimeMethod* method) ;
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<UnityEngine.EventSystems.IScrollHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_mBF61EACBCD0DBA4546054C1E27DEBABE226AEB6D (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___root0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* ___callbackFunction2, const RuntimeMethod* method)
{
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65*, const RuntimeMethod*))ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mE7193CDED91D2857455C645004C9195F9703899B_gshared)(___root0, ___eventData1, ___callbackFunction2, method);
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_button(UnityEngine.EventSystems.PointerEventData/InputButton)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___value0, const RuntimeMethod* method) ;
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::GetOrCreateCachedTrackedDeviceEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* UIInputModule_GetOrCreateCachedTrackedDeviceEvent_m09E1192845548AD20C54F91A2776F719883ED73D (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.Vector2::.ctor(System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___x0, float ___y1, const RuntimeMethod* method) ;
// UnityEngine.Camera UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::get_uiCamera()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* UIInputModule_get_uiCamera_mE7FE3483DD96250D5E9C4EEA0E4ADD4FAC1E7647_inline (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::set_uiCamera(UnityEngine.Camera)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UIInputModule_set_uiCamera_m37C392685DE455B9197AC432551BA808A1A9001D_inline (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___value0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.RaycastResult::get_isValid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RaycastResult_get_isValid_m69957B97C041A9E3FAF4ECA82BB8099C9FA171CE (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.EventSystem::get_sendNavigationEvents()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EventSystem_get_sendNavigationEvents_m8BA21E58E633B2C5B477E49DAABAD3C97A8158AF_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
// UnityEngine.EventSystems.AxisEventData UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::GetOrCreateCachedAxisEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* UIInputModule_GetOrCreateCachedAxisEvent_m0BA809D7FFB01FB16E1D388DE8C9C3E920BE95B9 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.AxisEventData::set_moveVector(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AxisEventData_set_moveVector_mC744F8B3519A6EE5E60482E8FB39641181C62914_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.AxisEventData::set_moveDir(UnityEngine.EventSystems.MoveDirection)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AxisEventData_set_moveDir_mD82A8AEB52FEFAC48CA064BB77A381B9A3E1B24B_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.AxisEventData>::Invoke(T1,T2)
inline void Action_2_Invoke_m961AAC2DEDC2255C6D7BF986D32171707E2A1C20 (Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___arg10, AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* ___arg21, const RuntimeMethod* method)
{
(( void (*) (Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B*, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared)(__this, ___arg10, ___arg21, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler> UnityEngine.EventSystems.ExecuteEvents::get_moveHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* ExecuteEvents_get_moveHandler_mDFB011B3A254EBA2556ACBBF08AAD475466B885F_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IMoveHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_m578F2B752399D9C98215CF361BB2A4A2180FC7E8 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler> UnityEngine.EventSystems.ExecuteEvents::get_submitHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* ExecuteEvents_get_submitHandler_m22E457BC6DEF2DE3EFBA851643491A70C02C9CB9_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.ISubmitHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_m21432792D94516E85BA189CAC8DB4C6C0A946C25 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler> UnityEngine.EventSystems.ExecuteEvents::get_cancelHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* ExecuteEvents_get_cancelHandler_mE98A451E87161D0AC02028FBBB3A1F136AFAAB8E_inline (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.ICancelHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_m3EEA2668A4CEA1DDF898B25C4034B2A123522203 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___target0, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___eventData1, EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mA38648BA98D96A3CE0DA4CE52C77A35E29F8E952_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::.ctor(UnityEngine.EventSystems.EventSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceEventData__ctor_m84DA911667F1B78CAA3C828871BA1C0E6B472513 (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___eventSystem0, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.AxisEventData::.ctor(UnityEngine.EventSystems.EventSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AxisEventData__ctor_mD9AFBD293F84F7032BAC2BDCB47FF5A780418CC5 (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___eventSystem0, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.BaseInputModule::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule__ctor_m88DDBBE7BC4BB7170F5F8F00A0C9E2EC6328B819 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.EventSystems.BaseInputModule::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_OnEnable_m2F440F226F94D4D79905CD403F08C3AEEE99D965 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::get_Item(System.Int32)
inline RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E (*) (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54*, int32_t, const RuntimeMethod*))List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_gshared)(__this, ___index0, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::get_Count()
inline int32_t List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_inline (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54*, const RuntimeMethod*))List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_gshared_inline)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor::.ctor(UnityEngine.XR.Interaction.Toolkit.UI.IUIInteractor,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegisteredInteractor__ctor_m6F1AB931437F1F9ACEC036DF8D35D6F5615109BF (RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E* __this, RuntimeObject* ___interactor0, int32_t ___deviceIndex1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::Add(T)
inline void List_1_Add_m45F907169865B34600173F8463808BC00FE4120B_inline (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54*, RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E, const RuntimeMethod*))List_1_Add_m45F907169865B34600173F8463808BC00FE4120B_gshared_inline)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::set_Item(System.Int32,T)
inline void List_1_set_Item_m977C691A5E504255565A1351BB052D5D238E20ED (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, int32_t ___index0, RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54*, int32_t, RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E, const RuntimeMethod*))List_1_set_Item_m977C691A5E504255565A1351BB052D5D238E20ED_gshared)(__this, ___index0, ___value1, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::DoProcess()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_DoProcess_m2F3415E90165B1AF36AA82DE27C23B2A9EBBE47C (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessTrackedDevice(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessTrackedDevice_m82718A0C6C9B13B6FEAC0967D3DBAC75BD3C5E86 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* ___deviceState0, bool ___force1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::RemoveAt(System.Int32)
inline void List_1_RemoveAt_mD1B83CE5C1865EA57FFDC6B54A38BD746329FF24 (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54*, int32_t, const RuntimeMethod*))List_1_RemoveAt_mD1B83CE5C1865EA57FFDC6B54A38BD746329FF24_gshared)(__this, ___index0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::ProcessMouse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_ProcessMouse_mD684700E9D27203EE72E7DE93F773DF887050EA6 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::ProcessTouches()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_ProcessTouches_m9572050FF91FC957906A77EA725A6A5E288C8354 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Mouse UnityEngine.InputSystem.Mouse::get_current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* Mouse_get_current_m559AE408DFE4F44D811979FE592BBAF7A84CE6F3_inline (const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Pointer::get_position()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* Pointer_get_position_m4286004169788483EEDA6AF833CEFDB04FEDF3D8_inline (Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* __this, const RuntimeMethod* method) ;
// TValue UnityEngine.InputSystem.InputControl`1<UnityEngine.Vector2>::ReadValue()
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 InputControl_1_ReadValue_m362E05F00FE8CF8FC52F0D673291907EC7FA6541 (InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66* __this, const RuntimeMethod* method)
{
return (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66*, const RuntimeMethod*))InputControl_1_ReadValue_m362E05F00FE8CF8FC52F0D673291907EC7FA6541_gshared)(__this, method);
}
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Mouse::get_scroll()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* Mouse_get_scroll_m309B52001D54F8EEA0F773846829AF03AD6EA8B2_inline (Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Mouse::get_leftButton()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Mouse_get_leftButton_m1015BCBE6BE30B1D1D2702736A4E64120F6B5DFB_inline (Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* __this, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.InputSystem.Controls.ButtonControl::get_isPressed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ButtonControl_get_isPressed_m947621402F6EC1B957C2DE984806A6500D422EA6 (ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Mouse::get_rightButton()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Mouse_get_rightButton_mFA0FD700624C0DE1B858F9516426414767F09D98_inline (Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* __this, const RuntimeMethod* method) ;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Mouse::get_middleButton()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Mouse_get_middleButton_m1E9EB13B53CAA15CD49C6861A6CD542452B3A8A9_inline (Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessMouse(UnityEngine.XR.Interaction.Toolkit.UI.MouseModel&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessMouse_mF90F8EA789274FCD298E5ED801EE9675A9E3EEA4 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* ___mouseState0, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Input::get_mousePresent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_get_mousePresent_m7636BF18F4329EA82F264DA4D87B9B25A8A4923C (const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Input::get_mousePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Input_get_mousePosition_m2414B43222ED0C5FAB960D393964189AFD21EEAD (const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.Input::get_mouseScrollDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Input_get_mouseScrollDelta_m41C6379183734C5061C6E8C9B6DEFFC9C084A0CE (const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Input::GetMouseButton(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetMouseButton_mE545CF4B790C6E202808B827E3141BEC3330DB70 (int32_t ___button0, const RuntimeMethod* method) ;
// System.Int32 UnityEngine.Input::get_touchCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Input_get_touchCount_m7B8EAAB3449A6DC2D90AF3BA36AF226D97C020CF (const RuntimeMethod* method) ;
// UnityEngine.Touch[] UnityEngine.Input::get_touches()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchU5BU5D_t242545870BFCA81F368CCF82E00F9E2A7FB523B3* Input_get_touches_m884B92DD9A389F7985AB275A9717AC629C258B6B (const RuntimeMethod* method) ;
// System.Int32 UnityEngine.Touch::get_fingerId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_fingerId_mC1DCE93BFA0574960A3AE5329AE6C5F7E06962BD (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>::get_Item(System.Int32)
inline RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 (*) (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC*, int32_t, const RuntimeMethod*))List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B_gshared)(__this, ___index0, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>::get_Count()
inline int32_t List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_inline (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC*, const RuntimeMethod*))List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_gshared_inline)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch::.ctor(UnityEngine.Touch,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegisteredTouch__ctor_mEAB697F13AE6A0335886FE62EF14C790C9077324 (RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37* __this, Touch_t03E51455ED508492B3F278903A0114FA0E87B417 ___touch0, int32_t ___deviceIndex1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>::set_Item(System.Int32,T)
inline void List_1_set_Item_mEA01B6D51EE3751D4467647ED8D246D6B5F4F0C2 (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, int32_t ___index0, RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC*, int32_t, RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37, const RuntimeMethod*))List_1_set_Item_mEA01B6D51EE3751D4467647ED8D246D6B5F4F0C2_gshared)(__this, ___index0, ___value1, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>::Add(T)
inline void List_1_Add_m2B08809ACCCD8B2CAF21468D0671EB5643A4A2CA_inline (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC*, RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37, const RuntimeMethod*))List_1_Add_m2B08809ACCCD8B2CAF21468D0671EB5643A4A2CA_gshared_inline)(__this, ___item0, method);
}
// UnityEngine.TouchPhase UnityEngine.Touch::get_phase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_phase_mB82409FB2BE1C32ABDBA6A72E52A099D28AB70B0 (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
// UnityEngine.Vector2 UnityEngine.Touch::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_position_m41B9EB0F3F3E1BE98CEB388253A9E31979CB964A (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessTouch(UnityEngine.XR.Interaction.Toolkit.UI.TouchModel&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessTouch_m6E005B10690A60C60030CCB1803BA683337224FE (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* ___touchState0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredTouch>::.ctor()
inline void List_1__ctor_mF3DDC40240537B6E9B272FDFF5F6335E97934C47 (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC*, const RuntimeMethod*))List_1__ctor_mF3DDC40240537B6E9B272FDFF5F6335E97934C47_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule/RegisteredInteractor>::.ctor()
inline void List_1__ctor_m94BD49CB8971447490F93532B823C4E4F3DAE5A4 (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54*, const RuntimeMethod*))List_1__ctor_m94BD49CB8971447490F93532B823C4E4F3DAE5A4_gshared)(__this, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule__ctor_mF6B661E76FF09FEC44404BA11DD54F8D3E2FB827 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method) ;
// System.Void Unity.Profiling.ProfilerMarker/AutoScope::.ctor(System.IntPtr)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AutoScope__ctor_m7F63A273E382CB6328736B6E7F321DDFA40EA9E3_inline (AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139* __this, intptr_t ___markerPtr0, const RuntimeMethod* method) ;
// System.Void Unity.Profiling.LowLevel.Unsafe.ProfilerUnsafeUtility::EndSample(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProfilerUnsafeUtility_EndSample_mE2F7A0DB4C52105F7CD135ED8816A2BB98E663CC (intptr_t ___markerPtr0, const RuntimeMethod* method) ;
// System.IntPtr Unity.Profiling.LowLevel.Unsafe.ProfilerUnsafeUtility::CreateMarker(System.String,System.UInt16,Unity.Profiling.LowLevel.MarkerFlags,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ProfilerUnsafeUtility_CreateMarker_m27DDE00D41B95677982DBFCE074D45B79E50C7CC (String_t* ___name0, uint16_t ___categoryId1, uint16_t ___flags2, int32_t ___metadataCount3, const RuntimeMethod* method) ;
// System.Single UnityEngine.Vector3::get_sqrMagnitude()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method) ;
// System.Single UnityEngine.Mathf::Max(System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mA9DCA91E87D6D27034F56ABA52606A9090406016_inline (float ___a0, float ___b1, const RuntimeMethod* method) ;
// System.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, float ___r0, float ___g1, float ___b2, float ___a3, const RuntimeMethod* method) ;
// System.Void UnityEngine.Quaternion::.ctor(System.Single,System.Single,System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Quaternion__ctor_m868FD60AA65DD5A8AC0C5DEB0608381A8D85FCD8_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974* __this, float ___x0, float ___y1, float ___z2, float ___w3, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::Normalize(UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_Normalize_m6120F119433C5B60BBB28731D3D4A0DA50A84DDD_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___value0, const RuntimeMethod* method) ;
// System.Single UnityEngine.Vector3::Angle(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Angle_m1B9CC61B142C3A0E7EEB0559983CC391D1582F56_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___from0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___to1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Quaternion::op_Equality(UnityEngine.Quaternion,UnityEngine.Quaternion)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Quaternion_op_Equality_m3DF1D708D3A0AFB11EACF42A9C068EF6DC508FBB_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___lhs0, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rhs1, const RuntimeMethod* method) ;
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B (RuntimeArray* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Void Unity.Profiling.LowLevel.Unsafe.ProfilerUnsafeUtility::BeginSample(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProfilerUnsafeUtility_BeginSample_m1C6D6ED1C8E0CB2FD0934EB6EA333276F67C14F6 (intptr_t ___markerPtr0, const RuntimeMethod* method) ;
// System.Single UnityEngine.Vector3::Magnitude(UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Magnitude_m6AD0BEBF88AAF98188A851E62D7A32CB5B7830EF_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___vector0, const RuntimeMethod* method) ;
// UnityEngine.Vector3 UnityEngine.Vector3::op_Division(UnityEngine.Vector3,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Division_mD7200D6D432BAFC4135C5B17A0B0A812203B0270_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, float ___d1, const RuntimeMethod* method) ;
// System.Single UnityEngine.Quaternion::Dot(UnityEngine.Quaternion,UnityEngine.Quaternion)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Quaternion_Dot_m4A80D03D7B7DEC054E2175E53D072675649C6713_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___a0, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___b1, const RuntimeMethod* method) ;
// System.Boolean UnityEngine.Quaternion::IsEqualUsingDot(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Quaternion_IsEqualUsingDot_m5C6AC5F5C56B27C25DDF612BEEF40F28CA44CA31_inline (float ___dot0, const RuntimeMethod* method) ;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.XRSocketInteractor/ShaderPropertyLookup::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShaderPropertyLookup__cctor_m1A59E24DA3A24CE183DF3916009DE66C992A5A6C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3708CDBCC9F390AB99D52FE7DEE4724401B69B9F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral47A3FAF17D89549FD0F0ECA7370B81F7C80DFCDE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral51282E2AAC09AC6EDBC2C1C237C0183F97FEE379);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral73B13DE9817379145386BC6ECC87E983FC8ED41A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7D61FA9D9BE7581D7E2EE28C775ABE0D4B8C3D69);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB25CF1C6B74339FBFCE846454A70688CE58C094C);
s_Il2CppMethodInitialized = true;
}
{
// public static readonly int mode = Shader.PropertyToID("_Mode");
int32_t L_0;
L_0 = Shader_PropertyToID_mF5F7BA2EFF23D83482ECDE4C34227145D817B1EB(_stringLiteral7D61FA9D9BE7581D7E2EE28C775ABE0D4B8C3D69, NULL);
((ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_il2cpp_TypeInfo_var))->___mode_0 = L_0;
// public static readonly int srcBlend = Shader.PropertyToID("_SrcBlend");
int32_t L_1;
L_1 = Shader_PropertyToID_mF5F7BA2EFF23D83482ECDE4C34227145D817B1EB(_stringLiteral3708CDBCC9F390AB99D52FE7DEE4724401B69B9F, NULL);
((ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_il2cpp_TypeInfo_var))->___srcBlend_1 = L_1;
// public static readonly int dstBlend = Shader.PropertyToID("_DstBlend");
int32_t L_2;
L_2 = Shader_PropertyToID_mF5F7BA2EFF23D83482ECDE4C34227145D817B1EB(_stringLiteral73B13DE9817379145386BC6ECC87E983FC8ED41A, NULL);
((ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_il2cpp_TypeInfo_var))->___dstBlend_2 = L_2;
// public static readonly int zWrite = Shader.PropertyToID("_ZWrite");
int32_t L_3;
L_3 = Shader_PropertyToID_mF5F7BA2EFF23D83482ECDE4C34227145D817B1EB(_stringLiteralB25CF1C6B74339FBFCE846454A70688CE58C094C, NULL);
((ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_il2cpp_TypeInfo_var))->___zWrite_3 = L_3;
// public static readonly int baseColor = Shader.PropertyToID("_BaseColor");
int32_t L_4;
L_4 = Shader_PropertyToID_mF5F7BA2EFF23D83482ECDE4C34227145D817B1EB(_stringLiteral51282E2AAC09AC6EDBC2C1C237C0183F97FEE379, NULL);
((ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_il2cpp_TypeInfo_var))->___baseColor_4 = L_4;
// public static readonly int color = Shader.PropertyToID("_Color"); // Legacy
int32_t L_5;
L_5 = Shader_PropertyToID_mF5F7BA2EFF23D83482ECDE4C34227145D817B1EB(_stringLiteral47A3FAF17D89549FD0F0ECA7370B81F7C80DFCDE, NULL);
((ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyLookup_tDED6B46E2CC5F6076041E9EC797B27498F4EAE60_il2cpp_TypeInfo_var))->___color_5 = L_5;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractableEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractableEvent__ctor_mDDC1471E4ABA20B7E264547F4C6AF92D00FA373A (XRInteractableEvent_t58E835C64FCD79C1322F5DDCAE92F3D40FCB2093* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_m3AD21B8B26995B681EBEFE4D13BA498B4E61D7F6_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
UnityEvent_1__ctor_m3AD21B8B26995B681EBEFE4D13BA498B4E61D7F6(__this, UnityEvent_1__ctor_m3AD21B8B26995B681EBEFE4D13BA498B4E61D7F6_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractorEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractorEvent__ctor_m1A2EDF11BD3670B83606D8416ECB4F84E55A31EE (XRInteractorEvent_tA90E755406526412871F25BB621E7F4536CD00E2* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_mF55C58688D34DDA5177764806B2CCEB5F28FAE0F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
UnityEvent_1__ctor_mF55C58688D34DDA5177764806B2CCEB5F28FAE0F(__this, UnityEvent_1__ctor_mF55C58688D34DDA5177764806B2CCEB5F28FAE0F_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs::get_interactor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* BaseInteractionEventArgs_get_interactor_mE0AC419B526DA1A39B56DA244258474047DD0176 (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = __this->___U3CinteractorU3Ek__BackingField_0;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs::set_interactor(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInteractionEventArgs_set_interactor_mD8877C3687E32637F0E1F67F83B4B0B8AF91C649 (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___value0;
__this->___U3CinteractorU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractorU3Ek__BackingField_0), (void*)L_0);
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs::get_interactable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* BaseInteractionEventArgs_get_interactable_mE03A040C395B75F0EB35E1CE5371458C1345BD45 (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractable interactable { get; set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = __this->___U3CinteractableU3Ek__BackingField_1;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs::set_interactable(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInteractionEventArgs_set_interactable_m2F82CCB58107BAB47A77981E751779A7A4FA3266 (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractable interactable { get; set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = ___value0;
__this->___U3CinteractableU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractableU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseInteractionEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInteractionEventArgs__ctor_mFBE9F5A938004146A92AFBA8FC7382B4CE7F7995 (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.HoverEnterEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HoverEnterEvent__ctor_mBA15FC5A5D70A50E4508C1AD60B798C433520D5C (HoverEnterEvent_t2BDBCA14FF94DA18C9AC12B43297F6C1641788AB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_mD2633EF820530931EAF2FB29AB58956AEF611106_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
UnityEvent_1__ctor_mD2633EF820530931EAF2FB29AB58956AEF611106(__this, UnityEvent_1__ctor_mD2633EF820530931EAF2FB29AB58956AEF611106_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HoverEnterEventArgs__ctor_m64B2FD3D0E28418D562AB3E809D4D41FB73B61F5 (HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* __this, const RuntimeMethod* method)
{
{
BaseInteractionEventArgs__ctor_mFBE9F5A938004146A92AFBA8FC7382B4CE7F7995(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.HoverExitEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HoverExitEvent__ctor_mC6DCAF3BA7DD1BF2D25E0E94D1DFDF8BB69F6599 (HoverExitEvent_t256704BC79FE0AA61EB2DE3FDDF43A1FC97F5832* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_mA086380519C0EE2CA2F6E67ECE2E468346318190_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
UnityEvent_1__ctor_mA086380519C0EE2CA2F6E67ECE2E468346318190(__this, UnityEvent_1__ctor_mA086380519C0EE2CA2F6E67ECE2E468346318190_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs::get_isCanceled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HoverExitEventArgs_get_isCanceled_mCD404A43E8B419E9C4A66AE69F74CBF4840B80FF (HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* __this, const RuntimeMethod* method)
{
{
// public bool isCanceled { get; set; }
bool L_0 = __this->___U3CisCanceledU3Ek__BackingField_2;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs::set_isCanceled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HoverExitEventArgs_set_isCanceled_mD30ECFAFDE30B96DB1C4BA30800D72D6CC31218C (HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool isCanceled { get; set; }
bool L_0 = ___value0;
__this->___U3CisCanceledU3Ek__BackingField_2 = L_0;
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HoverExitEventArgs__ctor_mE583F8ECA5AA5CD5766A4819840CF8AA29473223 (HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* __this, const RuntimeMethod* method)
{
{
BaseInteractionEventArgs__ctor_mFBE9F5A938004146A92AFBA8FC7382B4CE7F7995(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.SelectEnterEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SelectEnterEvent__ctor_mBD914CC3077CB09488C19CB000BF84A8CF4075FA (SelectEnterEvent_tBA2614C8C25D8794D5804C4F66195D74E64FC5D0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_m9A22AE02370829BC50BCF8446C62BA97F6AEBF16_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
UnityEvent_1__ctor_m9A22AE02370829BC50BCF8446C62BA97F6AEBF16(__this, UnityEvent_1__ctor_m9A22AE02370829BC50BCF8446C62BA97F6AEBF16_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SelectEnterEventArgs__ctor_mE74661F8720305C7C924ADBA1766057084A1D264 (SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* __this, const RuntimeMethod* method)
{
{
BaseInteractionEventArgs__ctor_mFBE9F5A938004146A92AFBA8FC7382B4CE7F7995(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.SelectExitEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SelectExitEvent__ctor_m3F1845BDE2ADD85BE5B34309656DE33AB8BE65AC (SelectExitEvent_t15DC0A39F9657BA9E6BAE6250D8D64C9671201F6* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_m6869722916D4191AE0CA5EA0785E7D3E1651D771_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
UnityEvent_1__ctor_m6869722916D4191AE0CA5EA0785E7D3E1651D771(__this, UnityEvent_1__ctor_m6869722916D4191AE0CA5EA0785E7D3E1651D771_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs::get_isCanceled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SelectExitEventArgs_get_isCanceled_m4C9FCCB6A51201B8728DAF9BA356BB589A149FF7 (SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* __this, const RuntimeMethod* method)
{
{
// public bool isCanceled { get; set; }
bool L_0 = __this->___U3CisCanceledU3Ek__BackingField_2;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs::set_isCanceled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SelectExitEventArgs_set_isCanceled_mCD4C4244EBD5D443FD62B581F29FF05B2751AF42 (SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool isCanceled { get; set; }
bool L_0 = ___value0;
__this->___U3CisCanceledU3Ek__BackingField_2 = L_0;
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SelectExitEventArgs__ctor_mF2917F17EA7F2AD8B1698AE1E4D5C3B9F0225A69 (SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* __this, const RuntimeMethod* method)
{
{
BaseInteractionEventArgs__ctor_mFBE9F5A938004146A92AFBA8FC7382B4CE7F7995(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.ActivateEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActivateEvent__ctor_mE03DD9A189FB311D8AC4BD2C02D4E5E29C66CFA3 (ActivateEvent_tA1D392B588AC99958CB847AE6911DC5131BCFB43* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_mAD6CA690018D1D4ED5CF39C974B9555205D306C3_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
UnityEvent_1__ctor_mAD6CA690018D1D4ED5CF39C974B9555205D306C3(__this, UnityEvent_1__ctor_mAD6CA690018D1D4ED5CF39C974B9555205D306C3_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.ActivateEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActivateEventArgs__ctor_m0F13A7B797CD0F08C6C81FA05374157ED0174798 (ActivateEventArgs_tAC81C18EA24D76411EE5A5D61523A551CCB46C3E* __this, const RuntimeMethod* method)
{
{
BaseInteractionEventArgs__ctor_mFBE9F5A938004146A92AFBA8FC7382B4CE7F7995(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.DeactivateEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeactivateEvent__ctor_m35BFEF1CB25E0CEE6C6D7D6A06B70EB9D9B141E1 (DeactivateEvent_tFE44262C3D8377F947FD46D4561BB9DAC7E0785D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_mA5D691D0FA13310D1357A593DB2FE896066BB1DC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
UnityEvent_1__ctor_mA5D691D0FA13310D1357A593DB2FE896066BB1DC(__this, UnityEvent_1__ctor_mA5D691D0FA13310D1357A593DB2FE896066BB1DC_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.DeactivateEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeactivateEventArgs__ctor_m7CBB9F171A35CB64534F7B9306D93F337FD2582C (DeactivateEventArgs_t7AE1163C39B5B95A4501EC961D8D643C369774D0* __this, const RuntimeMethod* method)
{
{
BaseInteractionEventArgs__ctor_mFBE9F5A938004146A92AFBA8FC7382B4CE7F7995(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager UnityEngine.XR.Interaction.Toolkit.BaseRegistrationEventArgs::get_manager()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* BaseRegistrationEventArgs_get_manager_m84ED1D40C6386160D7158A59481F70348DD48413 (BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21* __this, const RuntimeMethod* method)
{
{
// public XRInteractionManager manager { get; set; }
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_0 = __this->___U3CmanagerU3Ek__BackingField_0;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseRegistrationEventArgs::set_manager(UnityEngine.XR.Interaction.Toolkit.XRInteractionManager)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRegistrationEventArgs_set_manager_mDCA0E4515B5577A245206663B79F1BD793865AA5 (BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21* __this, XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___value0, const RuntimeMethod* method)
{
{
// public XRInteractionManager manager { get; set; }
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_0 = ___value0;
__this->___U3CmanagerU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CmanagerU3Ek__BackingField_0), (void*)L_0);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseRegistrationEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRegistrationEventArgs__ctor_m161AA13E866857D922FA734ECFC87A1A3915D681 (BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs::get_interactor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* InteractorRegisteredEventArgs_get_interactor_m5941F52A62289266C834D92590783488A171FAD8 (InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = __this->___U3CinteractorU3Ek__BackingField_1;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs::set_interactor(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractorRegisteredEventArgs_set_interactor_mC7D4F7F96D374D0689576F9781A8059692A21B17 (InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___value0;
__this->___U3CinteractorU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractorU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractorRegisteredEventArgs__ctor_m1CEEB1E90C5E36396D47DEE555CA51EAF67E51A4 (InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* __this, const RuntimeMethod* method)
{
{
BaseRegistrationEventArgs__ctor_m161AA13E866857D922FA734ECFC87A1A3915D681(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs::get_interactable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* InteractableRegisteredEventArgs_get_interactable_m8E24757B1B66EF6ED74A2BCC89A63E10364E7C6E (InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractable interactable { get; set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = __this->___U3CinteractableU3Ek__BackingField_1;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs::set_interactable(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractableRegisteredEventArgs_set_interactable_m8FAF324ECEAFDB5BD64BE2D71A991B9A3FDACBB4 (InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractable interactable { get; set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = ___value0;
__this->___U3CinteractableU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractableU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractableRegisteredEventArgs__ctor_m822E9B17C5624FD5DAC56EDDB45B0BBC559ED753 (InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* __this, const RuntimeMethod* method)
{
{
BaseRegistrationEventArgs__ctor_m161AA13E866857D922FA734ECFC87A1A3915D681(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs::get_interactor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* InteractorUnregisteredEventArgs_get_interactor_m850F10AA69039103E6E674733DB4CA93C4369E65 (InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = __this->___U3CinteractorU3Ek__BackingField_1;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs::set_interactor(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractorUnregisteredEventArgs_set_interactor_m06E8669E5C820661A28255E6983ECD6FE607B4E9 (InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___value0;
__this->___U3CinteractorU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractorU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractorUnregisteredEventArgs__ctor_m4A66D6EAF8334F6DB39B8C23D81FF3641910F98F (InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* __this, const RuntimeMethod* method)
{
{
BaseRegistrationEventArgs__ctor_m161AA13E866857D922FA734ECFC87A1A3915D681(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs::get_interactable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* InteractableUnregisteredEventArgs_get_interactable_m6B266EFCEBB22E4EE3F3E1F86E9D3D2E6F9BCA05 (InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractable interactable { get; set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = __this->___U3CinteractableU3Ek__BackingField_1;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs::set_interactable(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractableUnregisteredEventArgs_set_interactable_m0433D6227E005137B947C8C68C7131B2D3F7E1BF (InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractable interactable { get; set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = ___value0;
__this->___U3CinteractableU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractableU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InteractableUnregisteredEventArgs__ctor_m06876C6525B6E04247181AE3D01F172CD6CF8A9E (InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* __this, const RuntimeMethod* method)
{
{
BaseRegistrationEventArgs__ctor_m161AA13E866857D922FA734ECFC87A1A3915D681(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::add_interactorRegistered(System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_add_interactorRegistered_m326A4E8AB1DF06624D008EDC28711341CD3D8F1A (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* V_0 = NULL;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* V_1 = NULL;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* V_2 = NULL;
{
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_0 = __this->___interactorRegistered_4;
V_0 = L_0;
}
IL_0007:
{
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_1 = V_0;
V_1 = L_1;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_2 = V_1;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5*)Castclass((RuntimeObject*)L_4, Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5_il2cpp_TypeInfo_var));
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5** L_5 = (&__this->___interactorRegistered_4);
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_6 = V_2;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_7 = V_1;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_9 = V_0;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5*)L_9) == ((RuntimeObject*)(Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::remove_interactorRegistered(System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_remove_interactorRegistered_mF08538A5559BA84629940B3810F00DA55C01D259 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* V_0 = NULL;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* V_1 = NULL;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* V_2 = NULL;
{
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_0 = __this->___interactorRegistered_4;
V_0 = L_0;
}
IL_0007:
{
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_1 = V_0;
V_1 = L_1;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_2 = V_1;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5*)Castclass((RuntimeObject*)L_4, Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5_il2cpp_TypeInfo_var));
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5** L_5 = (&__this->___interactorRegistered_4);
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_6 = V_2;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_7 = V_1;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_9 = V_0;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5*)L_9) == ((RuntimeObject*)(Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::add_interactorUnregistered(System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_add_interactorUnregistered_m40D6A12AB95F14CF45A3EB93D5FEBFDBC240D712 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* V_0 = NULL;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* V_1 = NULL;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* V_2 = NULL;
{
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_0 = __this->___interactorUnregistered_5;
V_0 = L_0;
}
IL_0007:
{
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_1 = V_0;
V_1 = L_1;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_2 = V_1;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0*)Castclass((RuntimeObject*)L_4, Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0_il2cpp_TypeInfo_var));
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0** L_5 = (&__this->___interactorUnregistered_5);
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_6 = V_2;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_7 = V_1;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_9 = V_0;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0*)L_9) == ((RuntimeObject*)(Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::remove_interactorUnregistered(System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_remove_interactorUnregistered_mC0AD12A62B1B527063B721395A2B252B91CAE5F8 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* V_0 = NULL;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* V_1 = NULL;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* V_2 = NULL;
{
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_0 = __this->___interactorUnregistered_5;
V_0 = L_0;
}
IL_0007:
{
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_1 = V_0;
V_1 = L_1;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_2 = V_1;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0*)Castclass((RuntimeObject*)L_4, Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0_il2cpp_TypeInfo_var));
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0** L_5 = (&__this->___interactorUnregistered_5);
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_6 = V_2;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_7 = V_1;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_9 = V_0;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0*)L_9) == ((RuntimeObject*)(Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::add_interactableRegistered(System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_add_interactableRegistered_mA988BE3542F18F59BD66F16017DF19153DA7CF3F (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* V_0 = NULL;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* V_1 = NULL;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* V_2 = NULL;
{
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_0 = __this->___interactableRegistered_6;
V_0 = L_0;
}
IL_0007:
{
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_1 = V_0;
V_1 = L_1;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_2 = V_1;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8*)Castclass((RuntimeObject*)L_4, Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8_il2cpp_TypeInfo_var));
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8** L_5 = (&__this->___interactableRegistered_6);
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_6 = V_2;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_7 = V_1;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_9 = V_0;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8*)L_9) == ((RuntimeObject*)(Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::remove_interactableRegistered(System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_remove_interactableRegistered_mE2A574D88B059A17C482B057CFB632446D6537D1 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* V_0 = NULL;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* V_1 = NULL;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* V_2 = NULL;
{
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_0 = __this->___interactableRegistered_6;
V_0 = L_0;
}
IL_0007:
{
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_1 = V_0;
V_1 = L_1;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_2 = V_1;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8*)Castclass((RuntimeObject*)L_4, Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8_il2cpp_TypeInfo_var));
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8** L_5 = (&__this->___interactableRegistered_6);
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_6 = V_2;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_7 = V_1;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_9 = V_0;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8*)L_9) == ((RuntimeObject*)(Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::add_interactableUnregistered(System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_add_interactableUnregistered_mF868D7595D14DDA38D60F61249878B9E0E261E36 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* V_0 = NULL;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* V_1 = NULL;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* V_2 = NULL;
{
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_0 = __this->___interactableUnregistered_7;
V_0 = L_0;
}
IL_0007:
{
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_1 = V_0;
V_1 = L_1;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_2 = V_1;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0*)Castclass((RuntimeObject*)L_4, Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0_il2cpp_TypeInfo_var));
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0** L_5 = (&__this->___interactableUnregistered_7);
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_6 = V_2;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_7 = V_1;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_9 = V_0;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0*)L_9) == ((RuntimeObject*)(Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::remove_interactableUnregistered(System.Action`1<UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_remove_interactableUnregistered_mC4F1CD6073FFE6B6AB221522A1BEBE2CEE0E93E5 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* V_0 = NULL;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* V_1 = NULL;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* V_2 = NULL;
{
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_0 = __this->___interactableUnregistered_7;
V_0 = L_0;
}
IL_0007:
{
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_1 = V_0;
V_1 = L_1;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_2 = V_1;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0*)Castclass((RuntimeObject*)L_4, Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0_il2cpp_TypeInfo_var));
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0** L_5 = (&__this->___interactableUnregistered_7);
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_6 = V_2;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_7 = V_1;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_9 = V_0;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0*)L_9) == ((RuntimeObject*)(Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRInteractionManager> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::get_activeInteractionManagers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* XRInteractionManager_get_activeInteractionManagers_m5A2A2413296876F10164C973358D57FA2B3EB1E5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// internal static List<XRInteractionManager> activeInteractionManagers { get; } = new List<XRInteractionManager>();
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* L_0 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___U3CactiveInteractionManagersU3Ek__BackingField_8;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_OnEnable_mC89EE86392CA1087C5C2D541F90A3FA9C521AA72 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mAC275A6AD5BAF441B0B613B730F3CB6DFC5351A5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// activeInteractionManagers.Add(this);
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* L_0;
L_0 = XRInteractionManager_get_activeInteractionManagers_m5A2A2413296876F10164C973358D57FA2B3EB1E5_inline(NULL);
NullCheck(L_0);
List_1_Add_mAC275A6AD5BAF441B0B613B730F3CB6DFC5351A5_inline(L_0, __this, List_1_Add_mAC275A6AD5BAF441B0B613B730F3CB6DFC5351A5_RuntimeMethod_var);
// Application.onBeforeRender += OnBeforeRender;
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_1 = (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*)il2cpp_codegen_object_new(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131(L_1, __this, (intptr_t)((void*)GetVirtualMethodInfo(__this, 9)), /*hidden argument*/NULL);
Application_add_onBeforeRender_m10ABDBFFB06BEA4E016EDE6AFBAF474986DF03EE(L_1, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_OnDisable_m411C689A20C051276331AC5492824BA02891271D (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_mC8F44A1040275FF01C54D3CA3DE9DF963B8B4507_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// Application.onBeforeRender -= OnBeforeRender;
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_0 = (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*)il2cpp_codegen_object_new(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131(L_0, __this, (intptr_t)((void*)GetVirtualMethodInfo(__this, 9)), /*hidden argument*/NULL);
Application_remove_onBeforeRender_m8E7F9777E8D9C69269A69D2429B8C32A24A52597(L_0, NULL);
// activeInteractionManagers.Remove(this);
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* L_1;
L_1 = XRInteractionManager_get_activeInteractionManagers_m5A2A2413296876F10164C973358D57FA2B3EB1E5_inline(NULL);
NullCheck(L_1);
bool L_2;
L_2 = List_1_Remove_mC8F44A1040275FF01C54D3CA3DE9DF963B8B4507(L_1, __this, List_1_Remove_mC8F44A1040275FF01C54D3CA3DE9DF963B8B4507_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::Update()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_Update_m69F79C2139BBB77F7079EBFA048C66D60F7768C8 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m376C7B614B2C84EDEA8F43A62438413574C26649_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mDFD000D29E07CFC47B33BAF84EFC4EE39184368A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mC1A1FC2C5810F5F0D86FCA778FC392FE71DC8AA7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mFCC042FED9DAA11ED85796F500191258E8EEE306_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_IsStillRegistered_m1E7ECF06FC7C79B6C8A8AD135D4B0BBAA74539D9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_get_registeredSnapshot_m4D9B2ADE24FB0068235042702F5E33CAEED329A1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
memset((&V_0), 0, sizeof(V_0));
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_1;
memset((&V_1), 0, sizeof(V_1));
Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1 V_2;
memset((&V_2), 0, sizeof(V_2));
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* V_3 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 8> __leave_targets;
{
// FlushRegistration();
XRInteractionManager_FlushRegistration_mD3A98438B16A1A1CF88A66E6935578619C60251A(__this, NULL);
// using (s_ProcessInteractorsMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_ProcessInteractorsMarker_24;
V_1 = L_0;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
L_1 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_1;
}
IL_0014:
try
{// begin try (depth: 1)
// ProcessInteractors(XRInteractionUpdateOrder.UpdatePhase.Dynamic);
VirtualActionInvoker1< int32_t >::Invoke(10 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ProcessInteractors(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase) */, __this, 1);
IL2CPP_LEAVE(0x43, FINALLY_001d);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_001d;
}
FINALLY_001d:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(29)
}// end finally (depth: 1)
IL2CPP_CLEANUP(29)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x43, IL_002b)
}
IL_002b:
{
// foreach (var interactor in m_Interactors.registeredSnapshot)
RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* L_2 = __this->___m_Interactors_10;
NullCheck(L_2);
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* L_3;
L_3 = RegistrationList_1_get_registeredSnapshot_m4D9B2ADE24FB0068235042702F5E33CAEED329A1_inline(L_2, RegistrationList_1_get_registeredSnapshot_m4D9B2ADE24FB0068235042702F5E33CAEED329A1_RuntimeMethod_var);
NullCheck(L_3);
Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1 L_4;
L_4 = List_1_GetEnumerator_mFCC042FED9DAA11ED85796F500191258E8EEE306(L_3, List_1_GetEnumerator_mFCC042FED9DAA11ED85796F500191258E8EEE306_RuntimeMethod_var);
V_2 = L_4;
}
IL_003c:
try
{// begin try (depth: 1)
{
goto IL_012c;
}
IL_0041:
{
// foreach (var interactor in m_Interactors.registeredSnapshot)
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_5;
L_5 = Enumerator_get_Current_mC1A1FC2C5810F5F0D86FCA778FC392FE71DC8AA7_inline((&V_2), Enumerator_get_Current_mC1A1FC2C5810F5F0D86FCA778FC392FE71DC8AA7_RuntimeMethod_var);
V_3 = L_5;
// if (!m_Interactors.IsStillRegistered(interactor))
RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* L_6 = __this->___m_Interactors_10;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_7 = V_3;
NullCheck(L_6);
bool L_8;
L_8 = RegistrationList_1_IsStillRegistered_m1E7ECF06FC7C79B6C8A8AD135D4B0BBAA74539D9(L_6, L_7, RegistrationList_1_IsStillRegistered_m1E7ECF06FC7C79B6C8A8AD135D4B0BBAA74539D9_RuntimeMethod_var);
if (!L_8)
{
goto IL_012c;
}
}
IL_005a:
{
// using (s_GetValidTargetsMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_9 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_GetValidTargetsMarker_26;
V_1 = L_9;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_10;
L_10 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_10;
}
IL_0068:
try
{// begin try (depth: 2)
// GetValidTargets(interactor, m_ValidTargets);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_11 = V_3;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_12 = __this->___m_ValidTargets_14;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_13;
L_13 = XRInteractionManager_GetValidTargets_m682F8B8F1BB671DADE1CC90A262ECEBDBA3DD49C(__this, L_11, L_12, NULL);
IL2CPP_LEAVE(0x134, FINALLY_0078);
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_0078;
}
FINALLY_0078:
{// begin finally (depth: 2)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(120)
}// end finally (depth: 2)
IL2CPP_CLEANUP(120)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x134, IL_0086)
}
IL_0086:
{
// using (s_EvaluateInvalidSelectionsMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_14 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_EvaluateInvalidSelectionsMarker_28;
V_1 = L_14;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_15;
L_15 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_15;
}
IL_0094:
try
{// begin try (depth: 2)
// ClearInteractorSelection(interactor);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_16 = V_3;
VirtualActionInvoker1< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* >::Invoke(20 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ClearInteractorSelection(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor) */, __this, L_16);
IL2CPP_LEAVE(0x171, FINALLY_009d);
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_009d;
}
FINALLY_009d:
{// begin finally (depth: 2)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(157)
}// end finally (depth: 2)
IL2CPP_CLEANUP(157)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x171, IL_00ab)
}
IL_00ab:
{
// using (s_EvaluateInvalidHoversMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_17 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_EvaluateInvalidHoversMarker_29;
V_1 = L_17;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_18;
L_18 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_18;
}
IL_00b9:
try
{// begin try (depth: 2)
// ClearInteractorHover(interactor, m_ValidTargets);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_19 = V_3;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_20 = __this->___m_ValidTargets_14;
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, List_1_t02510C493B34D49F210C22C40442D863A08509CB* >::Invoke(23 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ClearInteractorHover(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>) */, __this, L_19, L_20);
IL2CPP_LEAVE(0x214, FINALLY_00c8);
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_00c8;
}
FINALLY_00c8:
{// begin finally (depth: 2)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(200)
}// end finally (depth: 2)
IL2CPP_CLEANUP(200)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x214, IL_00d6)
}
IL_00d6:
{
// using (s_EvaluateValidSelectionsMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_21 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_EvaluateValidSelectionsMarker_30;
V_1 = L_21;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_22;
L_22 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_22;
}
IL_00e4:
try
{// begin try (depth: 2)
// InteractorSelectValidTargets(interactor, m_ValidTargets);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_23 = V_3;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_24 = __this->___m_ValidTargets_14;
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, List_1_t02510C493B34D49F210C22C40442D863A08509CB* >::Invoke(36 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::InteractorSelectValidTargets(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>) */, __this, L_23, L_24);
IL2CPP_LEAVE(0x257, FINALLY_00f3);
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_00f3;
}
FINALLY_00f3:
{// begin finally (depth: 2)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(243)
}// end finally (depth: 2)
IL2CPP_CLEANUP(243)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x257, IL_0101)
}
IL_0101:
{
// using (s_EvaluateValidHoversMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_25 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_EvaluateValidHoversMarker_31;
V_1 = L_25;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_26;
L_26 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_26;
}
IL_010f:
try
{// begin try (depth: 2)
// InteractorHoverValidTargets(interactor, m_ValidTargets);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_27 = V_3;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_28 = __this->___m_ValidTargets_14;
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, List_1_t02510C493B34D49F210C22C40442D863A08509CB* >::Invoke(37 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::InteractorHoverValidTargets(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>) */, __this, L_27, L_28);
IL2CPP_LEAVE(0x300, FINALLY_011e);
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_011e;
}
FINALLY_011e:
{// begin finally (depth: 2)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(286)
}// end finally (depth: 2)
IL2CPP_CLEANUP(286)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x300, IL_012c)
}
IL_012c:
{
// foreach (var interactor in m_Interactors.registeredSnapshot)
bool L_29;
L_29 = Enumerator_MoveNext_mDFD000D29E07CFC47B33BAF84EFC4EE39184368A((&V_2), Enumerator_MoveNext_mDFD000D29E07CFC47B33BAF84EFC4EE39184368A_RuntimeMethod_var);
if (L_29)
{
goto IL_0041;
}
}
IL_0138:
{
IL2CPP_LEAVE(0x328, FINALLY_013a);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_013a;
}
FINALLY_013a:
{// begin finally (depth: 1)
Enumerator_Dispose_m376C7B614B2C84EDEA8F43A62438413574C26649((&V_2), Enumerator_Dispose_m376C7B614B2C84EDEA8F43A62438413574C26649_RuntimeMethod_var);
IL2CPP_END_FINALLY(314)
}// end finally (depth: 1)
IL2CPP_CLEANUP(314)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x328, IL_0148)
}
IL_0148:
{
// using (s_ProcessInteractablesMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_30 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_ProcessInteractablesMarker_25;
V_1 = L_30;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_31;
L_31 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_31;
}
IL_0156:
try
{// begin try (depth: 1)
// ProcessInteractables(XRInteractionUpdateOrder.UpdatePhase.Dynamic);
VirtualActionInvoker1< int32_t >::Invoke(11 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ProcessInteractables(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase) */, __this, 1);
IL2CPP_LEAVE(0x365, FINALLY_015f);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_015f;
}
FINALLY_015f:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(351)
}// end finally (depth: 1)
IL2CPP_CLEANUP(351)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x365, IL_016d)
}
IL_016d:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::LateUpdate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_LateUpdate_m5E2F8CF6300555B49625C955FA50C05528E28012 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
memset((&V_0), 0, sizeof(V_0));
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
{
// FlushRegistration();
XRInteractionManager_FlushRegistration_mD3A98438B16A1A1CF88A66E6935578619C60251A(__this, NULL);
// using (s_ProcessInteractorsMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_ProcessInteractorsMarker_24;
V_1 = L_0;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
L_1 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_1;
}
IL_0014:
try
{// begin try (depth: 1)
// ProcessInteractors(XRInteractionUpdateOrder.UpdatePhase.Late);
VirtualActionInvoker1< int32_t >::Invoke(10 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ProcessInteractors(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase) */, __this, 2);
IL2CPP_LEAVE(0x43, FINALLY_001d);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_001d;
}
FINALLY_001d:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(29)
}// end finally (depth: 1)
IL2CPP_CLEANUP(29)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x43, IL_002b)
}
IL_002b:
{
// using (s_ProcessInteractablesMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_2 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_ProcessInteractablesMarker_25;
V_1 = L_2;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_3;
L_3 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_3;
}
IL_0039:
try
{// begin try (depth: 1)
// ProcessInteractables(XRInteractionUpdateOrder.UpdatePhase.Late);
VirtualActionInvoker1< int32_t >::Invoke(11 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ProcessInteractables(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase) */, __this, 2);
IL2CPP_LEAVE(0x80, FINALLY_0042);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_0042;
}
FINALLY_0042:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(66)
}// end finally (depth: 1)
IL2CPP_CLEANUP(66)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x80, IL_0050)
}
IL_0050:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::FixedUpdate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_FixedUpdate_m194833B9D47F1CF8AD543BDA15F619BFC9E80522 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
memset((&V_0), 0, sizeof(V_0));
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
{
// FlushRegistration();
XRInteractionManager_FlushRegistration_mD3A98438B16A1A1CF88A66E6935578619C60251A(__this, NULL);
// using (s_ProcessInteractorsMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_ProcessInteractorsMarker_24;
V_1 = L_0;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
L_1 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_1;
}
IL_0014:
try
{// begin try (depth: 1)
// ProcessInteractors(XRInteractionUpdateOrder.UpdatePhase.Fixed);
VirtualActionInvoker1< int32_t >::Invoke(10 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ProcessInteractors(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase) */, __this, 0);
IL2CPP_LEAVE(0x43, FINALLY_001d);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_001d;
}
FINALLY_001d:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(29)
}// end finally (depth: 1)
IL2CPP_CLEANUP(29)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x43, IL_002b)
}
IL_002b:
{
// using (s_ProcessInteractablesMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_2 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_ProcessInteractablesMarker_25;
V_1 = L_2;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_3;
L_3 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_3;
}
IL_0039:
try
{// begin try (depth: 1)
// ProcessInteractables(XRInteractionUpdateOrder.UpdatePhase.Fixed);
VirtualActionInvoker1< int32_t >::Invoke(11 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ProcessInteractables(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase) */, __this, 0);
IL2CPP_LEAVE(0x80, FINALLY_0042);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_0042;
}
FINALLY_0042:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(66)
}// end finally (depth: 1)
IL2CPP_CLEANUP(66)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x80, IL_0050)
}
IL_0050:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::OnBeforeRender()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_OnBeforeRender_m58B0EE0C78D17A8A707D7CCE3FE52B17799551CD (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
memset((&V_0), 0, sizeof(V_0));
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
{
// FlushRegistration();
XRInteractionManager_FlushRegistration_mD3A98438B16A1A1CF88A66E6935578619C60251A(__this, NULL);
// using (s_ProcessInteractorsMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_ProcessInteractorsMarker_24;
V_1 = L_0;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
L_1 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_1;
}
IL_0014:
try
{// begin try (depth: 1)
// ProcessInteractors(XRInteractionUpdateOrder.UpdatePhase.OnBeforeRender);
VirtualActionInvoker1< int32_t >::Invoke(10 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ProcessInteractors(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase) */, __this, 3);
IL2CPP_LEAVE(0x43, FINALLY_001d);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_001d;
}
FINALLY_001d:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(29)
}// end finally (depth: 1)
IL2CPP_CLEANUP(29)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x43, IL_002b)
}
IL_002b:
{
// using (s_ProcessInteractablesMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_2 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_ProcessInteractablesMarker_25;
V_1 = L_2;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_3;
L_3 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_3;
}
IL_0039:
try
{// begin try (depth: 1)
// ProcessInteractables(XRInteractionUpdateOrder.UpdatePhase.OnBeforeRender);
VirtualActionInvoker1< int32_t >::Invoke(11 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ProcessInteractables(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase) */, __this, 3);
IL2CPP_LEAVE(0x80, FINALLY_0042);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_0042;
}
FINALLY_0042:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(66)
}// end finally (depth: 1)
IL2CPP_CLEANUP(66)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x80, IL_0050)
}
IL_0050:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ProcessInteractors(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_ProcessInteractors_mC790B832EAC50F9C9FFDAB2559C8BD417D46E489 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, int32_t ___updatePhase0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m376C7B614B2C84EDEA8F43A62438413574C26649_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mDFD000D29E07CFC47B33BAF84EFC4EE39184368A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mC1A1FC2C5810F5F0D86FCA778FC392FE71DC8AA7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mFCC042FED9DAA11ED85796F500191258E8EEE306_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_IsStillRegistered_m1E7ECF06FC7C79B6C8A8AD135D4B0BBAA74539D9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_get_registeredSnapshot_m4D9B2ADE24FB0068235042702F5E33CAEED329A1_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1 V_0;
memset((&V_0), 0, sizeof(V_0));
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* V_1 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// foreach (var interactor in m_Interactors.registeredSnapshot)
RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* L_0 = __this->___m_Interactors_10;
NullCheck(L_0);
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* L_1;
L_1 = RegistrationList_1_get_registeredSnapshot_m4D9B2ADE24FB0068235042702F5E33CAEED329A1_inline(L_0, RegistrationList_1_get_registeredSnapshot_m4D9B2ADE24FB0068235042702F5E33CAEED329A1_RuntimeMethod_var);
NullCheck(L_1);
Enumerator_t6B6A5C4A21379CAC374E22F79B0634C75E2AACB1 L_2;
L_2 = List_1_GetEnumerator_mFCC042FED9DAA11ED85796F500191258E8EEE306(L_1, List_1_GetEnumerator_mFCC042FED9DAA11ED85796F500191258E8EEE306_RuntimeMethod_var);
V_0 = L_2;
}
IL_0011:
try
{// begin try (depth: 1)
{
goto IL_0030;
}
IL_0013:
{
// foreach (var interactor in m_Interactors.registeredSnapshot)
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_3;
L_3 = Enumerator_get_Current_mC1A1FC2C5810F5F0D86FCA778FC392FE71DC8AA7_inline((&V_0), Enumerator_get_Current_mC1A1FC2C5810F5F0D86FCA778FC392FE71DC8AA7_RuntimeMethod_var);
V_1 = L_3;
// if (!m_Interactors.IsStillRegistered(interactor))
RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* L_4 = __this->___m_Interactors_10;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_5 = V_1;
NullCheck(L_4);
bool L_6;
L_6 = RegistrationList_1_IsStillRegistered_m1E7ECF06FC7C79B6C8A8AD135D4B0BBAA74539D9(L_4, L_5, RegistrationList_1_IsStillRegistered_m1E7ECF06FC7C79B6C8A8AD135D4B0BBAA74539D9_RuntimeMethod_var);
if (!L_6)
{
goto IL_0030;
}
}
IL_0029:
{
// interactor.ProcessInteractor(updatePhase);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_7 = V_1;
int32_t L_8 = ___updatePhase0;
NullCheck(L_7);
VirtualActionInvoker1< int32_t >::Invoke(27 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::ProcessInteractor(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase) */, L_7, L_8);
}
IL_0030:
{
// foreach (var interactor in m_Interactors.registeredSnapshot)
bool L_9;
L_9 = Enumerator_MoveNext_mDFD000D29E07CFC47B33BAF84EFC4EE39184368A((&V_0), Enumerator_MoveNext_mDFD000D29E07CFC47B33BAF84EFC4EE39184368A_RuntimeMethod_var);
if (L_9)
{
goto IL_0013;
}
}
IL_0039:
{
IL2CPP_LEAVE(0x73, FINALLY_003b);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_003b;
}
FINALLY_003b:
{// begin finally (depth: 1)
Enumerator_Dispose_m376C7B614B2C84EDEA8F43A62438413574C26649((&V_0), Enumerator_Dispose_m376C7B614B2C84EDEA8F43A62438413574C26649_RuntimeMethod_var);
IL2CPP_END_FINALLY(59)
}// end finally (depth: 1)
IL2CPP_CLEANUP(59)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x73, IL_0049)
}
IL_0049:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ProcessInteractables(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_ProcessInteractables_mC4E0C4ACA409D4912EFBE9FFFF146AE817AC7961 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, int32_t ___updatePhase0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_IsStillRegistered_mE833446C9980E1D3ED1CF4DF9C99493D64D19D76_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_get_registeredSnapshot_m9473E5BC5CD3C22F9C198C6984F11C6D20790FF0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F V_0;
memset((&V_0), 0, sizeof(V_0));
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_1 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// foreach (var interactable in m_Interactables.registeredSnapshot)
RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* L_0 = __this->___m_Interactables_11;
NullCheck(L_0);
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_1;
L_1 = RegistrationList_1_get_registeredSnapshot_m9473E5BC5CD3C22F9C198C6984F11C6D20790FF0_inline(L_0, RegistrationList_1_get_registeredSnapshot_m9473E5BC5CD3C22F9C198C6984F11C6D20790FF0_RuntimeMethod_var);
NullCheck(L_1);
Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F L_2;
L_2 = List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A(L_1, List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A_RuntimeMethod_var);
V_0 = L_2;
}
IL_0011:
try
{// begin try (depth: 1)
{
goto IL_0030;
}
IL_0013:
{
// foreach (var interactable in m_Interactables.registeredSnapshot)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_3;
L_3 = Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_inline((&V_0), Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_RuntimeMethod_var);
V_1 = L_3;
// if (!m_Interactables.IsStillRegistered(interactable))
RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* L_4 = __this->___m_Interactables_11;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_5 = V_1;
NullCheck(L_4);
bool L_6;
L_6 = RegistrationList_1_IsStillRegistered_mE833446C9980E1D3ED1CF4DF9C99493D64D19D76(L_4, L_5, RegistrationList_1_IsStillRegistered_mE833446C9980E1D3ED1CF4DF9C99493D64D19D76_RuntimeMethod_var);
if (!L_6)
{
goto IL_0030;
}
}
IL_0029:
{
// interactable.ProcessInteractable(updatePhase);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_7 = V_1;
int32_t L_8 = ___updatePhase0;
NullCheck(L_7);
VirtualActionInvoker1< int32_t >::Invoke(14 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::ProcessInteractable(UnityEngine.XR.Interaction.Toolkit.XRInteractionUpdateOrder/UpdatePhase) */, L_7, L_8);
}
IL_0030:
{
// foreach (var interactable in m_Interactables.registeredSnapshot)
bool L_9;
L_9 = Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A((&V_0), Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A_RuntimeMethod_var);
if (L_9)
{
goto IL_0013;
}
}
IL_0039:
{
IL2CPP_LEAVE(0x73, FINALLY_003b);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_003b;
}
FINALLY_003b:
{// begin finally (depth: 1)
Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032((&V_0), Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032_RuntimeMethod_var);
IL2CPP_END_FINALLY(59)
}// end finally (depth: 1)
IL2CPP_CLEANUP(59)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x73, IL_0049)
}
IL_0049:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::RegisterInteractor(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_RegisterInteractor_m291902066C1A64C6CD0D0557B831990414E0CBDA (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_Register_m253E4BFE742E1612EEE8EDD487EA2BBFF08F08B9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Interactors.Register(interactor))
RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* L_0 = __this->___m_Interactors_10;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_1 = ___interactor0;
NullCheck(L_0);
bool L_2;
L_2 = RegistrationList_1_Register_m253E4BFE742E1612EEE8EDD487EA2BBFF08F08B9(L_0, L_1, RegistrationList_1_Register_m253E4BFE742E1612EEE8EDD487EA2BBFF08F08B9_RuntimeMethod_var);
if (!L_2)
{
goto IL_0032;
}
}
{
// m_InteractorRegisteredEventArgs.manager = this;
InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* L_3 = __this->___m_InteractorRegisteredEventArgs_20;
NullCheck(L_3);
BaseRegistrationEventArgs_set_manager_mDCA0E4515B5577A245206663B79F1BD793865AA5_inline(L_3, __this, NULL);
// m_InteractorRegisteredEventArgs.interactor = interactor;
InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* L_4 = __this->___m_InteractorRegisteredEventArgs_20;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_5 = ___interactor0;
NullCheck(L_4);
InteractorRegisteredEventArgs_set_interactor_mC7D4F7F96D374D0689576F9781A8059692A21B17_inline(L_4, L_5, NULL);
// OnRegistered(m_InteractorRegisteredEventArgs);
InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* L_6 = __this->___m_InteractorRegisteredEventArgs_20;
VirtualActionInvoker1< InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* >::Invoke(13 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::OnRegistered(UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs) */, __this, L_6);
}
IL_0032:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::OnRegistered(UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_OnRegistered_m052F72C1CDD636EF1D93079185870F2B24D2DB02 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_mFAD1E936D88D445859A758BFFC78F1C6EFC46BF5_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* G_B2_0 = NULL;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* G_B1_0 = NULL;
{
// args.interactor.OnRegistered(args);
InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* L_0 = ___args0;
NullCheck(L_0);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_1;
L_1 = InteractorRegisteredEventArgs_get_interactor_m5941F52A62289266C834D92590783488A171FAD8_inline(L_0, NULL);
InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* L_2 = ___args0;
NullCheck(L_1);
VirtualActionInvoker1< InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* >::Invoke(17 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::OnRegistered(UnityEngine.XR.Interaction.Toolkit.InteractorRegisteredEventArgs) */, L_1, L_2);
// interactorRegistered?.Invoke(args);
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_3 = __this->___interactorRegistered_4;
Action_1_tBE7729820CBA793D8D5D57207BA5938B012863C5* L_4 = L_3;
G_B1_0 = L_4;
if (L_4)
{
G_B2_0 = L_4;
goto IL_0017;
}
}
{
return;
}
IL_0017:
{
InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* L_5 = ___args0;
NullCheck(G_B2_0);
Action_1_Invoke_mFAD1E936D88D445859A758BFFC78F1C6EFC46BF5(G_B2_0, L_5, Action_1_Invoke_mFAD1E936D88D445859A758BFFC78F1C6EFC46BF5_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::UnregisterInteractor(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_UnregisterInteractor_mCFC04749344C221B072AEA031A03E71187F1C238 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_Unregister_m64C6C400470922647AF50AD797FFF0AE0B128439_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (!IsRegistered(interactor))
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___interactor0;
bool L_1;
L_1 = XRInteractionManager_IsRegistered_mF3B3EB4CB278C9BCF8589AFE0EB3A416EEBB6CF2(__this, L_0, NULL);
if (L_1)
{
goto IL_000a;
}
}
{
// return;
return;
}
IL_000a:
{
// CancelInteractorSelection(interactor);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_2 = ___interactor0;
VirtualActionInvoker1< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* >::Invoke(21 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::CancelInteractorSelection(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor) */, __this, L_2);
// CancelInteractorHover(interactor);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_3 = ___interactor0;
VirtualActionInvoker1< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* >::Invoke(24 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::CancelInteractorHover(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor) */, __this, L_3);
// if (m_Interactors.Unregister(interactor))
RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* L_4 = __this->___m_Interactors_10;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_5 = ___interactor0;
NullCheck(L_4);
bool L_6;
L_6 = RegistrationList_1_Unregister_m64C6C400470922647AF50AD797FFF0AE0B128439(L_4, L_5, RegistrationList_1_Unregister_m64C6C400470922647AF50AD797FFF0AE0B128439_RuntimeMethod_var);
if (!L_6)
{
goto IL_004a;
}
}
{
// m_InteractorUnregisteredEventArgs.manager = this;
InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* L_7 = __this->___m_InteractorUnregisteredEventArgs_21;
NullCheck(L_7);
BaseRegistrationEventArgs_set_manager_mDCA0E4515B5577A245206663B79F1BD793865AA5_inline(L_7, __this, NULL);
// m_InteractorUnregisteredEventArgs.interactor = interactor;
InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* L_8 = __this->___m_InteractorUnregisteredEventArgs_21;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_9 = ___interactor0;
NullCheck(L_8);
InteractorUnregisteredEventArgs_set_interactor_m06E8669E5C820661A28255E6983ECD6FE607B4E9_inline(L_8, L_9, NULL);
// OnUnregistered(m_InteractorUnregisteredEventArgs);
InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* L_10 = __this->___m_InteractorUnregisteredEventArgs_21;
VirtualActionInvoker1< InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* >::Invoke(15 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::OnUnregistered(UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs) */, __this, L_10);
}
IL_004a:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::OnUnregistered(UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_OnUnregistered_m9396BB503AB65E22DDA0B45A8F22095B2F15B79E (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_m34572A2D485C4B87E3AADE940062C73D44F3E62F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* G_B2_0 = NULL;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* G_B1_0 = NULL;
{
// args.interactor.OnUnregistered(args);
InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* L_0 = ___args0;
NullCheck(L_0);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_1;
L_1 = InteractorUnregisteredEventArgs_get_interactor_m850F10AA69039103E6E674733DB4CA93C4369E65_inline(L_0, NULL);
InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* L_2 = ___args0;
NullCheck(L_1);
VirtualActionInvoker1< InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* >::Invoke(18 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::OnUnregistered(UnityEngine.XR.Interaction.Toolkit.InteractorUnregisteredEventArgs) */, L_1, L_2);
// interactorUnregistered?.Invoke(args);
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_3 = __this->___interactorUnregistered_5;
Action_1_t9A06C49FCB3ADF4C984887951A3DC1DA07CFFBF0* L_4 = L_3;
G_B1_0 = L_4;
if (L_4)
{
G_B2_0 = L_4;
goto IL_0017;
}
}
{
return;
}
IL_0017:
{
InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* L_5 = ___args0;
NullCheck(G_B2_0);
Action_1_Invoke_m34572A2D485C4B87E3AADE940062C73D44F3E62F(G_B2_0, L_5, Action_1_Invoke_m34572A2D485C4B87E3AADE940062C73D44F3E62F_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::RegisterInteractable(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_RegisterInteractable_m47116DD86C0C734E3E9646AB2AA85DB74113F37C (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ARBaseGestureInteractable_t7FF715FA0E5BE6C9F48E9869A7B0F4819913832D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m76E02C9B05790A97DCAA8FD976C5D699ACC36A06_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_Register_m7DCABDDB4796B0476939482CD2773B3AA8CE1734_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22A30FA2C4B05E273045B128442E086407BE1736);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral88998030542C6C1718157372A22A6ECE3A3D626E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB47558977649C28EC4A4E03C031755E762B9CCA);
s_Il2CppMethodInitialized = true;
}
Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A V_0;
memset((&V_0), 0, sizeof(V_0));
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* V_1 = NULL;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_2 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// if (m_Interactables.Register(interactable))
RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* L_0 = __this->___m_Interactables_11;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_1 = ___interactable0;
NullCheck(L_0);
bool L_2;
L_2 = RegistrationList_1_Register_m7DCABDDB4796B0476939482CD2773B3AA8CE1734(L_0, L_1, RegistrationList_1_Register_m7DCABDDB4796B0476939482CD2773B3AA8CE1734_RuntimeMethod_var);
if (!L_2)
{
goto IL_00be;
}
}
{
// foreach (var interactableCollider in interactable.colliders)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_3 = ___interactable0;
NullCheck(L_3);
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* L_4;
L_4 = XRBaseInteractable_get_colliders_m7E5D104638AC4B5E5C77D40094AA52B9ABEB32FB_inline(L_3, NULL);
NullCheck(L_4);
Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A L_5;
L_5 = List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420(L_4, List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420_RuntimeMethod_var);
V_0 = L_5;
}
IL_001d:
try
{// begin try (depth: 1)
{
goto IL_0081;
}
IL_001f:
{
// foreach (var interactableCollider in interactable.colliders)
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_6;
L_6 = Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_inline((&V_0), Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_RuntimeMethod_var);
V_1 = L_6;
// if (interactableCollider == null)
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_7 = V_1;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_8;
L_8 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_7, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_8)
{
goto IL_0081;
}
}
IL_0030:
{
// if (!m_ColliderToInteractableMap.TryGetValue(interactableCollider, out var associatedInteractable))
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_9 = __this->___m_ColliderToInteractableMap_9;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_10 = V_1;
NullCheck(L_9);
bool L_11;
L_11 = Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80(L_9, L_10, (&V_2), Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80_RuntimeMethod_var);
if (L_11)
{
goto IL_004f;
}
}
IL_0040:
{
// m_ColliderToInteractableMap.Add(interactableCollider, interactable);
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_12 = __this->___m_ColliderToInteractableMap_9;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_13 = V_1;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_14 = ___interactable0;
NullCheck(L_12);
Dictionary_2_Add_m76E02C9B05790A97DCAA8FD976C5D699ACC36A06(L_12, L_13, L_14, Dictionary_2_Add_m76E02C9B05790A97DCAA8FD976C5D699ACC36A06_RuntimeMethod_var);
goto IL_0081;
}
IL_004f:
{
// else if (!(interactable is ARBaseGestureInteractable && associatedInteractable is ARBaseGestureInteractable))
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_15 = ___interactable0;
if (!((ARBaseGestureInteractable_t7FF715FA0E5BE6C9F48E9869A7B0F4819913832D*)IsInstClass((RuntimeObject*)L_15, ARBaseGestureInteractable_t7FF715FA0E5BE6C9F48E9869A7B0F4819913832D_il2cpp_TypeInfo_var)))
{
goto IL_005f;
}
}
IL_0057:
{
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_16 = V_2;
if (((ARBaseGestureInteractable_t7FF715FA0E5BE6C9F48E9869A7B0F4819913832D*)IsInstClass((RuntimeObject*)L_16, ARBaseGestureInteractable_t7FF715FA0E5BE6C9F48E9869A7B0F4819913832D_il2cpp_TypeInfo_var)))
{
goto IL_0081;
}
}
IL_005f:
{
// Debug.LogWarning("A Collider used by an Interactable object is already registered with another Interactable object." +
// $" The {interactableCollider} will remain associated with {associatedInteractable}, which was registered before {interactable}." +
// $" The value returned by {nameof(XRInteractionManager)}.{nameof(GetInteractableForCollider)} will be the first association.",
// interactable);
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_17 = V_1;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_18 = V_2;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_19 = ___interactable0;
String_t* L_20;
L_20 = String_Format_m76BF8F3A6AD789E38B708848A2688D400AAC250A(_stringLiteral22A30FA2C4B05E273045B128442E086407BE1736, L_17, L_18, L_19, NULL);
String_t* L_21;
L_21 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(_stringLiteral88998030542C6C1718157372A22A6ECE3A3D626E, L_20, _stringLiteralFB47558977649C28EC4A4E03C031755E762B9CCA, NULL);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_22 = ___interactable0;
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_LogWarning_m5C8299150E64600CBF5C92706AD610C21D0C0DC5(L_21, L_22, NULL);
}
IL_0081:
{
// foreach (var interactableCollider in interactable.colliders)
bool L_23;
L_23 = Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1((&V_0), Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1_RuntimeMethod_var);
if (L_23)
{
goto IL_001f;
}
}
IL_008a:
{
IL2CPP_LEAVE(0x154, FINALLY_008c);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_008c;
}
FINALLY_008c:
{// begin finally (depth: 1)
Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D((&V_0), Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D_RuntimeMethod_var);
IL2CPP_END_FINALLY(140)
}// end finally (depth: 1)
IL2CPP_CLEANUP(140)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x154, IL_009a)
}
IL_009a:
{
// m_InteractableRegisteredEventArgs.manager = this;
InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* L_24 = __this->___m_InteractableRegisteredEventArgs_22;
NullCheck(L_24);
BaseRegistrationEventArgs_set_manager_mDCA0E4515B5577A245206663B79F1BD793865AA5_inline(L_24, __this, NULL);
// m_InteractableRegisteredEventArgs.interactable = interactable;
InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* L_25 = __this->___m_InteractableRegisteredEventArgs_22;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_26 = ___interactable0;
NullCheck(L_25);
InteractableRegisteredEventArgs_set_interactable_m8FAF324ECEAFDB5BD64BE2D71A991B9A3FDACBB4_inline(L_25, L_26, NULL);
// OnRegistered(m_InteractableRegisteredEventArgs);
InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* L_27 = __this->___m_InteractableRegisteredEventArgs_22;
VirtualActionInvoker1< InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* >::Invoke(17 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::OnRegistered(UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs) */, __this, L_27);
}
IL_00be:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::OnRegistered(UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_OnRegistered_mAB7EE4460DCF09AF516883DCF9680B185A9CEDE7 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_mC17D7793688D010F3126A615FC594E301D0D7E73_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* G_B2_0 = NULL;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* G_B1_0 = NULL;
{
// args.interactable.OnRegistered(args);
InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* L_0 = ___args0;
NullCheck(L_0);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_1;
L_1 = InteractableRegisteredEventArgs_get_interactable_m8E24757B1B66EF6ED74A2BCC89A63E10364E7C6E_inline(L_0, NULL);
InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* L_2 = ___args0;
NullCheck(L_1);
VirtualActionInvoker1< InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* >::Invoke(15 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnRegistered(UnityEngine.XR.Interaction.Toolkit.InteractableRegisteredEventArgs) */, L_1, L_2);
// interactableRegistered?.Invoke(args);
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_3 = __this->___interactableRegistered_6;
Action_1_tB8CA4FD5AE31D22DB74D262F9D03ACFA1C0B2CA8* L_4 = L_3;
G_B1_0 = L_4;
if (L_4)
{
G_B2_0 = L_4;
goto IL_0017;
}
}
{
return;
}
IL_0017:
{
InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* L_5 = ___args0;
NullCheck(G_B2_0);
Action_1_Invoke_mC17D7793688D010F3126A615FC594E301D0D7E73(G_B2_0, L_5, Action_1_Invoke_mC17D7793688D010F3126A615FC594E301D0D7E73_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::UnregisterInteractable(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_UnregisterInteractable_mA97A2CFE958FB7F05A6F9E57B2EF10315A3480CC (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m05A7F101C863C57A729D38F2C1678CBA3FD3FCF2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_Unregister_mB689C6D9DF13F34D2096F76A4EC04C646D1CB12D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A V_0;
memset((&V_0), 0, sizeof(V_0));
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* V_1 = NULL;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_2 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// if (!IsRegistered(interactable))
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = ___interactable0;
bool L_1;
L_1 = XRInteractionManager_IsRegistered_m65C28B573DBC80DE8DBD06206B7F9AC60E3E4C6F(__this, L_0, NULL);
if (L_1)
{
goto IL_000a;
}
}
{
// return;
return;
}
IL_000a:
{
// CancelInteractableSelection(interactable);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_2 = ___interactable0;
VirtualActionInvoker1< XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(22 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::CancelInteractableSelection(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_2);
// CancelInteractableHover(interactable);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_3 = ___interactable0;
VirtualActionInvoker1< XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(25 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::CancelInteractableHover(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_3);
// if (m_Interactables.Unregister(interactable))
RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* L_4 = __this->___m_Interactables_11;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_5 = ___interactable0;
NullCheck(L_4);
bool L_6;
L_6 = RegistrationList_1_Unregister_mB689C6D9DF13F34D2096F76A4EC04C646D1CB12D(L_4, L_5, RegistrationList_1_Unregister_mB689C6D9DF13F34D2096F76A4EC04C646D1CB12D_RuntimeMethod_var);
if (!L_6)
{
goto IL_00ab;
}
}
{
// foreach (var interactableCollider in interactable.colliders)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_7 = ___interactable0;
NullCheck(L_7);
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* L_8;
L_8 = XRBaseInteractable_get_colliders_m7E5D104638AC4B5E5C77D40094AA52B9ABEB32FB_inline(L_7, NULL);
NullCheck(L_8);
Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A L_9;
L_9 = List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420(L_8, List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420_RuntimeMethod_var);
V_0 = L_9;
}
IL_0035:
try
{// begin try (depth: 1)
{
goto IL_006e;
}
IL_0037:
{
// foreach (var interactableCollider in interactable.colliders)
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_10;
L_10 = Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_inline((&V_0), Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_RuntimeMethod_var);
V_1 = L_10;
// if (interactableCollider == null)
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_11 = V_1;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_12;
L_12 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_11, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_12)
{
goto IL_006e;
}
}
IL_0048:
{
// if (m_ColliderToInteractableMap.TryGetValue(interactableCollider, out var associatedInteractable) && associatedInteractable == interactable)
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_13 = __this->___m_ColliderToInteractableMap_9;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_14 = V_1;
NullCheck(L_13);
bool L_15;
L_15 = Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80(L_13, L_14, (&V_2), Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80_RuntimeMethod_var);
if (!L_15)
{
goto IL_006e;
}
}
IL_0058:
{
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_16 = V_2;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_17 = ___interactable0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_18;
L_18 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_16, L_17, NULL);
if (!L_18)
{
goto IL_006e;
}
}
IL_0061:
{
// m_ColliderToInteractableMap.Remove(interactableCollider);
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_19 = __this->___m_ColliderToInteractableMap_9;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_20 = V_1;
NullCheck(L_19);
bool L_21;
L_21 = Dictionary_2_Remove_m05A7F101C863C57A729D38F2C1678CBA3FD3FCF2(L_19, L_20, Dictionary_2_Remove_m05A7F101C863C57A729D38F2C1678CBA3FD3FCF2_RuntimeMethod_var);
}
IL_006e:
{
// foreach (var interactableCollider in interactable.colliders)
bool L_22;
L_22 = Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1((&V_0), Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1_RuntimeMethod_var);
if (L_22)
{
goto IL_0037;
}
}
IL_0077:
{
IL2CPP_LEAVE(0x135, FINALLY_0079);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_0079;
}
FINALLY_0079:
{// begin finally (depth: 1)
Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D((&V_0), Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D_RuntimeMethod_var);
IL2CPP_END_FINALLY(121)
}// end finally (depth: 1)
IL2CPP_CLEANUP(121)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x135, IL_0087)
}
IL_0087:
{
// m_InteractableUnregisteredEventArgs.manager = this;
InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* L_23 = __this->___m_InteractableUnregisteredEventArgs_23;
NullCheck(L_23);
BaseRegistrationEventArgs_set_manager_mDCA0E4515B5577A245206663B79F1BD793865AA5_inline(L_23, __this, NULL);
// m_InteractableUnregisteredEventArgs.interactable = interactable;
InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* L_24 = __this->___m_InteractableUnregisteredEventArgs_23;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_25 = ___interactable0;
NullCheck(L_24);
InteractableUnregisteredEventArgs_set_interactable_m0433D6227E005137B947C8C68C7131B2D3F7E1BF_inline(L_24, L_25, NULL);
// OnUnregistered(m_InteractableUnregisteredEventArgs);
InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* L_26 = __this->___m_InteractableUnregisteredEventArgs_23;
VirtualActionInvoker1< InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* >::Invoke(19 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::OnUnregistered(UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs) */, __this, L_26);
}
IL_00ab:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::OnUnregistered(UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_OnUnregistered_m4B2BACB59BFB2070B6A8EE045CA4347557D6ED45 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_mF62C32833A5CA3B6D70A0905F43517B44F778668_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* G_B2_0 = NULL;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* G_B1_0 = NULL;
{
// args.interactable.OnUnregistered(args);
InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* L_0 = ___args0;
NullCheck(L_0);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_1;
L_1 = InteractableUnregisteredEventArgs_get_interactable_m6B266EFCEBB22E4EE3F3E1F86E9D3D2E6F9BCA05_inline(L_0, NULL);
InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* L_2 = ___args0;
NullCheck(L_1);
VirtualActionInvoker1< InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* >::Invoke(16 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnUnregistered(UnityEngine.XR.Interaction.Toolkit.InteractableUnregisteredEventArgs) */, L_1, L_2);
// interactableUnregistered?.Invoke(args);
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_3 = __this->___interactableUnregistered_7;
Action_1_tCB862C932EAF49C2968D3AD96CEDF6D2DFED41F0* L_4 = L_3;
G_B1_0 = L_4;
if (L_4)
{
G_B2_0 = L_4;
goto IL_0017;
}
}
{
return;
}
IL_0017:
{
InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* L_5 = ___args0;
NullCheck(G_B2_0);
Action_1_Invoke_mF62C32833A5CA3B6D70A0905F43517B44F778668(G_B2_0, L_5, Action_1_Invoke_mF62C32833A5CA3B6D70A0905F43517B44F778668_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::GetRegisteredInteractors(System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_GetRegisteredInteractors_m0380C9C368C156CA43AF42C0591E1DE07CB5D675 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* ___results0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_GetRegisteredItems_m7CD5E08831E2F32B03029FACF6586C2CD594928A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (results == null)
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* L_0 = ___results0;
if (L_0)
{
goto IL_000e;
}
}
{
// throw new ArgumentNullException(nameof(results));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9AB16B3999460DDC981865934D979087351A14F2)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRInteractionManager_GetRegisteredInteractors_m0380C9C368C156CA43AF42C0591E1DE07CB5D675_RuntimeMethod_var)));
}
IL_000e:
{
// m_Interactors.GetRegisteredItems(results);
RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* L_2 = __this->___m_Interactors_10;
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* L_3 = ___results0;
NullCheck(L_2);
RegistrationList_1_GetRegisteredItems_m7CD5E08831E2F32B03029FACF6586C2CD594928A(L_2, L_3, RegistrationList_1_GetRegisteredItems_m7CD5E08831E2F32B03029FACF6586C2CD594928A_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::GetRegisteredInteractables(System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_GetRegisteredInteractables_mDFF6CDD0AF4CFE2C1AA54011D5F42C7CEE1FE532 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___results0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_GetRegisteredItems_m1B926AF8964B1C5D223218C3D08486AFF6792CF7_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (results == null)
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_0 = ___results0;
if (L_0)
{
goto IL_000e;
}
}
{
// throw new ArgumentNullException(nameof(results));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9AB16B3999460DDC981865934D979087351A14F2)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRInteractionManager_GetRegisteredInteractables_mDFF6CDD0AF4CFE2C1AA54011D5F42C7CEE1FE532_RuntimeMethod_var)));
}
IL_000e:
{
// m_Interactables.GetRegisteredItems(results);
RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* L_2 = __this->___m_Interactables_11;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_3 = ___results0;
NullCheck(L_2);
RegistrationList_1_GetRegisteredItems_m1B926AF8964B1C5D223218C3D08486AFF6792CF7(L_2, L_3, RegistrationList_1_GetRegisteredItems_m1B926AF8964B1C5D223218C3D08486AFF6792CF7_RuntimeMethod_var);
// }
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::IsRegistered(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRInteractionManager_IsRegistered_mF3B3EB4CB278C9BCF8589AFE0EB3A416EEBB6CF2 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_IsRegistered_m9D9D660882469D157EEB9DE7915A910E9BD27288_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return m_Interactors.IsRegistered(interactor);
RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* L_0 = __this->___m_Interactors_10;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_1 = ___interactor0;
NullCheck(L_0);
bool L_2;
L_2 = RegistrationList_1_IsRegistered_m9D9D660882469D157EEB9DE7915A910E9BD27288(L_0, L_1, RegistrationList_1_IsRegistered_m9D9D660882469D157EEB9DE7915A910E9BD27288_RuntimeMethod_var);
return L_2;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::IsRegistered(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRInteractionManager_IsRegistered_m65C28B573DBC80DE8DBD06206B7F9AC60E3E4C6F (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_IsRegistered_mF6023184299C85A52C86AE91C564809BB5B49E14_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return m_Interactables.IsRegistered(interactable);
RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* L_0 = __this->___m_Interactables_11;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_1 = ___interactable0;
NullCheck(L_0);
bool L_2;
L_2 = RegistrationList_1_IsRegistered_mF6023184299C85A52C86AE91C564809BB5B49E14(L_0, L_1, RegistrationList_1_IsRegistered_mF6023184299C85A52C86AE91C564809BB5B49E14_RuntimeMethod_var);
return L_2;
}
}
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::TryGetInteractableForCollider(UnityEngine.Collider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* XRInteractionManager_TryGetInteractableForCollider_mBAA4EBFE6CEB2D28B1EDE2C333CFED8A3ED4709D (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___interactableCollider0, const RuntimeMethod* method)
{
{
// return GetInteractableForCollider(interactableCollider);
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_0 = ___interactableCollider0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_1;
L_1 = XRInteractionManager_GetInteractableForCollider_m546BE05EAB715F319718D1A173325A8EE87EAD25(__this, L_0, NULL);
return L_1;
}
}
// UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::GetInteractableForCollider(UnityEngine.Collider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* XRInteractionManager_GetInteractableForCollider_m546BE05EAB715F319718D1A173325A8EE87EAD25 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___interactableCollider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_0 = NULL;
{
// if (interactableCollider != null && m_ColliderToInteractableMap.TryGetValue(interactableCollider, out var interactable))
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_0 = ___interactableCollider0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_001b;
}
}
{
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_2 = __this->___m_ColliderToInteractableMap_9;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_3 = ___interactableCollider0;
NullCheck(L_2);
bool L_4;
L_4 = Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80(L_2, L_3, (&V_0), Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80_RuntimeMethod_var);
if (!L_4)
{
goto IL_001b;
}
}
{
// return interactable;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_5 = V_0;
return L_5;
}
IL_001b:
{
// return null;
return (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*)NULL;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::GetColliderToInteractableMap(System.Collections.Generic.Dictionary`2<UnityEngine.Collider,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_GetColliderToInteractableMap_mB5A3282DA7AB1E69B50E94C768A6EF7914C15478 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82** ___map0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_m40262E1F68FF034440AAFD97105127989FC01B4A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (map != null)
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82** L_0 = ___map0;
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_1 = *((Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82**)L_0);
if (!L_1)
{
goto IL_0013;
}
}
{
// map.Clear();
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82** L_2 = ___map0;
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_3 = *((Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82**)L_2);
NullCheck(L_3);
Dictionary_2_Clear_m40262E1F68FF034440AAFD97105127989FC01B4A(L_3, Dictionary_2_Clear_m40262E1F68FF034440AAFD97105127989FC01B4A_RuntimeMethod_var);
// map = m_ColliderToInteractableMap;
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82** L_4 = ___map0;
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_5 = __this->___m_ColliderToInteractableMap_9;
*((RuntimeObject**)L_4) = (RuntimeObject*)L_5;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_5);
}
IL_0013:
{
// }
return;
}
}
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable> UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::GetValidTargets(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t02510C493B34D49F210C22C40442D863A08509CB* XRInteractionManager_GetValidTargets_m682F8B8F1BB671DADE1CC90A262ECEBDBA3DD49C (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___validTargets1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
memset((&V_0), 0, sizeof(V_0));
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// interactor.GetValidTargets(validTargets);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___interactor0;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_1 = ___validTargets1;
NullCheck(L_0);
VirtualActionInvoker1< List_1_t02510C493B34D49F210C22C40442D863A08509CB* >::Invoke(10 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::GetValidTargets(System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>) */, L_0, L_1);
// using (s_FilterRegisteredValidTargetsMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_2 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_FilterRegisteredValidTargetsMarker_27;
V_1 = L_2;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_3;
L_3 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_3;
}
IL_0015:
try
{// begin try (depth: 1)
// RemoveAllUnregistered(this, validTargets);
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_4 = ___validTargets1;
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
int32_t L_5;
L_5 = XRInteractionManager_RemoveAllUnregistered_mF0644617A7589EC13D31B2E99930C402FD4E117E(__this, L_4, NULL);
IL2CPP_LEAVE(0x45, FINALLY_001f);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_001f;
}
FINALLY_001f:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(31)
}// end finally (depth: 1)
IL2CPP_CLEANUP(31)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x45, IL_002d)
}
IL_002d:
{
// return validTargets;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_6 = ___validTargets1;
return L_6;
}
}
// System.Int32 UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::RemoveAllUnregistered(UnityEngine.XR.Interaction.Toolkit.XRInteractionManager,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRInteractionManager_RemoveAllUnregistered_mF0644617A7589EC13D31B2E99930C402FD4E117E (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___manager0, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___interactables1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m98D513CB3B528DDFCA9B1AA0C9A6350C06299C1F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_IsRegistered_mF6023184299C85A52C86AE91C564809BB5B49E14_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
// var numRemoved = 0;
V_0 = 0;
// for (var i = interactables.Count - 1; i >= 0; --i)
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_0 = ___interactables1;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_inline(L_0, List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1));
goto IL_0030;
}
IL_000d:
{
// if (!manager.m_Interactables.IsRegistered(interactables[i]))
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_2 = ___manager0;
NullCheck(L_2);
RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* L_3 = L_2->___m_Interactables_11;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_4 = ___interactables1;
int32_t L_5 = V_1;
NullCheck(L_4);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_6;
L_6 = List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F(L_4, L_5, List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F_RuntimeMethod_var);
NullCheck(L_3);
bool L_7;
L_7 = RegistrationList_1_IsRegistered_mF6023184299C85A52C86AE91C564809BB5B49E14(L_3, L_6, RegistrationList_1_IsRegistered_mF6023184299C85A52C86AE91C564809BB5B49E14_RuntimeMethod_var);
if (L_7)
{
goto IL_002c;
}
}
{
// interactables.RemoveAt(i);
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_8 = ___interactables1;
int32_t L_9 = V_1;
NullCheck(L_8);
List_1_RemoveAt_m98D513CB3B528DDFCA9B1AA0C9A6350C06299C1F(L_8, L_9, List_1_RemoveAt_m98D513CB3B528DDFCA9B1AA0C9A6350C06299C1F_RuntimeMethod_var);
// ++numRemoved;
int32_t L_10 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002c:
{
// for (var i = interactables.Count - 1; i >= 0; --i)
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1));
}
IL_0030:
{
// for (var i = interactables.Count - 1; i >= 0; --i)
int32_t L_12 = V_1;
if ((((int32_t)L_12) >= ((int32_t)0)))
{
goto IL_000d;
}
}
{
// return numRemoved;
int32_t L_13 = V_0;
return L_13;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ForceSelect(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_ForceSelect_m80E8A7B047D0665E564212CF8D0362A5E7DB26A7 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable1, const RuntimeMethod* method)
{
{
// SelectEnter(interactor, interactable);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_1 = ___interactable1;
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(26 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectEnter(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_0, L_1);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ClearInteractorSelection(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_ClearInteractorSelection_mB18301D8B367C0EC84A5F10C2E41AFB0BF77A2F9 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (interactor.selectTarget != null &&
// (!interactor.isSelectActive || !interactor.CanSelect(interactor.selectTarget) || !interactor.selectTarget.IsSelectableBy(interactor)))
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___interactor0;
NullCheck(L_0);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_1;
L_1 = XRBaseInteractor_get_selectTarget_m2888C3BFA4B168C6DDD37CAC1A999BEF406596E4_inline(L_0, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_2;
L_2 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_2)
{
goto IL_003f;
}
}
{
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_3 = ___interactor0;
NullCheck(L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::get_isSelectActive() */, L_3);
if (!L_4)
{
goto IL_0032;
}
}
{
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_5 = ___interactor0;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_6 = ___interactor0;
NullCheck(L_6);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_7;
L_7 = XRBaseInteractor_get_selectTarget_m2888C3BFA4B168C6DDD37CAC1A999BEF406596E4_inline(L_6, NULL);
NullCheck(L_5);
bool L_8;
L_8 = VirtualFuncInvoker1< bool, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(14 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::CanSelect(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, L_5, L_7);
if (!L_8)
{
goto IL_0032;
}
}
{
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_9 = ___interactor0;
NullCheck(L_9);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_10;
L_10 = XRBaseInteractor_get_selectTarget_m2888C3BFA4B168C6DDD37CAC1A999BEF406596E4_inline(L_9, NULL);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_11 = ___interactor0;
NullCheck(L_10);
bool L_12;
L_12 = VirtualFuncInvoker1< bool, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* >::Invoke(11 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::IsSelectableBy(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor) */, L_10, L_11);
if (L_12)
{
goto IL_003f;
}
}
IL_0032:
{
// SelectExit(interactor, interactor.selectTarget);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_13 = ___interactor0;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_14 = ___interactor0;
NullCheck(L_14);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_15;
L_15 = XRBaseInteractor_get_selectTarget_m2888C3BFA4B168C6DDD37CAC1A999BEF406596E4_inline(L_14, NULL);
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(27 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectExit(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_13, L_15);
}
IL_003f:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::CancelInteractorSelection(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_CancelInteractorSelection_m43232207EDF5EF8FF4063F3B7865639C64014A87 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (interactor.selectTarget != null)
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___interactor0;
NullCheck(L_0);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_1;
L_1 = XRBaseInteractor_get_selectTarget_m2888C3BFA4B168C6DDD37CAC1A999BEF406596E4_inline(L_0, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_2;
L_2 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_2)
{
goto IL_001b;
}
}
{
// SelectCancel(interactor, interactor.selectTarget);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_3 = ___interactor0;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_4 = ___interactor0;
NullCheck(L_4);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_5;
L_5 = XRBaseInteractor_get_selectTarget_m2888C3BFA4B168C6DDD37CAC1A999BEF406596E4_inline(L_4, NULL);
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(28 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectCancel(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_3, L_5);
}
IL_001b:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::CancelInteractableSelection(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_CancelInteractableSelection_mC6D2D4BB81E6540886DA49A7A67EA14E2EC680C4 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (interactable.selectingInteractor != null)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = ___interactable0;
NullCheck(L_0);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_1;
L_1 = XRBaseInteractable_get_selectingInteractor_mDA5536E167016B048166B2DC5061AE3F752B115A_inline(L_0, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_2;
L_2 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_2)
{
goto IL_001b;
}
}
{
// SelectCancel(interactable.selectingInteractor, interactable);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_3 = ___interactable0;
NullCheck(L_3);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_4;
L_4 = XRBaseInteractable_get_selectingInteractor_mDA5536E167016B048166B2DC5061AE3F752B115A_inline(L_3, NULL);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_5 = ___interactable0;
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(28 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectCancel(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_4, L_5);
}
IL_001b:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::ClearInteractorHover(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_ClearInteractorHover_m9D87C101D59A96346A0A735EB244433ABA3DB556 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___validTargets1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m60D5575FEC3B4BA030ECA79F40952F7A6FAF425B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m39CBC6F250AA52AB65D1D155D740C35A6072245F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F V_0;
memset((&V_0), 0, sizeof(V_0));
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_1 = NULL;
int32_t V_2 = 0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_3 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// interactor.GetHoverTargets(m_HoverTargets);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___interactor0;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_1 = __this->___m_HoverTargets_12;
NullCheck(L_0);
XRBaseInteractor_GetHoverTargets_m97B6CFE8D71144CF21C4D470482DAB9101D4AA35(L_0, L_1, NULL);
// if (m_HoverTargets.Count == 0)
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_2 = __this->___m_HoverTargets_12;
NullCheck(L_2);
int32_t L_3;
L_3 = List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_inline(L_2, List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
if (L_3)
{
goto IL_001a;
}
}
{
// return;
return;
}
IL_001a:
{
// m_UnorderedValidTargets.Clear();
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_4 = __this->___m_UnorderedValidTargets_15;
NullCheck(L_4);
HashSet_1_Clear_m60D5575FEC3B4BA030ECA79F40952F7A6FAF425B(L_4, HashSet_1_Clear_m60D5575FEC3B4BA030ECA79F40952F7A6FAF425B_RuntimeMethod_var);
// if (validTargets.Count > 0)
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_5 = ___validTargets1;
NullCheck(L_5);
int32_t L_6;
L_6 = List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_inline(L_5, List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
if ((((int32_t)L_6) <= ((int32_t)0)))
{
goto IL_0065;
}
}
{
// foreach (var target in validTargets)
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_7 = ___validTargets1;
NullCheck(L_7);
Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F L_8;
L_8 = List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A(L_7, List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A_RuntimeMethod_var);
V_0 = L_8;
}
IL_0035:
try
{// begin try (depth: 1)
{
goto IL_004c;
}
IL_0037:
{
// foreach (var target in validTargets)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_9;
L_9 = Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_inline((&V_0), Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_RuntimeMethod_var);
V_1 = L_9;
// m_UnorderedValidTargets.Add(target);
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_10 = __this->___m_UnorderedValidTargets_15;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_11 = V_1;
NullCheck(L_10);
bool L_12;
L_12 = HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485(L_10, L_11, HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var);
}
IL_004c:
{
// foreach (var target in validTargets)
bool L_13;
L_13 = Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A((&V_0), Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A_RuntimeMethod_var);
if (L_13)
{
goto IL_0037;
}
}
IL_0055:
{
IL2CPP_LEAVE(0x101, FINALLY_0057);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_0057;
}
FINALLY_0057:
{// begin finally (depth: 1)
Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032((&V_0), Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032_RuntimeMethod_var);
IL2CPP_END_FINALLY(87)
}// end finally (depth: 1)
IL2CPP_CLEANUP(87)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x101, IL_0065)
}
IL_0065:
{
// for (var i = m_HoverTargets.Count - 1; i >= 0; --i)
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_14 = __this->___m_HoverTargets_12;
NullCheck(L_14);
int32_t L_15;
L_15 = List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_inline(L_14, List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1));
goto IL_00b6;
}
IL_0075:
{
// var target = m_HoverTargets[i];
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_16 = __this->___m_HoverTargets_12;
int32_t L_17 = V_2;
NullCheck(L_16);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_18;
L_18 = List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F(L_16, L_17, List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F_RuntimeMethod_var);
V_3 = L_18;
// if (!interactor.isHoverActive || !interactor.CanHover(target) || !target.IsHoverableBy(interactor) || !m_UnorderedValidTargets.Contains(target))
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_19 = ___interactor0;
NullCheck(L_19);
bool L_20;
L_20 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::get_isHoverActive() */, L_19);
if (!L_20)
{
goto IL_00aa;
}
}
{
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_21 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_22 = V_3;
NullCheck(L_21);
bool L_23;
L_23 = VirtualFuncInvoker1< bool, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(13 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::CanHover(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, L_21, L_22);
if (!L_23)
{
goto IL_00aa;
}
}
{
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_24 = V_3;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_25 = ___interactor0;
NullCheck(L_24);
bool L_26;
L_26 = VirtualFuncInvoker1< bool, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* >::Invoke(10 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::IsHoverableBy(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor) */, L_24, L_25);
if (!L_26)
{
goto IL_00aa;
}
}
{
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_27 = __this->___m_UnorderedValidTargets_15;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_28 = V_3;
NullCheck(L_27);
bool L_29;
L_29 = HashSet_1_Contains_m39CBC6F250AA52AB65D1D155D740C35A6072245F(L_27, L_28, HashSet_1_Contains_m39CBC6F250AA52AB65D1D155D740C35A6072245F_RuntimeMethod_var);
if (L_29)
{
goto IL_00b2;
}
}
IL_00aa:
{
// HoverExit(interactor, target);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_30 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_31 = V_3;
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(30 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverExit(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_30, L_31);
}
IL_00b2:
{
// for (var i = m_HoverTargets.Count - 1; i >= 0; --i)
int32_t L_32 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)1));
}
IL_00b6:
{
// for (var i = m_HoverTargets.Count - 1; i >= 0; --i)
int32_t L_33 = V_2;
if ((((int32_t)L_33) >= ((int32_t)0)))
{
goto IL_0075;
}
}
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::CancelInteractorHover(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_CancelInteractorHover_m5B85342A7F9360C9482A771DD5D73FA620AEF7F0 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_1 = NULL;
{
// interactor.GetHoverTargets(m_HoverTargets);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___interactor0;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_1 = __this->___m_HoverTargets_12;
NullCheck(L_0);
XRBaseInteractor_GetHoverTargets_m97B6CFE8D71144CF21C4D470482DAB9101D4AA35(L_0, L_1, NULL);
// for (var i = m_HoverTargets.Count - 1; i >= 0; --i)
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_2 = __this->___m_HoverTargets_12;
NullCheck(L_2);
int32_t L_3;
L_3 = List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_inline(L_2, List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1));
goto IL_0035;
}
IL_001c:
{
// var target = m_HoverTargets[i];
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_4 = __this->___m_HoverTargets_12;
int32_t L_5 = V_0;
NullCheck(L_4);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_6;
L_6 = List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F(L_4, L_5, List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F_RuntimeMethod_var);
V_1 = L_6;
// HoverCancel(interactor, target);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_7 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_8 = V_1;
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(31 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverCancel(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_7, L_8);
// for (var i = m_HoverTargets.Count - 1; i >= 0; --i)
int32_t L_9 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0035:
{
// for (var i = m_HoverTargets.Count - 1; i >= 0; --i)
int32_t L_10 = V_0;
if ((((int32_t)L_10) >= ((int32_t)0)))
{
goto IL_001c;
}
}
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::CancelInteractableHover(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_CancelInteractableHover_m0B6B797908BA79D6626DE41951C13EB85F09143F (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m135A9F055811F521A15CDBBEBBC9B062F364EE49_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8803B45B5906AB61810300959ED9133A62A29586_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// for (var i = interactable.hoveringInteractors.Count - 1; i >= 0; --i)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = ___interactable0;
NullCheck(L_0);
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* L_1;
L_1 = XRBaseInteractable_get_hoveringInteractors_mE0B8E9F9A3CFC8FE238AF4148B9B467DEA95F7C7_inline(L_0, NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = List_1_get_Count_m135A9F055811F521A15CDBBEBBC9B062F364EE49_inline(L_1, List_1_get_Count_m135A9F055811F521A15CDBBEBBC9B062F364EE49_RuntimeMethod_var);
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1));
goto IL_0027;
}
IL_0010:
{
// HoverCancel(interactable.hoveringInteractors[i], interactable);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_3 = ___interactable0;
NullCheck(L_3);
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* L_4;
L_4 = XRBaseInteractable_get_hoveringInteractors_mE0B8E9F9A3CFC8FE238AF4148B9B467DEA95F7C7_inline(L_3, NULL);
int32_t L_5 = V_0;
NullCheck(L_4);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_6;
L_6 = List_1_get_Item_m8803B45B5906AB61810300959ED9133A62A29586(L_4, L_5, List_1_get_Item_m8803B45B5906AB61810300959ED9133A62A29586_RuntimeMethod_var);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_7 = ___interactable0;
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(31 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverCancel(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_6, L_7);
// for (var i = interactable.hoveringInteractors.Count - 1; i >= 0; --i)
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
}
IL_0027:
{
// for (var i = interactable.hoveringInteractors.Count - 1; i >= 0; --i)
int32_t L_9 = V_0;
if ((((int32_t)L_9) >= ((int32_t)0)))
{
goto IL_0010;
}
}
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectEnter(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_SelectEnter_mD730B42373CC3C4A71B53BB79EDEF0B9598D96C2 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (interactable.isSelected && interactable.selectingInteractor != interactor)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = ___interactable1;
NullCheck(L_0);
bool L_1;
L_1 = XRBaseInteractable_get_isSelected_m48487E7F2E3E1EDB6D9B6985FF146020F628B3CE_inline(L_0, NULL);
if (!L_1)
{
goto IL_002c;
}
}
{
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_2 = ___interactable1;
NullCheck(L_2);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_3;
L_3 = XRBaseInteractable_get_selectingInteractor_mDA5536E167016B048166B2DC5061AE3F752B115A_inline(L_2, NULL);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_4 = ___interactor0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_3, L_4, NULL);
if (!L_5)
{
goto IL_002c;
}
}
{
// if (interactor.requireSelectExclusive)
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_6 = ___interactor0;
NullCheck(L_6);
bool L_7;
L_7 = VirtualFuncInvoker0< bool >::Invoke(15 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::get_requireSelectExclusive() */, L_6);
if (!L_7)
{
goto IL_001f;
}
}
{
// return;
return;
}
IL_001f:
{
// SelectExit(interactable.selectingInteractor, interactable);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_8 = ___interactable1;
NullCheck(L_8);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_9;
L_9 = XRBaseInteractable_get_selectingInteractor_mDA5536E167016B048166B2DC5061AE3F752B115A_inline(L_8, NULL);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_10 = ___interactable1;
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(27 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectExit(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_9, L_10);
}
IL_002c:
{
// m_SelectEnterEventArgs.interactor = interactor;
SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* L_11 = __this->___m_SelectEnterEventArgs_16;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_12 = ___interactor0;
NullCheck(L_11);
BaseInteractionEventArgs_set_interactor_mD8877C3687E32637F0E1F67F83B4B0B8AF91C649_inline(L_11, L_12, NULL);
// m_SelectEnterEventArgs.interactable = interactable;
SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* L_13 = __this->___m_SelectEnterEventArgs_16;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_14 = ___interactable1;
NullCheck(L_13);
BaseInteractionEventArgs_set_interactable_m2F82CCB58107BAB47A77981E751779A7A4FA3266_inline(L_13, L_14, NULL);
// SelectEnter(interactor, interactable, m_SelectEnterEventArgs);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_15 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_16 = ___interactable1;
SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* L_17 = __this->___m_SelectEnterEventArgs_16;
VirtualActionInvoker3< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* >::Invoke(32 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectEnter(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs) */, __this, L_15, L_16, L_17);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectExit(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_SelectExit_mFFB8E8B5FC957BCF99BC2F4D007643A416FE71D8 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable1, const RuntimeMethod* method)
{
{
// m_SelectExitEventArgs.interactor = interactor;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_0 = __this->___m_SelectExitEventArgs_17;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_1 = ___interactor0;
NullCheck(L_0);
BaseInteractionEventArgs_set_interactor_mD8877C3687E32637F0E1F67F83B4B0B8AF91C649_inline(L_0, L_1, NULL);
// m_SelectExitEventArgs.interactable = interactable;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_2 = __this->___m_SelectExitEventArgs_17;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_3 = ___interactable1;
NullCheck(L_2);
BaseInteractionEventArgs_set_interactable_m2F82CCB58107BAB47A77981E751779A7A4FA3266_inline(L_2, L_3, NULL);
// m_SelectExitEventArgs.isCanceled = false;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_4 = __this->___m_SelectExitEventArgs_17;
NullCheck(L_4);
SelectExitEventArgs_set_isCanceled_mCD4C4244EBD5D443FD62B581F29FF05B2751AF42_inline(L_4, (bool)0, NULL);
// SelectExit(interactor, interactable, m_SelectExitEventArgs);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_5 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_6 = ___interactable1;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_7 = __this->___m_SelectExitEventArgs_17;
VirtualActionInvoker3< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* >::Invoke(33 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectExit(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs) */, __this, L_5, L_6, L_7);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectCancel(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_SelectCancel_m68A36B47E48F294ADC6128D763EDC9F3D73266BD (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable1, const RuntimeMethod* method)
{
{
// m_SelectExitEventArgs.interactor = interactor;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_0 = __this->___m_SelectExitEventArgs_17;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_1 = ___interactor0;
NullCheck(L_0);
BaseInteractionEventArgs_set_interactor_mD8877C3687E32637F0E1F67F83B4B0B8AF91C649_inline(L_0, L_1, NULL);
// m_SelectExitEventArgs.interactable = interactable;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_2 = __this->___m_SelectExitEventArgs_17;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_3 = ___interactable1;
NullCheck(L_2);
BaseInteractionEventArgs_set_interactable_m2F82CCB58107BAB47A77981E751779A7A4FA3266_inline(L_2, L_3, NULL);
// m_SelectExitEventArgs.isCanceled = true;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_4 = __this->___m_SelectExitEventArgs_17;
NullCheck(L_4);
SelectExitEventArgs_set_isCanceled_mCD4C4244EBD5D443FD62B581F29FF05B2751AF42_inline(L_4, (bool)1, NULL);
// SelectExit(interactor, interactable, m_SelectExitEventArgs);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_5 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_6 = ___interactable1;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_7 = __this->___m_SelectExitEventArgs_17;
VirtualActionInvoker3< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* >::Invoke(33 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectExit(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs) */, __this, L_5, L_6, L_7);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverEnter(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_HoverEnter_m11CCF7D0EECDE1D6F8F6E1B7EF5730806D6A1B1E (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable1, const RuntimeMethod* method)
{
{
// m_HoverEnterEventArgs.interactor = interactor;
HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* L_0 = __this->___m_HoverEnterEventArgs_18;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_1 = ___interactor0;
NullCheck(L_0);
BaseInteractionEventArgs_set_interactor_mD8877C3687E32637F0E1F67F83B4B0B8AF91C649_inline(L_0, L_1, NULL);
// m_HoverEnterEventArgs.interactable = interactable;
HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* L_2 = __this->___m_HoverEnterEventArgs_18;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_3 = ___interactable1;
NullCheck(L_2);
BaseInteractionEventArgs_set_interactable_m2F82CCB58107BAB47A77981E751779A7A4FA3266_inline(L_2, L_3, NULL);
// HoverEnter(interactor, interactable, m_HoverEnterEventArgs);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_4 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_5 = ___interactable1;
HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* L_6 = __this->___m_HoverEnterEventArgs_18;
VirtualActionInvoker3< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* >::Invoke(34 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverEnter(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs) */, __this, L_4, L_5, L_6);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverExit(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_HoverExit_m6880CADA950FEAC8F7B6027D78189BA787AB9458 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable1, const RuntimeMethod* method)
{
{
// m_HoverExitEventArgs.interactor = interactor;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_0 = __this->___m_HoverExitEventArgs_19;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_1 = ___interactor0;
NullCheck(L_0);
BaseInteractionEventArgs_set_interactor_mD8877C3687E32637F0E1F67F83B4B0B8AF91C649_inline(L_0, L_1, NULL);
// m_HoverExitEventArgs.interactable = interactable;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_2 = __this->___m_HoverExitEventArgs_19;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_3 = ___interactable1;
NullCheck(L_2);
BaseInteractionEventArgs_set_interactable_m2F82CCB58107BAB47A77981E751779A7A4FA3266_inline(L_2, L_3, NULL);
// m_HoverExitEventArgs.isCanceled = false;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_4 = __this->___m_HoverExitEventArgs_19;
NullCheck(L_4);
HoverExitEventArgs_set_isCanceled_mD30ECFAFDE30B96DB1C4BA30800D72D6CC31218C_inline(L_4, (bool)0, NULL);
// HoverExit(interactor, interactable, m_HoverExitEventArgs);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_5 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_6 = ___interactable1;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_7 = __this->___m_HoverExitEventArgs_19;
VirtualActionInvoker3< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* >::Invoke(35 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverExit(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs) */, __this, L_5, L_6, L_7);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverCancel(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_HoverCancel_m57F0EB47090B391FA9AEA4E2BBB417C6CC93C9F0 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable1, const RuntimeMethod* method)
{
{
// m_HoverExitEventArgs.interactor = interactor;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_0 = __this->___m_HoverExitEventArgs_19;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_1 = ___interactor0;
NullCheck(L_0);
BaseInteractionEventArgs_set_interactor_mD8877C3687E32637F0E1F67F83B4B0B8AF91C649_inline(L_0, L_1, NULL);
// m_HoverExitEventArgs.interactable = interactable;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_2 = __this->___m_HoverExitEventArgs_19;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_3 = ___interactable1;
NullCheck(L_2);
BaseInteractionEventArgs_set_interactable_m2F82CCB58107BAB47A77981E751779A7A4FA3266_inline(L_2, L_3, NULL);
// m_HoverExitEventArgs.isCanceled = true;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_4 = __this->___m_HoverExitEventArgs_19;
NullCheck(L_4);
HoverExitEventArgs_set_isCanceled_mD30ECFAFDE30B96DB1C4BA30800D72D6CC31218C_inline(L_4, (bool)1, NULL);
// HoverExit(interactor, interactable, m_HoverExitEventArgs);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_5 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_6 = ___interactable1;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_7 = __this->___m_HoverExitEventArgs_19;
VirtualActionInvoker3< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*, HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* >::Invoke(35 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverExit(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs) */, __this, L_5, L_6, L_7);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectEnter(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_SelectEnter_m9F21AB38B8090B0D2EEDCBCB24A6BF83F53F4011 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable1, SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
memset((&V_0), 0, sizeof(V_0));
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// using (s_SelectEnterMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_SelectEnterMarker_32;
V_1 = L_0;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
L_1 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_1;
}
IL_000e:
try
{// begin try (depth: 1)
// interactor.OnSelectEntering(args);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_2 = ___interactor0;
SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* L_3 = ___args2;
NullCheck(L_2);
VirtualActionInvoker1< SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* >::Invoke(23 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::OnSelectEntering(UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs) */, L_2, L_3);
// interactable.OnSelectEntering(args);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_4 = ___interactable1;
SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* L_5 = ___args2;
NullCheck(L_4);
VirtualActionInvoker1< SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* >::Invoke(21 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnSelectEntering(UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs) */, L_4, L_5);
// interactor.OnSelectEntered(args);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_6 = ___interactor0;
SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* L_7 = ___args2;
NullCheck(L_6);
VirtualActionInvoker1< SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* >::Invoke(24 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::OnSelectEntered(UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs) */, L_6, L_7);
// interactable.OnSelectEntered(args);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_8 = ___interactable1;
SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* L_9 = ___args2;
NullCheck(L_8);
VirtualActionInvoker1< SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* >::Invoke(22 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnSelectEntered(UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs) */, L_8, L_9);
// }
IL2CPP_LEAVE(0x58, FINALLY_002c);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_002c;
}
FINALLY_002c:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(44)
}// end finally (depth: 1)
IL2CPP_CLEANUP(44)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x58, IL_003a)
}
IL_003a:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectExit(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_SelectExit_mFF618D4F47C3CCDF4BBC7FB78D7DF57A980DE8C7 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable1, SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
memset((&V_0), 0, sizeof(V_0));
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// using (s_SelectExitMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_SelectExitMarker_33;
V_1 = L_0;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
L_1 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_1;
}
IL_000e:
try
{// begin try (depth: 1)
// interactor.OnSelectExiting(args);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_2 = ___interactor0;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_3 = ___args2;
NullCheck(L_2);
VirtualActionInvoker1< SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* >::Invoke(25 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::OnSelectExiting(UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs) */, L_2, L_3);
// interactable.OnSelectExiting(args);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_4 = ___interactable1;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_5 = ___args2;
NullCheck(L_4);
VirtualActionInvoker1< SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* >::Invoke(23 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnSelectExiting(UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs) */, L_4, L_5);
// interactor.OnSelectExited(args);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_6 = ___interactor0;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_7 = ___args2;
NullCheck(L_6);
VirtualActionInvoker1< SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* >::Invoke(26 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::OnSelectExited(UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs) */, L_6, L_7);
// interactable.OnSelectExited(args);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_8 = ___interactable1;
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_9 = ___args2;
NullCheck(L_8);
VirtualActionInvoker1< SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* >::Invoke(24 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnSelectExited(UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs) */, L_8, L_9);
// }
IL2CPP_LEAVE(0x58, FINALLY_002c);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_002c;
}
FINALLY_002c:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(44)
}// end finally (depth: 1)
IL2CPP_CLEANUP(44)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x58, IL_003a)
}
IL_003a:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverEnter(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_HoverEnter_m3E7765D447A8F4CCF1F731EA850AA85644609E21 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable1, HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
memset((&V_0), 0, sizeof(V_0));
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// using (s_HoverEnterMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_HoverEnterMarker_34;
V_1 = L_0;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
L_1 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_1;
}
IL_000e:
try
{// begin try (depth: 1)
// interactor.OnHoverEntering(args);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_2 = ___interactor0;
HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* L_3 = ___args2;
NullCheck(L_2);
VirtualActionInvoker1< HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* >::Invoke(19 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::OnHoverEntering(UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs) */, L_2, L_3);
// interactable.OnHoverEntering(args);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_4 = ___interactable1;
HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* L_5 = ___args2;
NullCheck(L_4);
VirtualActionInvoker1< HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* >::Invoke(17 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnHoverEntering(UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs) */, L_4, L_5);
// interactor.OnHoverEntered(args);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_6 = ___interactor0;
HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* L_7 = ___args2;
NullCheck(L_6);
VirtualActionInvoker1< HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* >::Invoke(20 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::OnHoverEntered(UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs) */, L_6, L_7);
// interactable.OnHoverEntered(args);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_8 = ___interactable1;
HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* L_9 = ___args2;
NullCheck(L_8);
VirtualActionInvoker1< HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* >::Invoke(18 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnHoverEntered(UnityEngine.XR.Interaction.Toolkit.HoverEnterEventArgs) */, L_8, L_9);
// }
IL2CPP_LEAVE(0x58, FINALLY_002c);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_002c;
}
FINALLY_002c:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(44)
}// end finally (depth: 1)
IL2CPP_CLEANUP(44)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x58, IL_003a)
}
IL_003a:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverExit(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_HoverExit_m99E3E05573C2F4438E51A209934BB5EF4510AB59 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable1, HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
memset((&V_0), 0, sizeof(V_0));
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// using (s_HoverExitMarker.Auto())
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_HoverExitMarker_35;
V_1 = L_0;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
L_1 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
V_0 = L_1;
}
IL_000e:
try
{// begin try (depth: 1)
// interactor.OnHoverExiting(args);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_2 = ___interactor0;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_3 = ___args2;
NullCheck(L_2);
VirtualActionInvoker1< HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* >::Invoke(21 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::OnHoverExiting(UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs) */, L_2, L_3);
// interactable.OnHoverExiting(args);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_4 = ___interactable1;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_5 = ___args2;
NullCheck(L_4);
VirtualActionInvoker1< HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* >::Invoke(19 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnHoverExiting(UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs) */, L_4, L_5);
// interactor.OnHoverExited(args);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_6 = ___interactor0;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_7 = ___args2;
NullCheck(L_6);
VirtualActionInvoker1< HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* >::Invoke(22 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::OnHoverExited(UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs) */, L_6, L_7);
// interactable.OnHoverExited(args);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_8 = ___interactable1;
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_9 = ___args2;
NullCheck(L_8);
VirtualActionInvoker1< HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* >::Invoke(20 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::OnHoverExited(UnityEngine.XR.Interaction.Toolkit.HoverExitEventArgs) */, L_8, L_9);
// }
IL2CPP_LEAVE(0x58, FINALLY_002c);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_002c;
}
FINALLY_002c:
{// begin finally (depth: 1)
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
IL2CPP_END_FINALLY(44)
}// end finally (depth: 1)
IL2CPP_CLEANUP(44)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x58, IL_003a)
}
IL_003a:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::InteractorSelectValidTargets(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_InteractorSelectValidTargets_m53D39B4C1EC70D1F918D5C10BA27D3088B6ED7F3 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___validTargets1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_1 = NULL;
{
// if (!interactor.isSelectActive)
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___interactor0;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::get_isSelectActive() */, L_0);
if (L_1)
{
goto IL_0009;
}
}
{
// return;
return;
}
IL_0009:
{
// for (var i = 0; i < validTargets.Count && interactor.isSelectActive; ++i)
V_0 = 0;
goto IL_0041;
}
IL_000d:
{
// var interactable = validTargets[i];
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_2 = ___validTargets1;
int32_t L_3 = V_0;
NullCheck(L_2);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_4;
L_4 = List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F(L_2, L_3, List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F_RuntimeMethod_var);
V_1 = L_4;
// if (interactor.CanSelect(interactable) && interactable.IsSelectableBy(interactor) &&
// interactor.selectTarget != interactable)
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_5 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_6 = V_1;
NullCheck(L_5);
bool L_7;
L_7 = VirtualFuncInvoker1< bool, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(14 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::CanSelect(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, L_5, L_6);
if (!L_7)
{
goto IL_003d;
}
}
{
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_8 = V_1;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_9 = ___interactor0;
NullCheck(L_8);
bool L_10;
L_10 = VirtualFuncInvoker1< bool, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* >::Invoke(11 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::IsSelectableBy(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor) */, L_8, L_9);
if (!L_10)
{
goto IL_003d;
}
}
{
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_11 = ___interactor0;
NullCheck(L_11);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_12;
L_12 = XRBaseInteractor_get_selectTarget_m2888C3BFA4B168C6DDD37CAC1A999BEF406596E4_inline(L_11, NULL);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_13 = V_1;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_14;
L_14 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_12, L_13, NULL);
if (!L_14)
{
goto IL_003d;
}
}
{
// SelectEnter(interactor, interactable);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_15 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_16 = V_1;
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(26 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::SelectEnter(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_15, L_16);
}
IL_003d:
{
// for (var i = 0; i < validTargets.Count && interactor.isSelectActive; ++i)
int32_t L_17 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_0041:
{
// for (var i = 0; i < validTargets.Count && interactor.isSelectActive; ++i)
int32_t L_18 = V_0;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_19 = ___validTargets1;
NullCheck(L_19);
int32_t L_20;
L_20 = List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_inline(L_19, List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
if ((((int32_t)L_18) >= ((int32_t)L_20)))
{
goto IL_0052;
}
}
{
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_21 = ___interactor0;
NullCheck(L_21);
bool L_22;
L_22 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::get_isSelectActive() */, L_21);
if (L_22)
{
goto IL_000d;
}
}
IL_0052:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::InteractorHoverValidTargets(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_InteractorHoverValidTargets_mA35E677C2AD9CED7637B75A1753BE0DF8CF84630 (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___validTargets1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m60D5575FEC3B4BA030ECA79F40952F7A6FAF425B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m39CBC6F250AA52AB65D1D155D740C35A6072245F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F V_0;
memset((&V_0), 0, sizeof(V_0));
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_1 = NULL;
int32_t V_2 = 0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_3 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// if (!interactor.isHoverActive)
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___interactor0;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::get_isHoverActive() */, L_0);
if (L_1)
{
goto IL_0009;
}
}
{
// return;
return;
}
IL_0009:
{
// interactor.GetHoverTargets(m_HoverTargets);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_2 = ___interactor0;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_3 = __this->___m_HoverTargets_12;
NullCheck(L_2);
XRBaseInteractor_GetHoverTargets_m97B6CFE8D71144CF21C4D470482DAB9101D4AA35(L_2, L_3, NULL);
// m_UnorderedHoverTargets.Clear();
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_4 = __this->___m_UnorderedHoverTargets_13;
NullCheck(L_4);
HashSet_1_Clear_m60D5575FEC3B4BA030ECA79F40952F7A6FAF425B(L_4, HashSet_1_Clear_m60D5575FEC3B4BA030ECA79F40952F7A6FAF425B_RuntimeMethod_var);
// if (m_HoverTargets.Count > 0)
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_5 = __this->___m_HoverTargets_12;
NullCheck(L_5);
int32_t L_6;
L_6 = List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_inline(L_5, List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
if ((((int32_t)L_6) <= ((int32_t)0)))
{
goto IL_006a;
}
}
{
// foreach (var target in m_HoverTargets)
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_7 = __this->___m_HoverTargets_12;
NullCheck(L_7);
Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F L_8;
L_8 = List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A(L_7, List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A_RuntimeMethod_var);
V_0 = L_8;
}
IL_003a:
try
{// begin try (depth: 1)
{
goto IL_0051;
}
IL_003c:
{
// foreach (var target in m_HoverTargets)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_9;
L_9 = Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_inline((&V_0), Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_RuntimeMethod_var);
V_1 = L_9;
// m_UnorderedHoverTargets.Add(target);
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_10 = __this->___m_UnorderedHoverTargets_13;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_11 = V_1;
NullCheck(L_10);
bool L_12;
L_12 = HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485(L_10, L_11, HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var);
}
IL_0051:
{
// foreach (var target in m_HoverTargets)
bool L_13;
L_13 = Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A((&V_0), Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A_RuntimeMethod_var);
if (L_13)
{
goto IL_003c;
}
}
IL_005a:
{
IL2CPP_LEAVE(0x106, FINALLY_005c);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_005c;
}
FINALLY_005c:
{// begin finally (depth: 1)
Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032((&V_0), Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032_RuntimeMethod_var);
IL2CPP_END_FINALLY(92)
}// end finally (depth: 1)
IL2CPP_CLEANUP(92)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x106, IL_006a)
}
IL_006a:
{
// for (var i = 0; i < validTargets.Count && interactor.isHoverActive; ++i)
V_2 = 0;
goto IL_00af;
}
IL_006e:
{
// var interactable = validTargets[i];
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_14 = ___validTargets1;
int32_t L_15 = V_2;
NullCheck(L_14);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_16;
L_16 = List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F(L_14, L_15, List_1_get_Item_mE1B9DEA6B91D82327D62358B41EED80CF2B2775F_RuntimeMethod_var);
V_3 = L_16;
// if (interactor.CanHover(interactable) && interactable.IsHoverableBy(interactor))
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_17 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_18 = V_3;
NullCheck(L_17);
bool L_19;
L_19 = VirtualFuncInvoker1< bool, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(13 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::CanHover(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, L_17, L_18);
if (!L_19)
{
goto IL_00ab;
}
}
{
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_20 = V_3;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_21 = ___interactor0;
NullCheck(L_20);
bool L_22;
L_22 = VirtualFuncInvoker1< bool, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* >::Invoke(10 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::IsHoverableBy(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor) */, L_20, L_21);
if (!L_22)
{
goto IL_00ab;
}
}
{
// if (!m_UnorderedHoverTargets.Contains(interactable))
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_23 = __this->___m_UnorderedHoverTargets_13;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_24 = V_3;
NullCheck(L_23);
bool L_25;
L_25 = HashSet_1_Contains_m39CBC6F250AA52AB65D1D155D740C35A6072245F(L_23, L_24, HashSet_1_Contains_m39CBC6F250AA52AB65D1D155D740C35A6072245F_RuntimeMethod_var);
if (L_25)
{
goto IL_00ab;
}
}
{
// HoverEnter(interactor, interactable);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_26 = ___interactor0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_27 = V_3;
VirtualActionInvoker2< XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* >::Invoke(29 /* System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::HoverEnter(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable) */, __this, L_26, L_27);
// m_UnorderedHoverTargets.Add(interactable);
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_28 = __this->___m_UnorderedHoverTargets_13;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_29 = V_3;
NullCheck(L_28);
bool L_30;
L_30 = HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485(L_28, L_29, HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var);
}
IL_00ab:
{
// for (var i = 0; i < validTargets.Count && interactor.isHoverActive; ++i)
int32_t L_31 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
}
IL_00af:
{
// for (var i = 0; i < validTargets.Count && interactor.isHoverActive; ++i)
int32_t L_32 = V_2;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_33 = ___validTargets1;
NullCheck(L_33);
int32_t L_34;
L_34 = List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_inline(L_33, List_1_get_Count_m15D4AF6A18C83FF23C90EB4CD6C8FF46A1C351ED_RuntimeMethod_var);
if ((((int32_t)L_32) >= ((int32_t)L_34)))
{
goto IL_00c0;
}
}
{
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_35 = ___interactor0;
NullCheck(L_35);
bool L_36;
L_36 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor::get_isHoverActive() */, L_35);
if (L_36)
{
goto IL_006e;
}
}
IL_00c0:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::FlushRegistration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager_FlushRegistration_mD3A98438B16A1A1CF88A66E6935578619C60251A (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_Flush_m5917C42B2029F59B417BFDC752E08BB585063511_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_Flush_mFBEBA2CAF9F291947B6D1473B45AA010CB19E995_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// m_Interactors.Flush();
RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* L_0 = __this->___m_Interactors_10;
NullCheck(L_0);
RegistrationList_1_Flush_m5917C42B2029F59B417BFDC752E08BB585063511(L_0, RegistrationList_1_Flush_m5917C42B2029F59B417BFDC752E08BB585063511_RuntimeMethod_var);
// m_Interactables.Flush();
RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* L_1 = __this->___m_Interactables_11;
NullCheck(L_1);
RegistrationList_1_Flush_mFBEBA2CAF9F291947B6D1473B45AA010CB19E995(L_1, RegistrationList_1_Flush_mFBEBA2CAF9F291947B6D1473B45AA010CB19E995_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager__ctor_m33B9DE751643CC7A9CDCA18704DD2CFC8C2A47BA (XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m171CA807CFD9125876994104E2005D04F38AA95C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m67D0471240C68496D5D4CF51915F03455FD5AB4F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m5E0E87678A3837CA7E7B32D1DC89E510829A97C4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t02510C493B34D49F210C22C40442D863A08509CB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1__ctor_m0840E8D309F3A1153D845D204D33E34CBF66A9F4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1__ctor_mA1373140CD8C0A195EB37EAE8C06B5C097592295_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// readonly Dictionary<Collider, XRBaseInteractable> m_ColliderToInteractableMap = new Dictionary<Collider, XRBaseInteractable>();
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_0 = (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82*)il2cpp_codegen_object_new(Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m171CA807CFD9125876994104E2005D04F38AA95C(L_0, /*hidden argument*/Dictionary_2__ctor_m171CA807CFD9125876994104E2005D04F38AA95C_RuntimeMethod_var);
__this->___m_ColliderToInteractableMap_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ColliderToInteractableMap_9), (void*)L_0);
// readonly RegistrationList<XRBaseInteractor> m_Interactors = new RegistrationList<XRBaseInteractor>();
RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52* L_1 = (RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52*)il2cpp_codegen_object_new(RegistrationList_1_t905D08AC970DD54AF648AB46B5331E38393E1F52_il2cpp_TypeInfo_var);
RegistrationList_1__ctor_mA1373140CD8C0A195EB37EAE8C06B5C097592295(L_1, /*hidden argument*/RegistrationList_1__ctor_mA1373140CD8C0A195EB37EAE8C06B5C097592295_RuntimeMethod_var);
__this->___m_Interactors_10 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Interactors_10), (void*)L_1);
// readonly RegistrationList<XRBaseInteractable> m_Interactables = new RegistrationList<XRBaseInteractable>();
RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1* L_2 = (RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1*)il2cpp_codegen_object_new(RegistrationList_1_t2CDDA86424C65EEF797CECD4B8EB7D5592A756F1_il2cpp_TypeInfo_var);
RegistrationList_1__ctor_m0840E8D309F3A1153D845D204D33E34CBF66A9F4(L_2, /*hidden argument*/RegistrationList_1__ctor_m0840E8D309F3A1153D845D204D33E34CBF66A9F4_RuntimeMethod_var);
__this->___m_Interactables_11 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Interactables_11), (void*)L_2);
// readonly List<XRBaseInteractable> m_HoverTargets = new List<XRBaseInteractable>();
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_3 = (List_1_t02510C493B34D49F210C22C40442D863A08509CB*)il2cpp_codegen_object_new(List_1_t02510C493B34D49F210C22C40442D863A08509CB_il2cpp_TypeInfo_var);
List_1__ctor_m5E0E87678A3837CA7E7B32D1DC89E510829A97C4(L_3, /*hidden argument*/List_1__ctor_m5E0E87678A3837CA7E7B32D1DC89E510829A97C4_RuntimeMethod_var);
__this->___m_HoverTargets_12 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_HoverTargets_12), (void*)L_3);
// readonly HashSet<XRBaseInteractable> m_UnorderedHoverTargets = new HashSet<XRBaseInteractable>();
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_4 = (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782*)il2cpp_codegen_object_new(HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782_il2cpp_TypeInfo_var);
HashSet_1__ctor_m67D0471240C68496D5D4CF51915F03455FD5AB4F(L_4, /*hidden argument*/HashSet_1__ctor_m67D0471240C68496D5D4CF51915F03455FD5AB4F_RuntimeMethod_var);
__this->___m_UnorderedHoverTargets_13 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UnorderedHoverTargets_13), (void*)L_4);
// readonly List<XRBaseInteractable> m_ValidTargets = new List<XRBaseInteractable>();
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_5 = (List_1_t02510C493B34D49F210C22C40442D863A08509CB*)il2cpp_codegen_object_new(List_1_t02510C493B34D49F210C22C40442D863A08509CB_il2cpp_TypeInfo_var);
List_1__ctor_m5E0E87678A3837CA7E7B32D1DC89E510829A97C4(L_5, /*hidden argument*/List_1__ctor_m5E0E87678A3837CA7E7B32D1DC89E510829A97C4_RuntimeMethod_var);
__this->___m_ValidTargets_14 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ValidTargets_14), (void*)L_5);
// readonly HashSet<XRBaseInteractable> m_UnorderedValidTargets = new HashSet<XRBaseInteractable>();
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_6 = (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782*)il2cpp_codegen_object_new(HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782_il2cpp_TypeInfo_var);
HashSet_1__ctor_m67D0471240C68496D5D4CF51915F03455FD5AB4F(L_6, /*hidden argument*/HashSet_1__ctor_m67D0471240C68496D5D4CF51915F03455FD5AB4F_RuntimeMethod_var);
__this->___m_UnorderedValidTargets_15 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UnorderedValidTargets_15), (void*)L_6);
// readonly SelectEnterEventArgs m_SelectEnterEventArgs = new SelectEnterEventArgs();
SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* L_7 = (SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938*)il2cpp_codegen_object_new(SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938_il2cpp_TypeInfo_var);
SelectEnterEventArgs__ctor_mE74661F8720305C7C924ADBA1766057084A1D264(L_7, /*hidden argument*/NULL);
__this->___m_SelectEnterEventArgs_16 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SelectEnterEventArgs_16), (void*)L_7);
// readonly SelectExitEventArgs m_SelectExitEventArgs = new SelectExitEventArgs();
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_8 = (SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A*)il2cpp_codegen_object_new(SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A_il2cpp_TypeInfo_var);
SelectExitEventArgs__ctor_mF2917F17EA7F2AD8B1698AE1E4D5C3B9F0225A69(L_8, /*hidden argument*/NULL);
__this->___m_SelectExitEventArgs_17 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SelectExitEventArgs_17), (void*)L_8);
// readonly HoverEnterEventArgs m_HoverEnterEventArgs = new HoverEnterEventArgs();
HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E* L_9 = (HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E*)il2cpp_codegen_object_new(HoverEnterEventArgs_t4BCFA6BFD8D007CEE2D72D9D61DAED6C72F8CE2E_il2cpp_TypeInfo_var);
HoverEnterEventArgs__ctor_m64B2FD3D0E28418D562AB3E809D4D41FB73B61F5(L_9, /*hidden argument*/NULL);
__this->___m_HoverEnterEventArgs_18 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_HoverEnterEventArgs_18), (void*)L_9);
// readonly HoverExitEventArgs m_HoverExitEventArgs = new HoverExitEventArgs();
HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* L_10 = (HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6*)il2cpp_codegen_object_new(HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6_il2cpp_TypeInfo_var);
HoverExitEventArgs__ctor_mE583F8ECA5AA5CD5766A4819840CF8AA29473223(L_10, /*hidden argument*/NULL);
__this->___m_HoverExitEventArgs_19 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_HoverExitEventArgs_19), (void*)L_10);
// readonly InteractorRegisteredEventArgs m_InteractorRegisteredEventArgs = new InteractorRegisteredEventArgs();
InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* L_11 = (InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775*)il2cpp_codegen_object_new(InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775_il2cpp_TypeInfo_var);
InteractorRegisteredEventArgs__ctor_m1CEEB1E90C5E36396D47DEE555CA51EAF67E51A4(L_11, /*hidden argument*/NULL);
__this->___m_InteractorRegisteredEventArgs_20 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InteractorRegisteredEventArgs_20), (void*)L_11);
// readonly InteractorUnregisteredEventArgs m_InteractorUnregisteredEventArgs = new InteractorUnregisteredEventArgs();
InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* L_12 = (InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93*)il2cpp_codegen_object_new(InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93_il2cpp_TypeInfo_var);
InteractorUnregisteredEventArgs__ctor_m4A66D6EAF8334F6DB39B8C23D81FF3641910F98F(L_12, /*hidden argument*/NULL);
__this->___m_InteractorUnregisteredEventArgs_21 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InteractorUnregisteredEventArgs_21), (void*)L_12);
// readonly InteractableRegisteredEventArgs m_InteractableRegisteredEventArgs = new InteractableRegisteredEventArgs();
InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* L_13 = (InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D*)il2cpp_codegen_object_new(InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D_il2cpp_TypeInfo_var);
InteractableRegisteredEventArgs__ctor_m822E9B17C5624FD5DAC56EDDB45B0BBC559ED753(L_13, /*hidden argument*/NULL);
__this->___m_InteractableRegisteredEventArgs_22 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InteractableRegisteredEventArgs_22), (void*)L_13);
// readonly InteractableUnregisteredEventArgs m_InteractableUnregisteredEventArgs = new InteractableUnregisteredEventArgs();
InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* L_14 = (InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21*)il2cpp_codegen_object_new(InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21_il2cpp_TypeInfo_var);
InteractableUnregisteredEventArgs__ctor_m06876C6525B6E04247181AE3D01F172CD6CF8A9E(L_14, /*hidden argument*/NULL);
__this->___m_InteractableUnregisteredEventArgs_23 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InteractableUnregisteredEventArgs_23), (void*)L_14);
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRInteractionManager::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInteractionManager__cctor_m8FACD8A6CE2EFF761C03AB0A86DAAEC8417F50D6 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m8785F571D6882158F57F659B5C8842B1430E82BE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral05D2BB9344DD7A738CCBCDD75D33B0D0570910C7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral10299BBC0EE96E8A5A3A9883B7C9339993D3178D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral28F8F68B4BB9ACC9AAE15DDB501D55F17BB42C31);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64E0432DA4B16B23C2833BED3FAE782B7A0B2FC3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9C35FAEF7B79D4213EA3410ACE98B0ABCB6AFC36);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA1FCC06F5360EA4295129C9BF8A6A1F6E4E6D69E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAABE0CC8BF39C5F9EB98EB75DD612B119D748448);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD0A4B6BECBDFE344C3B7A5949F632D0AA983740C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD16A9DF72BFEC4E1FE988C88F5BDD0AD253C6570);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9A3C43474C0EAB770FFF7FD263A144E80AA265A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF797D8DDA6ABC6D470973A2DC2242CC250F44AE5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA7A96BE3FB1ACF1C1B7A9FF75438F7ACB58DE06);
s_Il2CppMethodInitialized = true;
}
{
// internal static List<XRInteractionManager> activeInteractionManagers { get; } = new List<XRInteractionManager>();
List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* L_0 = (List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B*)il2cpp_codegen_object_new(List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B_il2cpp_TypeInfo_var);
List_1__ctor_m8785F571D6882158F57F659B5C8842B1430E82BE(L_0, /*hidden argument*/List_1__ctor_m8785F571D6882158F57F659B5C8842B1430E82BE_RuntimeMethod_var);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___U3CactiveInteractionManagersU3Ek__BackingField_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___U3CactiveInteractionManagersU3Ek__BackingField_8), (void*)L_0);
// static readonly ProfilerMarker s_ProcessInteractorsMarker = new ProfilerMarker("XRI.ProcessInteractors");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_1;
memset((&L_1), 0, sizeof(L_1));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_1), _stringLiteral28F8F68B4BB9ACC9AAE15DDB501D55F17BB42C31, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_ProcessInteractorsMarker_24 = L_1;
// static readonly ProfilerMarker s_ProcessInteractablesMarker = new ProfilerMarker("XRI.ProcessInteractables");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_2;
memset((&L_2), 0, sizeof(L_2));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_2), _stringLiteral05D2BB9344DD7A738CCBCDD75D33B0D0570910C7, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_ProcessInteractablesMarker_25 = L_2;
// static readonly ProfilerMarker s_GetValidTargetsMarker = new ProfilerMarker("XRI.GetValidTargets");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_3;
memset((&L_3), 0, sizeof(L_3));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_3), _stringLiteral9C35FAEF7B79D4213EA3410ACE98B0ABCB6AFC36, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_GetValidTargetsMarker_26 = L_3;
// static readonly ProfilerMarker s_FilterRegisteredValidTargetsMarker = new ProfilerMarker("XRI.FilterRegisteredValidTargets");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_4;
memset((&L_4), 0, sizeof(L_4));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_4), _stringLiteralFA7A96BE3FB1ACF1C1B7A9FF75438F7ACB58DE06, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_FilterRegisteredValidTargetsMarker_27 = L_4;
// static readonly ProfilerMarker s_EvaluateInvalidSelectionsMarker = new ProfilerMarker("XRI.EvaluateInvalidSelections");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_5;
memset((&L_5), 0, sizeof(L_5));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_5), _stringLiteral10299BBC0EE96E8A5A3A9883B7C9339993D3178D, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_EvaluateInvalidSelectionsMarker_28 = L_5;
// static readonly ProfilerMarker s_EvaluateInvalidHoversMarker = new ProfilerMarker("XRI.EvaluateInvalidHovers");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_6;
memset((&L_6), 0, sizeof(L_6));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_6), _stringLiteralAABE0CC8BF39C5F9EB98EB75DD612B119D748448, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_EvaluateInvalidHoversMarker_29 = L_6;
// static readonly ProfilerMarker s_EvaluateValidSelectionsMarker = new ProfilerMarker("XRI.EvaluateValidSelections");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_7;
memset((&L_7), 0, sizeof(L_7));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_7), _stringLiteralA1FCC06F5360EA4295129C9BF8A6A1F6E4E6D69E, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_EvaluateValidSelectionsMarker_30 = L_7;
// static readonly ProfilerMarker s_EvaluateValidHoversMarker = new ProfilerMarker("XRI.EvaluateValidHovers");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_8;
memset((&L_8), 0, sizeof(L_8));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_8), _stringLiteralD0A4B6BECBDFE344C3B7A5949F632D0AA983740C, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_EvaluateValidHoversMarker_31 = L_8;
// static readonly ProfilerMarker s_SelectEnterMarker = new ProfilerMarker("XRI.SelectEnter");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_9;
memset((&L_9), 0, sizeof(L_9));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_9), _stringLiteralD16A9DF72BFEC4E1FE988C88F5BDD0AD253C6570, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_SelectEnterMarker_32 = L_9;
// static readonly ProfilerMarker s_SelectExitMarker = new ProfilerMarker("XRI.SelectExit");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_10;
memset((&L_10), 0, sizeof(L_10));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_10), _stringLiteral64E0432DA4B16B23C2833BED3FAE782B7A0B2FC3, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_SelectExitMarker_33 = L_10;
// static readonly ProfilerMarker s_HoverEnterMarker = new ProfilerMarker("XRI.HoverEnter");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_11;
memset((&L_11), 0, sizeof(L_11));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_11), _stringLiteralF797D8DDA6ABC6D470973A2DC2242CC250F44AE5, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_HoverEnterMarker_34 = L_11;
// static readonly ProfilerMarker s_HoverExitMarker = new ProfilerMarker("XRI.HoverExit");
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_12;
memset((&L_12), 0, sizeof(L_12));
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_12), _stringLiteralD9A3C43474C0EAB770FFF7FD263A144E80AA265A, /*hidden argument*/NULL);
((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___s_HoverExitMarker_35 = L_12;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.LocomotionProvider UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::get_locomotionProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* CharacterControllerDriver_get_locomotionProvider_m832426BACE3C1BDC3018D7B1DA87F33ADF3EF7A6 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
{
// get => m_LocomotionProvider;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = __this->___m_LocomotionProvider_4;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::set_locomotionProvider(UnityEngine.XR.Interaction.Toolkit.LocomotionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_set_locomotionProvider_mC5E56C97BBC05EE1ECCC28088B49A3EBB1B05A3A (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* ___value0, const RuntimeMethod* method)
{
{
// Unsubscribe(m_LocomotionProvider);
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = __this->___m_LocomotionProvider_4;
CharacterControllerDriver_Unsubscribe_m9EACB74F852F90A861C7983CDFB425F5B99DFC14(__this, L_0, NULL);
// m_LocomotionProvider = value;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_1 = ___value0;
__this->___m_LocomotionProvider_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_LocomotionProvider_4), (void*)L_1);
// Subscribe(m_LocomotionProvider);
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_2 = __this->___m_LocomotionProvider_4;
CharacterControllerDriver_Subscribe_mD02046724D31A50E465795C29C463F8F42E35565(__this, L_2, NULL);
// SetupCharacterController();
CharacterControllerDriver_SetupCharacterController_m3259E81F5099D6F5A91D23EC016C25FD173547A0(__this, NULL);
// UpdateCharacterController();
VirtualActionInvoker0::Invoke(4 /* System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::UpdateCharacterController() */, __this);
// }
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::get_minHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CharacterControllerDriver_get_minHeight_m26E0DDB8EC35F9568751F364BBADFA5EBF84B706 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
{
// get => m_MinHeight;
float L_0 = __this->___m_MinHeight_5;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::set_minHeight(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_set_minHeight_m04B4E59CC6A1CA42E3A6F7CBD114D3D13019E938 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_MinHeight = value;
float L_0 = ___value0;
__this->___m_MinHeight_5 = L_0;
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::get_maxHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CharacterControllerDriver_get_maxHeight_mA992C84A42D96607A5AED26E850C4B3D8092A0D5 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
{
// get => m_MaxHeight;
float L_0 = __this->___m_MaxHeight_6;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::set_maxHeight(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_set_maxHeight_m756CD8A723605CFCEEC322AE624E694F33441DFE (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_MaxHeight = value;
float L_0 = ___value0;
__this->___m_MaxHeight_6 = L_0;
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.XRRig UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::get_xrRig()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* CharacterControllerDriver_get_xrRig_m511BE884B2E3510BD714FF7C3FF5EA5332EAE0A4 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
{
// protected XRRig xrRig => m_XRRig;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_0 = __this->___m_XRRig_7;
return L_0;
}
}
// UnityEngine.CharacterController UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::get_characterController()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* CharacterControllerDriver_get_characterController_m0CFBBECC5698525CC38657D490F6B1FD36E5F325 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
{
// protected CharacterController characterController => m_CharacterController;
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_0 = __this->___m_CharacterController_8;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::Awake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_Awake_m20B28E81716B563EC32B5EC3A7A387C492E8F213 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A_m236FB899DE4FE15D29146811DF5A14B607A3A1A0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_LocomotionProvider == null)
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = __this->___m_LocomotionProvider_4;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_001a;
}
}
{
// m_LocomotionProvider = GetComponent<ContinuousMoveProviderBase>();
ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* L_2;
L_2 = Component_GetComponent_TisContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A_m236FB899DE4FE15D29146811DF5A14B607A3A1A0(__this, Component_GetComponent_TisContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A_m236FB899DE4FE15D29146811DF5A14B607A3A1A0_RuntimeMethod_var);
__this->___m_LocomotionProvider_4 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_LocomotionProvider_4), (void*)L_2);
}
IL_001a:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_OnEnable_m701B823C384A3331E6F7FB701607672BAA7ADC3D (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
{
// Subscribe(m_LocomotionProvider);
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = __this->___m_LocomotionProvider_4;
CharacterControllerDriver_Subscribe_mD02046724D31A50E465795C29C463F8F42E35565(__this, L_0, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_OnDisable_mD76F600A9E78338A2CF7027C625958C27B61A2DD (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
{
// Unsubscribe(m_LocomotionProvider);
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = __this->___m_LocomotionProvider_4;
CharacterControllerDriver_Unsubscribe_m9EACB74F852F90A861C7983CDFB425F5B99DFC14(__this, L_0, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_Start_mB21C2A78801CA14CCA3ABF9E8ACB412626846670 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
{
// SetupCharacterController();
CharacterControllerDriver_SetupCharacterController_m3259E81F5099D6F5A91D23EC016C25FD173547A0(__this, NULL);
// UpdateCharacterController();
VirtualActionInvoker0::Invoke(4 /* System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::UpdateCharacterController() */, __this);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::UpdateCharacterController()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_UpdateCharacterController_mD0DBBA9B0393708F017DCF4305245307011A6760 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// if (m_XRRig == null || m_CharacterController == null)
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_0 = __this->___m_XRRig_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_1)
{
goto IL_001c;
}
}
{
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_2 = __this->___m_CharacterController_8;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_3)
{
goto IL_001d;
}
}
IL_001c:
{
// return;
return;
}
IL_001d:
{
// var height = Mathf.Clamp(m_XRRig.cameraInRigSpaceHeight, m_MinHeight, m_MaxHeight);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_4 = __this->___m_XRRig_7;
NullCheck(L_4);
float L_5;
L_5 = XRRig_get_cameraInRigSpaceHeight_m9ED1541D7D6485281124CE4EC109D826851BC575(L_4, NULL);
float L_6 = __this->___m_MinHeight_5;
float L_7 = __this->___m_MaxHeight_6;
float L_8;
L_8 = Mathf_Clamp_m154E404AF275A3B2EC99ECAA3879B4CB9F0606DC_inline(L_5, L_6, L_7, NULL);
V_0 = L_8;
// Vector3 center = m_XRRig.cameraInRigSpacePos;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_9 = __this->___m_XRRig_7;
NullCheck(L_9);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10;
L_10 = XRRig_get_cameraInRigSpacePos_mA397E5CCFBED6DB8DE87BE51E2C2CA686604B72E(L_9, NULL);
V_1 = L_10;
// center.y = height / 2f + m_CharacterController.skinWidth;
float L_11 = V_0;
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_12 = __this->___m_CharacterController_8;
NullCheck(L_12);
float L_13;
L_13 = CharacterController_get_skinWidth_mF22F34BB1F1824D67171FCF5F187F5585749A5DA(L_12, NULL);
(&V_1)->___y_3 = ((float)il2cpp_codegen_add((float)((float)((float)L_11/(float)(2.0f))), (float)L_13));
// m_CharacterController.height = height;
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_14 = __this->___m_CharacterController_8;
float L_15 = V_0;
NullCheck(L_14);
CharacterController_set_height_m7F8FCAFE75439842BAC1FFA1E302EFD812D170FB(L_14, L_15, NULL);
// m_CharacterController.center = center;
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_16 = __this->___m_CharacterController_8;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17 = V_1;
NullCheck(L_16);
CharacterController_set_center_mF22160684B1FB453417D5457B14FEF437B5646EB(L_16, L_17, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::Subscribe(UnityEngine.XR.Interaction.Toolkit.LocomotionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_Subscribe_mD02046724D31A50E465795C29C463F8F42E35565 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharacterControllerDriver_OnBeginLocomotion_m524111528FE7083D44800E28EA2CCA0C7F4CFC6C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharacterControllerDriver_OnEndLocomotion_m0FAAE4B4A7D0B5B4DF84D04C8AF737D78C92EB7B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (provider != null)
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = ___provider0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_002d;
}
}
{
// provider.beginLocomotion += OnBeginLocomotion;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_2 = ___provider0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_3 = (Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)il2cpp_codegen_object_new(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7(L_3, __this, (intptr_t)((void*)CharacterControllerDriver_OnBeginLocomotion_m524111528FE7083D44800E28EA2CCA0C7F4CFC6C_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7_RuntimeMethod_var);
NullCheck(L_2);
LocomotionProvider_add_beginLocomotion_mE886C8B4354EE712934C278A497C77834B4754F0(L_2, L_3, NULL);
// provider.endLocomotion += OnEndLocomotion;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_4 = ___provider0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_5 = (Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)il2cpp_codegen_object_new(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7(L_5, __this, (intptr_t)((void*)CharacterControllerDriver_OnEndLocomotion_m0FAAE4B4A7D0B5B4DF84D04C8AF737D78C92EB7B_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7_RuntimeMethod_var);
NullCheck(L_4);
LocomotionProvider_add_endLocomotion_mB5BE7BC07AD5A5A22A5CAD63540D2A0D6D698606(L_4, L_5, NULL);
}
IL_002d:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::Unsubscribe(UnityEngine.XR.Interaction.Toolkit.LocomotionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_Unsubscribe_m9EACB74F852F90A861C7983CDFB425F5B99DFC14 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharacterControllerDriver_OnBeginLocomotion_m524111528FE7083D44800E28EA2CCA0C7F4CFC6C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharacterControllerDriver_OnEndLocomotion_m0FAAE4B4A7D0B5B4DF84D04C8AF737D78C92EB7B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (provider != null)
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = ___provider0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_002d;
}
}
{
// provider.beginLocomotion -= OnBeginLocomotion;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_2 = ___provider0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_3 = (Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)il2cpp_codegen_object_new(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7(L_3, __this, (intptr_t)((void*)CharacterControllerDriver_OnBeginLocomotion_m524111528FE7083D44800E28EA2CCA0C7F4CFC6C_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7_RuntimeMethod_var);
NullCheck(L_2);
LocomotionProvider_remove_beginLocomotion_mBACFA0AD5B200C844F3B0191C9312813F4696CD0(L_2, L_3, NULL);
// provider.endLocomotion -= OnEndLocomotion;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_4 = ___provider0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_5 = (Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)il2cpp_codegen_object_new(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7(L_5, __this, (intptr_t)((void*)CharacterControllerDriver_OnEndLocomotion_m0FAAE4B4A7D0B5B4DF84D04C8AF737D78C92EB7B_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m6A60AF0B200C23BC30BE39E00A0BDCFD5F9D3CF7_RuntimeMethod_var);
NullCheck(L_4);
LocomotionProvider_remove_endLocomotion_mC78E210D6096F0D694ADB7108AE7AA2132923B0D(L_4, L_5, NULL);
}
IL_002d:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::SetupCharacterController()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_SetupCharacterController_m3259E81F5099D6F5A91D23EC016C25FD173547A0 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisCharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A_m4848A6B0B029AE9B1F4FE4CC1FDE5E3CF030D325_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral158003F3B0068EC5584C556DC293875DEC922AA4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral62FF5A56A78D9B2886C0EE19B03777E09C6AF38F);
s_Il2CppMethodInitialized = true;
}
CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* G_B5_0 = NULL;
CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* G_B4_0 = NULL;
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* G_B6_0 = NULL;
CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* G_B6_1 = NULL;
{
// if (m_LocomotionProvider == null || m_LocomotionProvider.system == null)
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = __this->___m_LocomotionProvider_4;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_1)
{
goto IL_0021;
}
}
{
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_2 = __this->___m_LocomotionProvider_4;
NullCheck(L_2);
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_3;
L_3 = LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94_inline(L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_4)
{
goto IL_0022;
}
}
IL_0021:
{
// return;
return;
}
IL_0022:
{
// m_XRRig = m_LocomotionProvider.system.xrRig;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_5 = __this->___m_LocomotionProvider_4;
NullCheck(L_5);
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_6;
L_6 = LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94_inline(L_5, NULL);
NullCheck(L_6);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_7;
L_7 = LocomotionSystem_get_xrRig_m66C8141D2D2FACDEC33DB82CAC8ED5278DEEDDE1_inline(L_6, NULL);
__this->___m_XRRig_7 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_XRRig_7), (void*)L_7);
// m_CharacterController = m_XRRig != null ? m_XRRig.rig.GetComponent<CharacterController>() : null;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_8 = __this->___m_XRRig_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_9;
L_9 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_8, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
G_B4_0 = __this;
if (L_9)
{
G_B5_0 = __this;
goto IL_004a;
}
}
{
G_B6_0 = ((CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A*)(NULL));
G_B6_1 = G_B4_0;
goto IL_005a;
}
IL_004a:
{
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_10 = __this->___m_XRRig_7;
NullCheck(L_10);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_11;
L_11 = XRRig_get_rig_mE186F9F6B042C09CA316CFB7137A8CC44D49A573_inline(L_10, NULL);
NullCheck(L_11);
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_12;
L_12 = GameObject_GetComponent_TisCharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A_m4848A6B0B029AE9B1F4FE4CC1FDE5E3CF030D325(L_11, GameObject_GetComponent_TisCharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A_m4848A6B0B029AE9B1F4FE4CC1FDE5E3CF030D325_RuntimeMethod_var);
G_B6_0 = L_12;
G_B6_1 = G_B5_0;
}
IL_005a:
{
NullCheck(G_B6_1);
G_B6_1->___m_CharacterController_8 = G_B6_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B6_1->___m_CharacterController_8), (void*)G_B6_0);
// if (m_CharacterController == null && m_XRRig != null)
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_13 = __this->___m_CharacterController_8;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_14;
L_14 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_13, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_14)
{
goto IL_00ab;
}
}
{
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_15 = __this->___m_XRRig_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_16;
L_16 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_15, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_16)
{
goto IL_00ab;
}
}
{
// Debug.LogError($"Could not get CharacterController on {m_XRRig.rig}, unable to drive properties." +
// $" Ensure there is a CharacterController on the \"Rig\" GameObject of {m_XRRig}.",
// this);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_17 = __this->___m_XRRig_7;
NullCheck(L_17);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_18;
L_18 = XRRig_get_rig_mE186F9F6B042C09CA316CFB7137A8CC44D49A573_inline(L_17, NULL);
String_t* L_19;
L_19 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral62FF5A56A78D9B2886C0EE19B03777E09C6AF38F, L_18, NULL);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_20 = __this->___m_XRRig_7;
String_t* L_21;
L_21 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral158003F3B0068EC5584C556DC293875DEC922AA4, L_20, NULL);
String_t* L_22;
L_22 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_19, L_21, NULL);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_LogError_m385F8F46AD9C455E80053F42571A7CE321915C0A(L_22, __this, NULL);
}
IL_00ab:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::OnBeginLocomotion(UnityEngine.XR.Interaction.Toolkit.LocomotionSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_OnBeginLocomotion_m524111528FE7083D44800E28EA2CCA0C7F4CFC6C (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* ___system0, const RuntimeMethod* method)
{
{
// UpdateCharacterController();
VirtualActionInvoker0::Invoke(4 /* System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::UpdateCharacterController() */, __this);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::OnEndLocomotion(UnityEngine.XR.Interaction.Toolkit.LocomotionSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver_OnEndLocomotion_m0FAAE4B4A7D0B5B4DF84D04C8AF737D78C92EB7B (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* ___system0, const RuntimeMethod* method)
{
{
// UpdateCharacterController();
VirtualActionInvoker0::Invoke(4 /* System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::UpdateCharacterController() */, __this);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.CharacterControllerDriver::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharacterControllerDriver__ctor_m51FA99929552C3ADB304E663BEC0C528C701E386 (CharacterControllerDriver_t67EED650FE0B9981BB443FCF62FB04B406223D7C* __this, const RuntimeMethod* method)
{
{
// float m_MaxHeight = float.PositiveInfinity;
__this->___m_MaxHeight_6 = (std::numeric_limits<float>::infinity());
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::get_leftHandMoveAction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ActionBasedContinuousMoveProvider_get_leftHandMoveAction_m1A3CE1F7AFE741716F8CABEE541C67DE5E16C64B (ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E* __this, const RuntimeMethod* method)
{
{
// get => m_LeftHandMoveAction;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_LeftHandMoveAction_16;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::set_leftHandMoveAction(UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousMoveProvider_set_leftHandMoveAction_m2F74B31226292DBBF6932160F6DB596217E8028F (ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value0, const RuntimeMethod* method)
{
{
// set => SetInputActionProperty(ref m_LeftHandMoveAction, value);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_0 = (&__this->___m_LeftHandMoveAction_16);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = ___value0;
ActionBasedContinuousMoveProvider_SetInputActionProperty_m372EC1CCE4169CE641FD0DCBEE996DF11C35148C(__this, L_0, L_1, NULL);
return;
}
}
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::get_rightHandMoveAction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ActionBasedContinuousMoveProvider_get_rightHandMoveAction_m798EAE65B649189963A7A35D4084FE9B28618490 (ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E* __this, const RuntimeMethod* method)
{
{
// get => m_RightHandMoveAction;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_RightHandMoveAction_17;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::set_rightHandMoveAction(UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousMoveProvider_set_rightHandMoveAction_mF39B0E3E9C73287445C2D48CC10B89EDD1593D01 (ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value0, const RuntimeMethod* method)
{
{
// set => SetInputActionProperty(ref m_RightHandMoveAction, value);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_0 = (&__this->___m_RightHandMoveAction_17);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = ___value0;
ActionBasedContinuousMoveProvider_SetInputActionProperty_m372EC1CCE4169CE641FD0DCBEE996DF11C35148C(__this, L_0, L_1, NULL);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousMoveProvider_OnEnable_mA9B8E570972B0F2F18EAAC3F64A94616C7ED1AC5 (ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E* __this, const RuntimeMethod* method)
{
{
// m_LeftHandMoveAction.EnableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_LeftHandMoveAction_16;
InputActionPropertyExtensions_EnableDirectAction_mA8846AAA44837965CF99FD82C518A86D6479AB46(L_0, NULL);
// m_RightHandMoveAction.EnableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = __this->___m_RightHandMoveAction_17;
InputActionPropertyExtensions_EnableDirectAction_mA8846AAA44837965CF99FD82C518A86D6479AB46(L_1, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousMoveProvider_OnDisable_mC6999757EB98EB241640A71ED8C9CB52C850F065 (ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E* __this, const RuntimeMethod* method)
{
{
// m_LeftHandMoveAction.DisableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_LeftHandMoveAction_16;
InputActionPropertyExtensions_DisableDirectAction_m9699BBB4F5F25E03534B2C4A346DC52D2FEE30A7(L_0, NULL);
// m_RightHandMoveAction.DisableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = __this->___m_RightHandMoveAction_17;
InputActionPropertyExtensions_DisableDirectAction_m9699BBB4F5F25E03534B2C4A346DC52D2FEE30A7(L_1, NULL);
// }
return;
}
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::ReadInput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ActionBasedContinuousMoveProvider_ReadInput_m06114221CD3B7CC7998B19DEE88DAC1C9B6B057E (ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B2_0 = NULL;
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B1_0 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B3_0;
memset((&G_B3_0), 0, sizeof(G_B3_0));
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B5_0 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B5_1;
memset((&G_B5_1), 0, sizeof(G_B5_1));
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B4_0 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B4_1;
memset((&G_B4_1), 0, sizeof(G_B4_1));
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B6_0;
memset((&G_B6_0), 0, sizeof(G_B6_0));
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B6_1;
memset((&G_B6_1), 0, sizeof(G_B6_1));
{
// var leftHandValue = m_LeftHandMoveAction.action?.ReadValue<Vector2>() ?? Vector2.zero;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_0 = (&__this->___m_LeftHandMoveAction_16);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_1;
L_1 = InputActionProperty_get_action_mABF2197D9CC6586E5DFB0481CF9C1B2586F41A47(L_0, NULL);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_2 = L_1;
G_B1_0 = L_2;
if (L_2)
{
G_B2_0 = L_2;
goto IL_0016;
}
}
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
L_3 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
G_B3_0 = L_3;
goto IL_001b;
}
IL_0016:
{
NullCheck(G_B2_0);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
L_4 = InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF(G_B2_0, InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_RuntimeMethod_var);
G_B3_0 = L_4;
}
IL_001b:
{
// var rightHandValue = m_RightHandMoveAction.action?.ReadValue<Vector2>() ?? Vector2.zero;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_5 = (&__this->___m_RightHandMoveAction_17);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_6;
L_6 = InputActionProperty_get_action_mABF2197D9CC6586E5DFB0481CF9C1B2586F41A47(L_5, NULL);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_7 = L_6;
G_B4_0 = L_7;
G_B4_1 = G_B3_0;
if (L_7)
{
G_B5_0 = L_7;
G_B5_1 = G_B3_0;
goto IL_0031;
}
}
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
L_8 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
G_B6_0 = L_8;
G_B6_1 = G_B4_1;
goto IL_0036;
}
IL_0031:
{
NullCheck(G_B5_0);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
L_9 = InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF(G_B5_0, InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_RuntimeMethod_var);
G_B6_0 = L_9;
G_B6_1 = G_B5_1;
}
IL_0036:
{
V_0 = G_B6_0;
// return leftHandValue + rightHandValue;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
L_11 = Vector2_op_Addition_m704B5B98EAFE885978381E21B7F89D9DF83C2A60_inline(G_B6_1, L_10, NULL);
return L_11;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::SetInputActionProperty(UnityEngine.InputSystem.InputActionProperty&,UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousMoveProvider_SetInputActionProperty_m372EC1CCE4169CE641FD0DCBEE996DF11C35148C (ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* ___property0, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value1, const RuntimeMethod* method)
{
{
// if (Application.isPlaying)
bool L_0;
L_0 = Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337(NULL);
if (!L_0)
{
goto IL_0012;
}
}
{
// property.DisableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_1 = ___property0;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_2 = (*(InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_1);
InputActionPropertyExtensions_DisableDirectAction_m9699BBB4F5F25E03534B2C4A346DC52D2FEE30A7(L_2, NULL);
}
IL_0012:
{
// property = value;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_3 = ___property0;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_4 = ___value1;
*(InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_3 = L_4;
Il2CppCodeGenWriteBarrier((void**)&(((InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_3)->___m_Action_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_3)->___m_Reference_2), (void*)NULL);
#endif
// if (Application.isPlaying && isActiveAndEnabled)
bool L_5;
L_5 = Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337(NULL);
if (!L_5)
{
goto IL_0033;
}
}
{
bool L_6;
L_6 = Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A(__this, NULL);
if (!L_6)
{
goto IL_0033;
}
}
{
// property.EnableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_7 = ___property0;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_8 = (*(InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_7);
InputActionPropertyExtensions_EnableDirectAction_mA8846AAA44837965CF99FD82C518A86D6479AB46(L_8, NULL);
}
IL_0033:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousMoveProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousMoveProvider__ctor_m1310A2218E70F36811987629965EF7BC0F356583 (ActionBasedContinuousMoveProvider_t9F6714C0271E33DE9DBF31AEE774B257E971A29E* __this, const RuntimeMethod* method)
{
{
ContinuousMoveProviderBase__ctor_m1AB119E41778C58681F1785ECE37EF8270A24EA0(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::get_leftHandTurnAction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ActionBasedContinuousTurnProvider_get_leftHandTurnAction_m5BCCB053D1B00DC263CD37DC0C3C696BADE74AC5 (ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7* __this, const RuntimeMethod* method)
{
{
// get => m_LeftHandTurnAction;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_LeftHandTurnAction_9;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::set_leftHandTurnAction(UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousTurnProvider_set_leftHandTurnAction_mDD02C10E24CE3DD53AE203369CC2B3C4F71F0E2B (ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value0, const RuntimeMethod* method)
{
{
// set => SetInputActionProperty(ref m_LeftHandTurnAction, value);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_0 = (&__this->___m_LeftHandTurnAction_9);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = ___value0;
ActionBasedContinuousTurnProvider_SetInputActionProperty_m9DDF18609BB9EC477E7DC06DE67B3AB94A443977(__this, L_0, L_1, NULL);
return;
}
}
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::get_rightHandTurnAction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ActionBasedContinuousTurnProvider_get_rightHandTurnAction_m2146FD4E90F61AA61299F06966E0B320C7C5B0B6 (ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7* __this, const RuntimeMethod* method)
{
{
// get => m_RightHandTurnAction;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_RightHandTurnAction_10;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::set_rightHandTurnAction(UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousTurnProvider_set_rightHandTurnAction_mE42B3483F0532A56D4E23F3A89F98F1B242F5247 (ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value0, const RuntimeMethod* method)
{
{
// set => SetInputActionProperty(ref m_RightHandTurnAction, value);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_0 = (&__this->___m_RightHandTurnAction_10);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = ___value0;
ActionBasedContinuousTurnProvider_SetInputActionProperty_m9DDF18609BB9EC477E7DC06DE67B3AB94A443977(__this, L_0, L_1, NULL);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousTurnProvider_OnEnable_m44BA623643961E42C10CE7B5FD41AD08CC8D9E89 (ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7* __this, const RuntimeMethod* method)
{
{
// m_LeftHandTurnAction.EnableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_LeftHandTurnAction_9;
InputActionPropertyExtensions_EnableDirectAction_mA8846AAA44837965CF99FD82C518A86D6479AB46(L_0, NULL);
// m_RightHandTurnAction.EnableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = __this->___m_RightHandTurnAction_10;
InputActionPropertyExtensions_EnableDirectAction_mA8846AAA44837965CF99FD82C518A86D6479AB46(L_1, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousTurnProvider_OnDisable_m956FFE42EF85B4C43C2B2CE858676B8F0247069F (ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7* __this, const RuntimeMethod* method)
{
{
// m_LeftHandTurnAction.DisableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_LeftHandTurnAction_9;
InputActionPropertyExtensions_DisableDirectAction_m9699BBB4F5F25E03534B2C4A346DC52D2FEE30A7(L_0, NULL);
// m_RightHandTurnAction.DisableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = __this->___m_RightHandTurnAction_10;
InputActionPropertyExtensions_DisableDirectAction_m9699BBB4F5F25E03534B2C4A346DC52D2FEE30A7(L_1, NULL);
// }
return;
}
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::ReadInput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ActionBasedContinuousTurnProvider_ReadInput_mD48398B9672DFD785926FB6B3B45EF799D6730FA (ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B2_0 = NULL;
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B1_0 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B3_0;
memset((&G_B3_0), 0, sizeof(G_B3_0));
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B5_0 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B5_1;
memset((&G_B5_1), 0, sizeof(G_B5_1));
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B4_0 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B4_1;
memset((&G_B4_1), 0, sizeof(G_B4_1));
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B6_0;
memset((&G_B6_0), 0, sizeof(G_B6_0));
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B6_1;
memset((&G_B6_1), 0, sizeof(G_B6_1));
{
// var leftHandValue = m_LeftHandTurnAction.action?.ReadValue<Vector2>() ?? Vector2.zero;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_0 = (&__this->___m_LeftHandTurnAction_9);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_1;
L_1 = InputActionProperty_get_action_mABF2197D9CC6586E5DFB0481CF9C1B2586F41A47(L_0, NULL);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_2 = L_1;
G_B1_0 = L_2;
if (L_2)
{
G_B2_0 = L_2;
goto IL_0016;
}
}
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
L_3 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
G_B3_0 = L_3;
goto IL_001b;
}
IL_0016:
{
NullCheck(G_B2_0);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
L_4 = InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF(G_B2_0, InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_RuntimeMethod_var);
G_B3_0 = L_4;
}
IL_001b:
{
// var rightHandValue = m_RightHandTurnAction.action?.ReadValue<Vector2>() ?? Vector2.zero;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_5 = (&__this->___m_RightHandTurnAction_10);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_6;
L_6 = InputActionProperty_get_action_mABF2197D9CC6586E5DFB0481CF9C1B2586F41A47(L_5, NULL);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_7 = L_6;
G_B4_0 = L_7;
G_B4_1 = G_B3_0;
if (L_7)
{
G_B5_0 = L_7;
G_B5_1 = G_B3_0;
goto IL_0031;
}
}
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
L_8 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
G_B6_0 = L_8;
G_B6_1 = G_B4_1;
goto IL_0036;
}
IL_0031:
{
NullCheck(G_B5_0);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
L_9 = InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF(G_B5_0, InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_RuntimeMethod_var);
G_B6_0 = L_9;
G_B6_1 = G_B5_1;
}
IL_0036:
{
V_0 = G_B6_0;
// return leftHandValue + rightHandValue;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
L_11 = Vector2_op_Addition_m704B5B98EAFE885978381E21B7F89D9DF83C2A60_inline(G_B6_1, L_10, NULL);
return L_11;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::SetInputActionProperty(UnityEngine.InputSystem.InputActionProperty&,UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousTurnProvider_SetInputActionProperty_m9DDF18609BB9EC477E7DC06DE67B3AB94A443977 (ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* ___property0, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value1, const RuntimeMethod* method)
{
{
// if (Application.isPlaying)
bool L_0;
L_0 = Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337(NULL);
if (!L_0)
{
goto IL_0012;
}
}
{
// property.DisableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_1 = ___property0;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_2 = (*(InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_1);
InputActionPropertyExtensions_DisableDirectAction_m9699BBB4F5F25E03534B2C4A346DC52D2FEE30A7(L_2, NULL);
}
IL_0012:
{
// property = value;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_3 = ___property0;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_4 = ___value1;
*(InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_3 = L_4;
Il2CppCodeGenWriteBarrier((void**)&(((InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_3)->___m_Action_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_3)->___m_Reference_2), (void*)NULL);
#endif
// if (Application.isPlaying && isActiveAndEnabled)
bool L_5;
L_5 = Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337(NULL);
if (!L_5)
{
goto IL_0033;
}
}
{
bool L_6;
L_6 = Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A(__this, NULL);
if (!L_6)
{
goto IL_0033;
}
}
{
// property.EnableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_7 = ___property0;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_8 = (*(InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_7);
InputActionPropertyExtensions_EnableDirectAction_mA8846AAA44837965CF99FD82C518A86D6479AB46(L_8, NULL);
}
IL_0033:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedContinuousTurnProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedContinuousTurnProvider__ctor_mA0E25E1DE63BFF2460D4A9BDF269A4A576D2635B (ActionBasedContinuousTurnProvider_tCA3C9F6BA1F4BDF17A4A220664F8B22885049FF7* __this, const RuntimeMethod* method)
{
{
ContinuousTurnProviderBase__ctor_mA41947ADBB4D280EC0EAB152CA5653FE7315B606(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::get_moveSpeed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ContinuousMoveProviderBase_get_moveSpeed_m00ACE6C470CA370D6C6FEE014B6BF2D14C451DD5 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, const RuntimeMethod* method)
{
{
// get => m_MoveSpeed;
float L_0 = __this->___m_MoveSpeed_8;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::set_moveSpeed(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousMoveProviderBase_set_moveSpeed_m6BC9C1AF5A210F6F2DCA2A40172B75C5F779C395 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_MoveSpeed = value;
float L_0 = ___value0;
__this->___m_MoveSpeed_8 = L_0;
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::get_enableStrafe()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContinuousMoveProviderBase_get_enableStrafe_m9758D9CDEB6112A8394AED688394C9FF8306E392 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, const RuntimeMethod* method)
{
{
// get => m_EnableStrafe;
bool L_0 = __this->___m_EnableStrafe_9;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::set_enableStrafe(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousMoveProviderBase_set_enableStrafe_mE7F22E383EA4CE1CAB919EF4FCF5E90E219A0DB4 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, bool ___value0, const RuntimeMethod* method)
{
{
// set => m_EnableStrafe = value;
bool L_0 = ___value0;
__this->___m_EnableStrafe_9 = L_0;
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::get_useGravity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContinuousMoveProviderBase_get_useGravity_mA8680EF757EDE40AA7C53DA4B22A78DE0AE9625D (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, const RuntimeMethod* method)
{
{
// get => m_UseGravity;
bool L_0 = __this->___m_UseGravity_10;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::set_useGravity(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousMoveProviderBase_set_useGravity_mB589343669C70EAAFD0C7E679F82A97AFEA223E8 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, bool ___value0, const RuntimeMethod* method)
{
{
// set => m_UseGravity = value;
bool L_0 = ___value0;
__this->___m_UseGravity_10 = L_0;
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase/GravityApplicationMode UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::get_gravityApplicationMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ContinuousMoveProviderBase_get_gravityApplicationMode_m006349EFCBDFB54D975269A4CDA53DF65D172A39 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, const RuntimeMethod* method)
{
{
// get => m_GravityApplicationMode;
int32_t L_0 = __this->___m_GravityApplicationMode_11;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::set_gravityApplicationMode(UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase/GravityApplicationMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousMoveProviderBase_set_gravityApplicationMode_m0F358A25FD462AF9ED298DFB66F70C38856E7A66 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_GravityApplicationMode = value;
int32_t L_0 = ___value0;
__this->___m_GravityApplicationMode_11 = L_0;
return;
}
}
// UnityEngine.Transform UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::get_forwardSource()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ContinuousMoveProviderBase_get_forwardSource_mCA2A40CF7B059F8096B8DA7EE022417D5E9AA89A (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, const RuntimeMethod* method)
{
{
// get => m_ForwardSource;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_0 = __this->___m_ForwardSource_12;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::set_forwardSource(UnityEngine.Transform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousMoveProviderBase_set_forwardSource_mA1CBEB304ED21A5E919AEDBC38CAD176E23C9195 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___value0, const RuntimeMethod* method)
{
{
// set => m_ForwardSource = value;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_0 = ___value0;
__this->___m_ForwardSource_12 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ForwardSource_12), (void*)L_0);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::Update()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousMoveProviderBase_Update_m0A8CFF12DE7E3239FAAC9EB63A53577E4C44242E (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
{
// var xrRig = system.xrRig;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_0;
L_0 = LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94_inline(__this, NULL);
NullCheck(L_0);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_1;
L_1 = LocomotionSystem_get_xrRig_m66C8141D2D2FACDEC33DB82CAC8ED5278DEEDDE1_inline(L_0, NULL);
// if (xrRig == null)
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_2;
L_2 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_2)
{
goto IL_0014;
}
}
{
// return;
return;
}
IL_0014:
{
// var input = ReadInput();
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
L_3 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(5 /* UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::ReadInput() */, __this);
V_0 = L_3;
// var translationInWorldSpace = ComputeDesiredMove(input);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = V_0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5;
L_5 = VirtualFuncInvoker1< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(6 /* UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::ComputeDesiredMove(UnityEngine.Vector2) */, __this, L_4);
V_1 = L_5;
// switch (m_GravityApplicationMode)
int32_t L_6 = __this->___m_GravityApplicationMode_11;
V_2 = L_6;
int32_t L_7 = V_2;
if (!L_7)
{
goto IL_0039;
}
}
{
int32_t L_8 = V_2;
if ((!(((uint32_t)L_8) == ((uint32_t)1))))
{
goto IL_005f;
}
}
{
// MoveRig(translationInWorldSpace);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9 = V_1;
VirtualActionInvoker1< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(7 /* System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::MoveRig(UnityEngine.Vector3) */, __this, L_9);
// break;
return;
}
IL_0039:
{
// if (input != Vector2.zero || m_VerticalVelocity != Vector3.zero)
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
L_11 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
bool L_12;
L_12 = Vector2_op_Inequality_mCF3935E28AC7B30B279F07F9321CC56718E1311A_inline(L_10, L_11, NULL);
if (L_12)
{
goto IL_0058;
}
}
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13 = __this->___m_VerticalVelocity_15;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_14;
L_14 = Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83_inline(NULL);
bool L_15;
L_15 = Vector3_op_Inequality_m6A7FB1C9E9DE194708997BFA24C6E238D92D908E_inline(L_13, L_14, NULL);
if (!L_15)
{
goto IL_005f;
}
}
IL_0058:
{
// MoveRig(translationInWorldSpace);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16 = V_1;
VirtualActionInvoker1< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(7 /* System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::MoveRig(UnityEngine.Vector3) */, __this, L_16);
}
IL_005f:
{
// }
return;
}
}
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::ComputeDesiredMove(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ContinuousMoveProviderBase_ComputeDesiredMove_mDB77C9D41306941782F36D150B7CD774E1E3A702 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___input0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* V_0 = NULL;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
memset((&V_1), 0, sizeof(V_1));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
memset((&V_2), 0, sizeof(V_2));
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_3 = NULL;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_4;
memset((&V_4), 0, sizeof(V_4));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_5;
memset((&V_5), 0, sizeof(V_5));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_6;
memset((&V_6), 0, sizeof(V_6));
float G_B7_0 = 0.0f;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* G_B9_0 = NULL;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* G_B8_0 = NULL;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* G_B10_0 = NULL;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* G_B10_1 = NULL;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* G_B12_0 = NULL;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* G_B11_0 = NULL;
{
// if (input == Vector2.zero)
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___input0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
L_1 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
bool L_2;
L_2 = Vector2_op_Equality_m5447BF12C18339431AB8AF02FA463C543D88D463_inline(L_0, L_1, NULL);
if (!L_2)
{
goto IL_0013;
}
}
{
// return Vector3.zero;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
L_3 = Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83_inline(NULL);
return L_3;
}
IL_0013:
{
// var xrRig = system.xrRig;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_4;
L_4 = LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94_inline(__this, NULL);
NullCheck(L_4);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_5;
L_5 = LocomotionSystem_get_xrRig_m66C8141D2D2FACDEC33DB82CAC8ED5278DEEDDE1_inline(L_4, NULL);
V_0 = L_5;
// if (xrRig == null)
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_6 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_6, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_7)
{
goto IL_002e;
}
}
{
// return Vector3.zero;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8;
L_8 = Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83_inline(NULL);
return L_8;
}
IL_002e:
{
// var inputMove = Vector3.ClampMagnitude(new Vector3(m_EnableStrafe ? input.x : 0f, 0f, input.y), 1f);
bool L_9 = __this->___m_EnableStrafe_9;
if (L_9)
{
goto IL_003d;
}
}
{
G_B7_0 = (0.0f);
goto IL_0043;
}
IL_003d:
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = ___input0;
float L_11 = L_10.___x_0;
G_B7_0 = L_11;
}
IL_0043:
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12 = ___input0;
float L_13 = L_12.___y_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_14;
memset((&L_14), 0, sizeof(L_14));
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_14), G_B7_0, (0.0f), L_13, /*hidden argument*/NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_15;
L_15 = Vector3_ClampMagnitude_mDEF1E073986286F6EFA1552A5D0E1A0F6CBF4500_inline(L_14, (1.0f), NULL);
V_1 = L_15;
// var rigTransform = xrRig.rig.transform;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_16 = V_0;
NullCheck(L_16);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_17;
L_17 = XRRig_get_rig_mE186F9F6B042C09CA316CFB7137A8CC44D49A573_inline(L_16, NULL);
NullCheck(L_17);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_18;
L_18 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_17, NULL);
// var rigUp = rigTransform.up;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_19 = L_18;
NullCheck(L_19);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20;
L_20 = Transform_get_up_mE47A9D9D96422224DD0539AA5524DA5440145BB2(L_19, NULL);
V_2 = L_20;
// var forwardSourceTransform = m_ForwardSource == null ? xrRig.cameraGameObject.transform : m_ForwardSource;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_21 = __this->___m_ForwardSource_12;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_22;
L_22 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_21, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
G_B8_0 = L_19;
if (L_22)
{
G_B9_0 = L_19;
goto IL_0086;
}
}
{
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_23 = __this->___m_ForwardSource_12;
G_B10_0 = L_23;
G_B10_1 = G_B8_0;
goto IL_0091;
}
IL_0086:
{
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_24 = V_0;
NullCheck(L_24);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_25;
L_25 = XRRig_get_cameraGameObject_m599F292919A35F8427477F95D733377B56C43A73_inline(L_24, NULL);
NullCheck(L_25);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_26;
L_26 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_25, NULL);
G_B10_0 = L_26;
G_B10_1 = G_B9_0;
}
IL_0091:
{
V_3 = G_B10_0;
// var inputForwardInWorldSpace = forwardSourceTransform.forward;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_27 = V_3;
NullCheck(L_27);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_28;
L_28 = Transform_get_forward_mFCFACF7165FDAB21E80E384C494DF278386CEE2F(L_27, NULL);
V_4 = L_28;
// if (Mathf.Approximately(Mathf.Abs(Vector3.Dot(inputForwardInWorldSpace, rigUp)), 1f))
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_29 = V_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_30 = V_2;
float L_31;
L_31 = Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8_inline(L_29, L_30, NULL);
float L_32;
L_32 = fabsf(L_31);
bool L_33;
L_33 = Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline(L_32, (1.0f), NULL);
G_B11_0 = G_B10_1;
if (!L_33)
{
G_B12_0 = G_B10_1;
goto IL_00c0;
}
}
{
// inputForwardInWorldSpace = -forwardSourceTransform.up;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_34 = V_3;
NullCheck(L_34);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_35;
L_35 = Transform_get_up_mE47A9D9D96422224DD0539AA5524DA5440145BB2(L_34, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_36;
L_36 = Vector3_op_UnaryNegation_m3AC523A7BED6E843165BDF598690F0560D8CAA63_inline(L_35, NULL);
V_4 = L_36;
G_B12_0 = G_B11_0;
}
IL_00c0:
{
// var inputForwardProjectedInWorldSpace = Vector3.ProjectOnPlane(inputForwardInWorldSpace, rigUp);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_37 = V_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_38 = V_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_39;
L_39 = Vector3_ProjectOnPlane_mCAFA9F9416EA4740DCA8757B6E52260BF536770A_inline(L_37, L_38, NULL);
V_5 = L_39;
// var forwardRotation = Quaternion.FromToRotation(rigTransform.forward, inputForwardProjectedInWorldSpace);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_40 = G_B12_0;
NullCheck(L_40);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_41;
L_41 = Transform_get_forward_mFCFACF7165FDAB21E80E384C494DF278386CEE2F(L_40, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_42 = V_5;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_43;
L_43 = Quaternion_FromToRotation_m041093DBB23CB3641118310881D6B7746E3B8418(L_41, L_42, NULL);
// var translationInRigSpace = forwardRotation * inputMove * (m_MoveSpeed * Time.deltaTime);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_44 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_45;
L_45 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_43, L_44, NULL);
float L_46 = __this->___m_MoveSpeed_8;
float L_47;
L_47 = Time_get_deltaTime_m7AB6BFA101D83E1D8F2EF3D5A128AEE9DDBF1A6D(NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_48;
L_48 = Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline(L_45, ((float)il2cpp_codegen_multiply((float)L_46, (float)L_47)), NULL);
V_6 = L_48;
// var translationInWorldSpace = rigTransform.TransformDirection(translationInRigSpace);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_49 = V_6;
NullCheck(L_40);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_50;
L_50 = Transform_TransformDirection_m9BE1261DF2D48B7A4A27D31EE24D2D97F89E7757(L_40, L_49, NULL);
// return translationInWorldSpace;
return L_50;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::MoveRig(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousMoveProviderBase_MoveRig_m3793312F1A333B733E60E373DED0938CC8BF5DF2 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___translationInWorldSpace0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* V_0 = NULL;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// var xrRig = system.xrRig;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_0;
L_0 = LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94_inline(__this, NULL);
NullCheck(L_0);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_1;
L_1 = LocomotionSystem_get_xrRig_m66C8141D2D2FACDEC33DB82CAC8ED5278DEEDDE1_inline(L_0, NULL);
V_0 = L_1;
// if (xrRig == null)
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_2 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_3)
{
goto IL_0016;
}
}
{
// return;
return;
}
IL_0016:
{
// FindCharacterController();
ContinuousMoveProviderBase_FindCharacterController_m55140569E91D84284B2CC949BDBEB4A162F1B1CB(__this, NULL);
// var motion = translationInWorldSpace;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___translationInWorldSpace0;
V_1 = L_4;
// if (m_CharacterController != null && m_CharacterController.enabled)
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_5 = __this->___m_CharacterController_13;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_6;
L_6 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_5, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_6)
{
goto IL_00ba;
}
}
{
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_7 = __this->___m_CharacterController_13;
NullCheck(L_7);
bool L_8;
L_8 = Collider_get_enabled_mDBFB488088ADB14C8016A83EF445653AC5A4A12B(L_7, NULL);
if (!L_8)
{
goto IL_00ba;
}
}
{
// if (m_CharacterController.isGrounded || !m_UseGravity)
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_9 = __this->___m_CharacterController_13;
NullCheck(L_9);
bool L_10;
L_10 = CharacterController_get_isGrounded_m548072EC190878925C0F97595B6C307714EFDD67(L_9, NULL);
if (L_10)
{
goto IL_0051;
}
}
{
bool L_11 = __this->___m_UseGravity_10;
if (L_11)
{
goto IL_005e;
}
}
IL_0051:
{
// m_VerticalVelocity = Vector3.zero;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
L_12 = Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83_inline(NULL);
__this->___m_VerticalVelocity_15 = L_12;
goto IL_007e;
}
IL_005e:
{
// m_VerticalVelocity += Physics.gravity * Time.deltaTime;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13 = __this->___m_VerticalVelocity_15;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_14;
L_14 = Physics_get_gravity_m3A4C8594035C638686900919118B176B9F0A6F81(NULL);
float L_15;
L_15 = Time_get_deltaTime_m7AB6BFA101D83E1D8F2EF3D5A128AEE9DDBF1A6D(NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16;
L_16 = Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline(L_14, L_15, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17;
L_17 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_13, L_16, NULL);
__this->___m_VerticalVelocity_15 = L_17;
}
IL_007e:
{
// motion += m_VerticalVelocity * Time.deltaTime;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_18 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_19 = __this->___m_VerticalVelocity_15;
float L_20;
L_20 = Time_get_deltaTime_m7AB6BFA101D83E1D8F2EF3D5A128AEE9DDBF1A6D(NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21;
L_21 = Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline(L_19, L_20, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_22;
L_22 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_18, L_21, NULL);
V_1 = L_22;
// if (CanBeginLocomotion() && BeginLocomotion())
bool L_23;
L_23 = LocomotionProvider_CanBeginLocomotion_m3DE86A342E4B792E125FE73F2FE933BE99EDA9F0(__this, NULL);
if (!L_23)
{
goto IL_00ed;
}
}
{
bool L_24;
L_24 = LocomotionProvider_BeginLocomotion_mFB221E462FEC6E933C9161E30271678311D1AAEF(__this, NULL);
if (!L_24)
{
goto IL_00ed;
}
}
{
// m_CharacterController.Move(motion);
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_25 = __this->___m_CharacterController_13;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_26 = V_1;
NullCheck(L_25);
int32_t L_27;
L_27 = CharacterController_Move_mE3F7AC1B4A2D6955980811C088B68ED3A31D2DA4(L_25, L_26, NULL);
// EndLocomotion();
bool L_28;
L_28 = LocomotionProvider_EndLocomotion_m64CC4C14527FF9F8D2956159425A2208E4612ECB(__this, NULL);
return;
}
IL_00ba:
{
// if (CanBeginLocomotion() && BeginLocomotion())
bool L_29;
L_29 = LocomotionProvider_CanBeginLocomotion_m3DE86A342E4B792E125FE73F2FE933BE99EDA9F0(__this, NULL);
if (!L_29)
{
goto IL_00ed;
}
}
{
bool L_30;
L_30 = LocomotionProvider_BeginLocomotion_mFB221E462FEC6E933C9161E30271678311D1AAEF(__this, NULL);
if (!L_30)
{
goto IL_00ed;
}
}
{
// xrRig.rig.transform.position += motion;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_31 = V_0;
NullCheck(L_31);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_32;
L_32 = XRRig_get_rig_mE186F9F6B042C09CA316CFB7137A8CC44D49A573_inline(L_31, NULL);
NullCheck(L_32);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_33;
L_33 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_32, NULL);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_34 = L_33;
NullCheck(L_34);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_35;
L_35 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_34, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_36 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_37;
L_37 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_35, L_36, NULL);
NullCheck(L_34);
Transform_set_position_mA1A817124BB41B685043DED2A9BA48CDF37C4156(L_34, L_37, NULL);
// EndLocomotion();
bool L_38;
L_38 = LocomotionProvider_EndLocomotion_m64CC4C14527FF9F8D2956159425A2208E4612ECB(__this, NULL);
}
IL_00ed:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::FindCharacterController()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousMoveProviderBase_FindCharacterController_m55140569E91D84284B2CC949BDBEB4A162F1B1CB (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisCharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A_m4848A6B0B029AE9B1F4FE4CC1FDE5E3CF030D325_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* V_0 = NULL;
{
// var xrRig = system.xrRig;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_0;
L_0 = LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94_inline(__this, NULL);
NullCheck(L_0);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_1;
L_1 = LocomotionSystem_get_xrRig_m66C8141D2D2FACDEC33DB82CAC8ED5278DEEDDE1_inline(L_0, NULL);
V_0 = L_1;
// if (xrRig == null)
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_2 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_3)
{
goto IL_0016;
}
}
{
// return;
return;
}
IL_0016:
{
// if (m_CharacterController == null && !m_AttemptedGetCharacterController)
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_4 = __this->___m_CharacterController_13;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_5)
{
goto IL_0044;
}
}
{
bool L_6 = __this->___m_AttemptedGetCharacterController_14;
if (L_6)
{
goto IL_0044;
}
}
{
// m_CharacterController = xrRig.rig.GetComponent<CharacterController>();
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_7 = V_0;
NullCheck(L_7);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_8;
L_8 = XRRig_get_rig_mE186F9F6B042C09CA316CFB7137A8CC44D49A573_inline(L_7, NULL);
NullCheck(L_8);
CharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A* L_9;
L_9 = GameObject_GetComponent_TisCharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A_m4848A6B0B029AE9B1F4FE4CC1FDE5E3CF030D325(L_8, GameObject_GetComponent_TisCharacterController_t847C1A2719F60547D7D6077B648D6CE2D1EF3A6A_m4848A6B0B029AE9B1F4FE4CC1FDE5E3CF030D325_RuntimeMethod_var);
__this->___m_CharacterController_13 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CharacterController_13), (void*)L_9);
// m_AttemptedGetCharacterController = true;
__this->___m_AttemptedGetCharacterController_14 = (bool)1;
}
IL_0044:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousMoveProviderBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousMoveProviderBase__ctor_m1AB119E41778C58681F1785ECE37EF8270A24EA0 (ContinuousMoveProviderBase_t63CEB8C11A9935A166BE324AA48EBD5035ED635A* __this, const RuntimeMethod* method)
{
{
// float m_MoveSpeed = 1f;
__this->___m_MoveSpeed_8 = (1.0f);
// bool m_EnableStrafe = true;
__this->___m_EnableStrafe_9 = (bool)1;
// bool m_UseGravity = true;
__this->___m_UseGravity_10 = (bool)1;
LocomotionProvider__ctor_m402BA4925BA100FA69742DD86D76BA0ECB39C7E7(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase::get_turnSpeed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ContinuousTurnProviderBase_get_turnSpeed_mE485FB7889080A4924E65F7A3B5BDB73C53F96E0 (ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A* __this, const RuntimeMethod* method)
{
{
// get => m_TurnSpeed;
float L_0 = __this->___m_TurnSpeed_8;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase::set_turnSpeed(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousTurnProviderBase_set_turnSpeed_m0AB633C39385D76B8E67AC90B437C1B52D1B3E11 (ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_TurnSpeed = value;
float L_0 = ___value0;
__this->___m_TurnSpeed_8 = L_0;
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase::Update()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousTurnProviderBase_Update_mDB0CEC76A176AF26216BFA5EA9F1E22A5D0CE9DF (ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A* __this, const RuntimeMethod* method)
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
float V_1 = 0.0f;
{
// var input = ReadInput();
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
L_0 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(5 /* UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase::ReadInput() */, __this);
V_0 = L_0;
// var turnAmount = GetTurnAmount(input);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = V_0;
float L_2;
L_2 = VirtualFuncInvoker1< float, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(6 /* System.Single UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase::GetTurnAmount(UnityEngine.Vector2) */, __this, L_1);
V_1 = L_2;
// TurnRig(turnAmount);
float L_3 = V_1;
ContinuousTurnProviderBase_TurnRig_mA600D2931DEB1C2D38A61A1E909412AB89230B48(__this, L_3, NULL);
// }
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase::GetTurnAmount(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ContinuousTurnProviderBase_GetTurnAmount_mD19AF31C63223D9F9721D757C7A32FD1D0F674BC (ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___input0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// if (input == Vector2.zero)
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___input0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
L_1 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
bool L_2;
L_2 = Vector2_op_Equality_m5447BF12C18339431AB8AF02FA463C543D88D463_inline(L_0, L_1, NULL);
if (!L_2)
{
goto IL_0013;
}
}
{
// return 0f;
return (0.0f);
}
IL_0013:
{
// var cardinal = CardinalUtility.GetNearestCardinal(input);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___input0;
int32_t L_4;
L_4 = CardinalUtility_GetNearestCardinal_m6761662410E5FAE1002827B1863A7A2871B85734(L_3, NULL);
V_0 = L_4;
int32_t L_5 = V_0;
if ((!(((uint32_t)L_5) > ((uint32_t)1))))
{
goto IL_0045;
}
}
{
int32_t L_6 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)2))) <= ((uint32_t)1))))
{
goto IL_0045;
}
}
{
// return input.magnitude * (Mathf.Sign(input.x) * m_TurnSpeed * Time.deltaTime);
float L_7;
L_7 = Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE_inline((&___input0), NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8 = ___input0;
float L_9 = L_8.___x_0;
float L_10;
L_10 = Mathf_Sign_m015249B312238B8DCA3493489FAFC3055E2FFEF8_inline(L_9, NULL);
float L_11 = __this->___m_TurnSpeed_8;
float L_12;
L_12 = Time_get_deltaTime_m7AB6BFA101D83E1D8F2EF3D5A128AEE9DDBF1A6D(NULL);
return ((float)il2cpp_codegen_multiply((float)L_7, (float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)L_10, (float)L_11)), (float)L_12))));
}
IL_0045:
{
// return 0f;
return (0.0f);
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase::TurnRig(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousTurnProviderBase_TurnRig_mA600D2931DEB1C2D38A61A1E909412AB89230B48 (ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A* __this, float ___turnAmount0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* V_0 = NULL;
{
// if (Mathf.Approximately( turnAmount, 0f))
float L_0 = ___turnAmount0;
bool L_1;
L_1 = Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline(L_0, (0.0f), NULL);
if (!L_1)
{
goto IL_000e;
}
}
{
// return;
return;
}
IL_000e:
{
// if (CanBeginLocomotion() && BeginLocomotion())
bool L_2;
L_2 = LocomotionProvider_CanBeginLocomotion_m3DE86A342E4B792E125FE73F2FE933BE99EDA9F0(__this, NULL);
if (!L_2)
{
goto IL_0042;
}
}
{
bool L_3;
L_3 = LocomotionProvider_BeginLocomotion_mFB221E462FEC6E933C9161E30271678311D1AAEF(__this, NULL);
if (!L_3)
{
goto IL_0042;
}
}
{
// var xrRig = system.xrRig;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_4;
L_4 = LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94_inline(__this, NULL);
NullCheck(L_4);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_5;
L_5 = LocomotionSystem_get_xrRig_m66C8141D2D2FACDEC33DB82CAC8ED5278DEEDDE1_inline(L_4, NULL);
V_0 = L_5;
// if (xrRig != null)
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_6 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_6, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_7)
{
goto IL_003b;
}
}
{
// xrRig.RotateAroundCameraUsingRigUp(turnAmount);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_8 = V_0;
float L_9 = ___turnAmount0;
NullCheck(L_8);
bool L_10;
L_10 = XRRig_RotateAroundCameraUsingRigUp_mE9DB5E392764B04743D17BC410E1DB5D37A10CC2(L_8, L_9, NULL);
}
IL_003b:
{
// EndLocomotion();
bool L_11;
L_11 = LocomotionProvider_EndLocomotion_m64CC4C14527FF9F8D2956159425A2208E4612ECB(__this, NULL);
}
IL_0042:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ContinuousTurnProviderBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuousTurnProviderBase__ctor_mA41947ADBB4D280EC0EAB152CA5653FE7315B606 (ContinuousTurnProviderBase_t0E542ED995403FB0B65FD71ABBA48AD871149E6A* __this, const RuntimeMethod* method)
{
{
// float m_TurnSpeed = 60f;
__this->___m_TurnSpeed_8 = (60.0f);
LocomotionProvider__ctor_m402BA4925BA100FA69742DD86D76BA0ECB39C7E7(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider/InputAxes UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::get_inputBinding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DeviceBasedContinuousMoveProvider_get_inputBinding_mDDE00466CC8BCE56238FD5430A3692F3506DF11C (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, const RuntimeMethod* method)
{
{
// get => m_InputBinding;
int32_t L_0 = __this->___m_InputBinding_16;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::set_inputBinding(UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider/InputAxes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousMoveProvider_set_inputBinding_mDC6908FBDCCD7D6085F21A9AD01765D8F02767D2 (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_InputBinding = value;
int32_t L_0 = ___value0;
__this->___m_InputBinding_16 = L_0;
return;
}
}
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController> UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::get_controllers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* DeviceBasedContinuousMoveProvider_get_controllers_m34D4DC4440DF930E318BDE0E66A03B51D79C0CFD (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, const RuntimeMethod* method)
{
{
// get => m_Controllers;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = __this->___m_Controllers_17;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::set_controllers(System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousMoveProvider_set_controllers_mA94C7B5930A60D1467ACC361DB69CD62A8D2A8D0 (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* ___value0, const RuntimeMethod* method)
{
{
// set => m_Controllers = value;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = ___value0;
__this->___m_Controllers_17 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Controllers_17), (void*)L_0);
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::get_deadzoneMin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DeviceBasedContinuousMoveProvider_get_deadzoneMin_mA570A98208C7C9C2F0F9553A3EEBC6554FB4FF8C (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, const RuntimeMethod* method)
{
{
// get => m_DeadzoneMin;
float L_0 = __this->___m_DeadzoneMin_18;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::set_deadzoneMin(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousMoveProvider_set_deadzoneMin_m574BE6DBF774C842B818DB774A273314E8612872 (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_DeadzoneMin = value;
float L_0 = ___value0;
__this->___m_DeadzoneMin_18 = L_0;
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::get_deadzoneMax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DeviceBasedContinuousMoveProvider_get_deadzoneMax_m63750776276B2BF5FDD2646BDE427803D7AB9AA0 (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, const RuntimeMethod* method)
{
{
// get => m_DeadzoneMax;
float L_0 = __this->___m_DeadzoneMax_19;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::set_deadzoneMax(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousMoveProvider_set_deadzoneMax_m95781010EFD332ADAF75E1102DFC21DF2F7DFBCE (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_DeadzoneMax = value;
float L_0 = ___value0;
__this->___m_DeadzoneMax_19 = L_0;
return;
}
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::ReadInput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 DeviceBasedContinuousMoveProvider_ReadInput_m8D4042FC29FAF250497C4B79E492ECFB215ABC7B (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mE3735CD7D71FB40C90C7625AEE4A7F16E2EEC53F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* V_3 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_4;
memset((&V_4), 0, sizeof(V_4));
InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD V_5;
memset((&V_5), 0, sizeof(V_5));
{
// if (m_Controllers.Count == 0)
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = __this->___m_Controllers_17;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_inline(L_0, List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_RuntimeMethod_var);
if (L_1)
{
goto IL_0013;
}
}
{
// return Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
L_2 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
return L_2;
}
IL_0013:
{
// var input = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
L_3 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
V_0 = L_3;
// var feature = k_Vec2UsageList[(int)m_InputBinding];
il2cpp_codegen_runtime_class_init_inline(DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC_il2cpp_TypeInfo_var);
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_4 = ((DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC_StaticFields*)il2cpp_codegen_static_fields_for(DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC_il2cpp_TypeInfo_var))->___k_Vec2UsageList_20;
int32_t L_5 = __this->___m_InputBinding_16;
NullCheck(L_4);
int32_t L_6 = L_5;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_1 = L_7;
// for (var i = 0; i < m_Controllers.Count; ++i)
V_2 = 0;
goto IL_0078;
}
IL_002e:
{
// var controller = m_Controllers[i] as XRController;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_8 = __this->___m_Controllers_17;
int32_t L_9 = V_2;
NullCheck(L_8);
XRBaseController_t44C1BB30A7E1D279DD2508F34D3352B33A9AD60C* L_10;
L_10 = List_1_get_Item_mE3735CD7D71FB40C90C7625AEE4A7F16E2EEC53F(L_8, L_9, List_1_get_Item_mE3735CD7D71FB40C90C7625AEE4A7F16E2EEC53F_RuntimeMethod_var);
V_3 = ((XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F*)IsInstClass((RuntimeObject*)L_10, XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F_il2cpp_TypeInfo_var));
// if (controller != null &&
// controller.enableInputActions &&
// controller.inputDevice.TryGetFeatureValue(feature, out var controllerInput))
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* L_11 = V_3;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_12;
L_12 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_11, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_12)
{
goto IL_0074;
}
}
{
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* L_13 = V_3;
NullCheck(L_13);
bool L_14;
L_14 = XRBaseController_get_enableInputActions_m4E285A2F619049FF60318453228523C193C9E8CE_inline(L_13, NULL);
if (!L_14)
{
goto IL_0074;
}
}
{
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* L_15 = V_3;
NullCheck(L_15);
InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD L_16;
L_16 = XRController_get_inputDevice_m584AA43BBBC4CD0FAD047217DDB64DCD35281389(L_15, NULL);
V_5 = L_16;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_17 = V_1;
bool L_18;
L_18 = InputDevice_TryGetFeatureValue_mB2C15D1FC747DA9FB5958FA17E77049886FB3BBA((&V_5), L_17, (&V_4), NULL);
if (!L_18)
{
goto IL_0074;
}
}
{
// input += GetDeadzoneAdjustedValue(controllerInput);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_20 = V_4;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21;
L_21 = DeviceBasedContinuousMoveProvider_GetDeadzoneAdjustedValue_m90BE91A308931611184788A6B87DA7F4C0BE8606(__this, L_20, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22;
L_22 = Vector2_op_Addition_m704B5B98EAFE885978381E21B7F89D9DF83C2A60_inline(L_19, L_21, NULL);
V_0 = L_22;
}
IL_0074:
{
// for (var i = 0; i < m_Controllers.Count; ++i)
int32_t L_23 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_0078:
{
// for (var i = 0; i < m_Controllers.Count; ++i)
int32_t L_24 = V_2;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_25 = __this->___m_Controllers_17;
NullCheck(L_25);
int32_t L_26;
L_26 = List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_inline(L_25, List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_RuntimeMethod_var);
if ((((int32_t)L_24) < ((int32_t)L_26)))
{
goto IL_002e;
}
}
{
// return input;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_27 = V_0;
return L_27;
}
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::GetDeadzoneAdjustedValue(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 DeviceBasedContinuousMoveProvider_GetDeadzoneAdjustedValue_m90BE91A308931611184788A6B87DA7F4C0BE8606 (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float V_1 = 0.0f;
{
// var magnitude = value.magnitude;
float L_0;
L_0 = Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE_inline((&___value0), NULL);
V_0 = L_0;
// var newMagnitude = GetDeadzoneAdjustedValue(magnitude);
float L_1 = V_0;
float L_2;
L_2 = DeviceBasedContinuousMoveProvider_GetDeadzoneAdjustedValue_m6E80A90408CDC315BCAEB19795923D3D0F848B42(__this, L_1, NULL);
V_1 = L_2;
// if (Mathf.Approximately(newMagnitude, 0f))
float L_3 = V_1;
bool L_4;
L_4 = Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline(L_3, (0.0f), NULL);
if (!L_4)
{
goto IL_0026;
}
}
{
// value = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
L_5 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
___value0 = L_5;
goto IL_0031;
}
IL_0026:
{
// value *= newMagnitude / magnitude;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___value0;
float L_7 = V_1;
float L_8 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
L_9 = Vector2_op_Multiply_m4EEB2FF3F4830390A53CE9B6076FB31801D65EED_inline(L_6, ((float)((float)L_7/(float)L_8)), NULL);
___value0 = L_9;
}
IL_0031:
{
// return value;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = ___value0;
return L_10;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::GetDeadzoneAdjustedValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DeviceBasedContinuousMoveProvider_GetDeadzoneAdjustedValue_m6E80A90408CDC315BCAEB19795923D3D0F848B42 (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, float ___value0, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float V_1 = 0.0f;
float V_2 = 0.0f;
{
// var min = m_DeadzoneMin;
float L_0 = __this->___m_DeadzoneMin_18;
V_0 = L_0;
// var max = m_DeadzoneMax;
float L_1 = __this->___m_DeadzoneMax_19;
V_1 = L_1;
// var absValue = Mathf.Abs(value);
float L_2 = ___value0;
float L_3;
L_3 = fabsf(L_2);
V_2 = L_3;
// if (absValue < min)
float L_4 = V_2;
float L_5 = V_0;
if ((!(((float)L_4) < ((float)L_5))))
{
goto IL_001f;
}
}
{
// return 0f;
return (0.0f);
}
IL_001f:
{
// if (absValue > max)
float L_6 = V_2;
float L_7 = V_1;
if ((!(((float)L_6) > ((float)L_7))))
{
goto IL_002a;
}
}
{
// return Mathf.Sign(value);
float L_8 = ___value0;
float L_9;
L_9 = Mathf_Sign_m015249B312238B8DCA3493489FAFC3055E2FFEF8_inline(L_8, NULL);
return L_9;
}
IL_002a:
{
// return Mathf.Sign(value) * ((absValue - min) / (max - min));
float L_10 = ___value0;
float L_11;
L_11 = Mathf_Sign_m015249B312238B8DCA3493489FAFC3055E2FFEF8_inline(L_10, NULL);
float L_12 = V_2;
float L_13 = V_0;
float L_14 = V_1;
float L_15 = V_0;
return ((float)il2cpp_codegen_multiply((float)L_11, (float)((float)((float)((float)il2cpp_codegen_subtract((float)L_12, (float)L_13))/(float)((float)il2cpp_codegen_subtract((float)L_14, (float)L_15))))));
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousMoveProvider__ctor_m109CBDC9183E36A999EAC8C21A85D86D509A9447 (DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m724463B39B944A8F8354B96833F40DDC56293D8E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// List<XRBaseController> m_Controllers = new List<XRBaseController>();
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = (List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30*)il2cpp_codegen_object_new(List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30_il2cpp_TypeInfo_var);
List_1__ctor_m724463B39B944A8F8354B96833F40DDC56293D8E(L_0, /*hidden argument*/List_1__ctor_m724463B39B944A8F8354B96833F40DDC56293D8E_RuntimeMethod_var);
__this->___m_Controllers_17 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Controllers_17), (void*)L_0);
// float m_DeadzoneMin = 0.125f;
__this->___m_DeadzoneMin_18 = (0.125f);
// float m_DeadzoneMax = 0.925f;
__this->___m_DeadzoneMax_19 = (0.925000012f);
ContinuousMoveProviderBase__ctor_m1AB119E41778C58681F1785ECE37EF8270A24EA0(__this, NULL);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousMoveProvider::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousMoveProvider__cctor_m2373127C6AB1D6B7FF0072834CFA95CE71EAA730 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static readonly InputFeatureUsage<Vector2>[] k_Vec2UsageList =
// {
// CommonUsages.primary2DAxis,
// CommonUsages.secondary2DAxis,
// };
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_0 = (InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91*)(InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91*)SZArrayNew(InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91_il2cpp_TypeInfo_var, (uint32_t)2);
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_1 = L_0;
il2cpp_codegen_runtime_class_init_inline(CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var);
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_2 = ((CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_StaticFields*)il2cpp_codegen_static_fields_for(CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var))->___primary2DAxis_17;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C)L_2);
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_3 = L_1;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_4 = ((CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_StaticFields*)il2cpp_codegen_static_fields_for(CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var))->___secondary2DAxis_18;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C)L_4);
((DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC_StaticFields*)il2cpp_codegen_static_fields_for(DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC_il2cpp_TypeInfo_var))->___k_Vec2UsageList_20 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC_StaticFields*)il2cpp_codegen_static_fields_for(DeviceBasedContinuousMoveProvider_t26EA277F986CB2367649F48026BF185B3714C8EC_il2cpp_TypeInfo_var))->___k_Vec2UsageList_20), (void*)L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider/InputAxes UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::get_inputBinding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DeviceBasedContinuousTurnProvider_get_inputBinding_mBA9F1D47A5C8A8393289615FD0EDCD198DBC2F53 (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, const RuntimeMethod* method)
{
{
// get => m_InputBinding;
int32_t L_0 = __this->___m_InputBinding_9;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::set_inputBinding(UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider/InputAxes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousTurnProvider_set_inputBinding_m4E9EAF677F30334229F46D1E119B8989429039BC (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_InputBinding = value;
int32_t L_0 = ___value0;
__this->___m_InputBinding_9 = L_0;
return;
}
}
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController> UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::get_controllers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* DeviceBasedContinuousTurnProvider_get_controllers_m99326439026E816417E91F15A5AC84DF591EED14 (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, const RuntimeMethod* method)
{
{
// get => m_Controllers;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = __this->___m_Controllers_10;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::set_controllers(System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousTurnProvider_set_controllers_m8A2E5DFDBE6134F9B799766B202A40D21A54F2F0 (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* ___value0, const RuntimeMethod* method)
{
{
// set => m_Controllers = value;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = ___value0;
__this->___m_Controllers_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Controllers_10), (void*)L_0);
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::get_deadzoneMin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DeviceBasedContinuousTurnProvider_get_deadzoneMin_m556117BFD91F788969FA0298E0375B320C3EF63E (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, const RuntimeMethod* method)
{
{
// get => m_DeadzoneMin;
float L_0 = __this->___m_DeadzoneMin_11;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::set_deadzoneMin(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousTurnProvider_set_deadzoneMin_mB4A38EC2A8DED4650164207B05F85CA7FF9C3E94 (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_DeadzoneMin = value;
float L_0 = ___value0;
__this->___m_DeadzoneMin_11 = L_0;
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::get_deadzoneMax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DeviceBasedContinuousTurnProvider_get_deadzoneMax_m28ACEABA4A3ABEE45EE29EB6EAB86CDC98CF53F3 (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, const RuntimeMethod* method)
{
{
// get => m_DeadzoneMax;
float L_0 = __this->___m_DeadzoneMax_12;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::set_deadzoneMax(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousTurnProvider_set_deadzoneMax_m9C5632D1323033930E2FB374446B836947945099 (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_DeadzoneMax = value;
float L_0 = ___value0;
__this->___m_DeadzoneMax_12 = L_0;
return;
}
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::ReadInput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 DeviceBasedContinuousTurnProvider_ReadInput_m5BFBB8DE35D3636C1782543CB9400233B133C895 (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mE3735CD7D71FB40C90C7625AEE4A7F16E2EEC53F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* V_3 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_4;
memset((&V_4), 0, sizeof(V_4));
InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD V_5;
memset((&V_5), 0, sizeof(V_5));
{
// if (m_Controllers.Count == 0)
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = __this->___m_Controllers_10;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_inline(L_0, List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_RuntimeMethod_var);
if (L_1)
{
goto IL_0013;
}
}
{
// return Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
L_2 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
return L_2;
}
IL_0013:
{
// var input = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
L_3 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
V_0 = L_3;
// var feature = k_Vec2UsageList[(int)m_InputBinding];
il2cpp_codegen_runtime_class_init_inline(DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118_il2cpp_TypeInfo_var);
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_4 = ((DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118_StaticFields*)il2cpp_codegen_static_fields_for(DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118_il2cpp_TypeInfo_var))->___k_Vec2UsageList_13;
int32_t L_5 = __this->___m_InputBinding_9;
NullCheck(L_4);
int32_t L_6 = L_5;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_1 = L_7;
// for (var i = 0; i < m_Controllers.Count; ++i)
V_2 = 0;
goto IL_0078;
}
IL_002e:
{
// var controller = m_Controllers[i] as XRController;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_8 = __this->___m_Controllers_10;
int32_t L_9 = V_2;
NullCheck(L_8);
XRBaseController_t44C1BB30A7E1D279DD2508F34D3352B33A9AD60C* L_10;
L_10 = List_1_get_Item_mE3735CD7D71FB40C90C7625AEE4A7F16E2EEC53F(L_8, L_9, List_1_get_Item_mE3735CD7D71FB40C90C7625AEE4A7F16E2EEC53F_RuntimeMethod_var);
V_3 = ((XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F*)IsInstClass((RuntimeObject*)L_10, XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F_il2cpp_TypeInfo_var));
// if (controller != null &&
// controller.enableInputActions &&
// controller.inputDevice.TryGetFeatureValue(feature, out var controllerInput))
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* L_11 = V_3;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_12;
L_12 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_11, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_12)
{
goto IL_0074;
}
}
{
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* L_13 = V_3;
NullCheck(L_13);
bool L_14;
L_14 = XRBaseController_get_enableInputActions_m4E285A2F619049FF60318453228523C193C9E8CE_inline(L_13, NULL);
if (!L_14)
{
goto IL_0074;
}
}
{
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* L_15 = V_3;
NullCheck(L_15);
InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD L_16;
L_16 = XRController_get_inputDevice_m584AA43BBBC4CD0FAD047217DDB64DCD35281389(L_15, NULL);
V_5 = L_16;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_17 = V_1;
bool L_18;
L_18 = InputDevice_TryGetFeatureValue_mB2C15D1FC747DA9FB5958FA17E77049886FB3BBA((&V_5), L_17, (&V_4), NULL);
if (!L_18)
{
goto IL_0074;
}
}
{
// input += GetDeadzoneAdjustedValue(controllerInput);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_20 = V_4;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21;
L_21 = DeviceBasedContinuousTurnProvider_GetDeadzoneAdjustedValue_m7330A75975136CD9152900A65A8A4813D5C69870(__this, L_20, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22;
L_22 = Vector2_op_Addition_m704B5B98EAFE885978381E21B7F89D9DF83C2A60_inline(L_19, L_21, NULL);
V_0 = L_22;
}
IL_0074:
{
// for (var i = 0; i < m_Controllers.Count; ++i)
int32_t L_23 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_0078:
{
// for (var i = 0; i < m_Controllers.Count; ++i)
int32_t L_24 = V_2;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_25 = __this->___m_Controllers_10;
NullCheck(L_25);
int32_t L_26;
L_26 = List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_inline(L_25, List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_RuntimeMethod_var);
if ((((int32_t)L_24) < ((int32_t)L_26)))
{
goto IL_002e;
}
}
{
// return input;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_27 = V_0;
return L_27;
}
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::GetDeadzoneAdjustedValue(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 DeviceBasedContinuousTurnProvider_GetDeadzoneAdjustedValue_m7330A75975136CD9152900A65A8A4813D5C69870 (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float V_1 = 0.0f;
{
// var magnitude = value.magnitude;
float L_0;
L_0 = Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE_inline((&___value0), NULL);
V_0 = L_0;
// var newMagnitude = GetDeadzoneAdjustedValue(magnitude);
float L_1 = V_0;
float L_2;
L_2 = DeviceBasedContinuousTurnProvider_GetDeadzoneAdjustedValue_m0359AEBBAEA030B13719A3A3084FDC1EF6535D3F(__this, L_1, NULL);
V_1 = L_2;
// if (Mathf.Approximately(newMagnitude, 0f))
float L_3 = V_1;
bool L_4;
L_4 = Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline(L_3, (0.0f), NULL);
if (!L_4)
{
goto IL_0026;
}
}
{
// value = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
L_5 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
___value0 = L_5;
goto IL_0031;
}
IL_0026:
{
// value *= newMagnitude / magnitude;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___value0;
float L_7 = V_1;
float L_8 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
L_9 = Vector2_op_Multiply_m4EEB2FF3F4830390A53CE9B6076FB31801D65EED_inline(L_6, ((float)((float)L_7/(float)L_8)), NULL);
___value0 = L_9;
}
IL_0031:
{
// return value;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = ___value0;
return L_10;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::GetDeadzoneAdjustedValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DeviceBasedContinuousTurnProvider_GetDeadzoneAdjustedValue_m0359AEBBAEA030B13719A3A3084FDC1EF6535D3F (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, float ___value0, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float V_1 = 0.0f;
float V_2 = 0.0f;
{
// var min = m_DeadzoneMin;
float L_0 = __this->___m_DeadzoneMin_11;
V_0 = L_0;
// var max = m_DeadzoneMax;
float L_1 = __this->___m_DeadzoneMax_12;
V_1 = L_1;
// var absValue = Mathf.Abs(value);
float L_2 = ___value0;
float L_3;
L_3 = fabsf(L_2);
V_2 = L_3;
// if (absValue < min)
float L_4 = V_2;
float L_5 = V_0;
if ((!(((float)L_4) < ((float)L_5))))
{
goto IL_001f;
}
}
{
// return 0f;
return (0.0f);
}
IL_001f:
{
// if (absValue > max)
float L_6 = V_2;
float L_7 = V_1;
if ((!(((float)L_6) > ((float)L_7))))
{
goto IL_002a;
}
}
{
// return Mathf.Sign(value);
float L_8 = ___value0;
float L_9;
L_9 = Mathf_Sign_m015249B312238B8DCA3493489FAFC3055E2FFEF8_inline(L_8, NULL);
return L_9;
}
IL_002a:
{
// return Mathf.Sign(value) * ((absValue - min) / (max - min));
float L_10 = ___value0;
float L_11;
L_11 = Mathf_Sign_m015249B312238B8DCA3493489FAFC3055E2FFEF8_inline(L_10, NULL);
float L_12 = V_2;
float L_13 = V_0;
float L_14 = V_1;
float L_15 = V_0;
return ((float)il2cpp_codegen_multiply((float)L_11, (float)((float)((float)((float)il2cpp_codegen_subtract((float)L_12, (float)L_13))/(float)((float)il2cpp_codegen_subtract((float)L_14, (float)L_15))))));
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousTurnProvider__ctor_m383D3502C281C05B920D91A2CE3348AB590544B9 (DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m724463B39B944A8F8354B96833F40DDC56293D8E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// List<XRBaseController> m_Controllers = new List<XRBaseController>();
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = (List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30*)il2cpp_codegen_object_new(List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30_il2cpp_TypeInfo_var);
List_1__ctor_m724463B39B944A8F8354B96833F40DDC56293D8E(L_0, /*hidden argument*/List_1__ctor_m724463B39B944A8F8354B96833F40DDC56293D8E_RuntimeMethod_var);
__this->___m_Controllers_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Controllers_10), (void*)L_0);
// float m_DeadzoneMin = 0.125f;
__this->___m_DeadzoneMin_11 = (0.125f);
// float m_DeadzoneMax = 0.925f;
__this->___m_DeadzoneMax_12 = (0.925000012f);
ContinuousTurnProviderBase__ctor_mA41947ADBB4D280EC0EAB152CA5653FE7315B606(__this, NULL);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedContinuousTurnProvider::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedContinuousTurnProvider__cctor_m6B2BF6C886E964D6806976950276810976E291D0 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static readonly InputFeatureUsage<Vector2>[] k_Vec2UsageList =
// {
// CommonUsages.primary2DAxis,
// CommonUsages.secondary2DAxis,
// };
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_0 = (InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91*)(InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91*)SZArrayNew(InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91_il2cpp_TypeInfo_var, (uint32_t)2);
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_1 = L_0;
il2cpp_codegen_runtime_class_init_inline(CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var);
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_2 = ((CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_StaticFields*)il2cpp_codegen_static_fields_for(CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var))->___primary2DAxis_17;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C)L_2);
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_3 = L_1;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_4 = ((CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_StaticFields*)il2cpp_codegen_static_fields_for(CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var))->___secondary2DAxis_18;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C)L_4);
((DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118_StaticFields*)il2cpp_codegen_static_fields_for(DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118_il2cpp_TypeInfo_var))->___k_Vec2UsageList_13 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118_StaticFields*)il2cpp_codegen_static_fields_for(DeviceBasedContinuousTurnProvider_tDE2287C08B8BA31C2AAACFA9444304B6D5B4D118_il2cpp_TypeInfo_var))->___k_Vec2UsageList_13), (void*)L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::add_startLocomotion(System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_add_startLocomotion_m788F6350336CBB47917142134CDFAE7CB268A6E7 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_0 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_1 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_2 = NULL;
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_0 = __this->___startLocomotion_4;
V_0 = L_0;
}
IL_0007:
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_1 = V_0;
V_1 = L_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_2 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)Castclass((RuntimeObject*)L_4, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var));
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7** L_5 = (&__this->___startLocomotion_4);
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_6 = V_2;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_7 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_9 = V_0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_9) == ((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::remove_startLocomotion(System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_remove_startLocomotion_mF92BE5D2EBCDA9D120F5A743CB63D42C368267EC (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_0 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_1 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_2 = NULL;
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_0 = __this->___startLocomotion_4;
V_0 = L_0;
}
IL_0007:
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_1 = V_0;
V_1 = L_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_2 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)Castclass((RuntimeObject*)L_4, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var));
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7** L_5 = (&__this->___startLocomotion_4);
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_6 = V_2;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_7 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_9 = V_0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_9) == ((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::add_beginLocomotion(System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_add_beginLocomotion_mE886C8B4354EE712934C278A497C77834B4754F0 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_0 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_1 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_2 = NULL;
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_0 = __this->___beginLocomotion_5;
V_0 = L_0;
}
IL_0007:
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_1 = V_0;
V_1 = L_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_2 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)Castclass((RuntimeObject*)L_4, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var));
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7** L_5 = (&__this->___beginLocomotion_5);
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_6 = V_2;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_7 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_9 = V_0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_9) == ((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::remove_beginLocomotion(System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_remove_beginLocomotion_mBACFA0AD5B200C844F3B0191C9312813F4696CD0 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_0 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_1 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_2 = NULL;
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_0 = __this->___beginLocomotion_5;
V_0 = L_0;
}
IL_0007:
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_1 = V_0;
V_1 = L_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_2 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)Castclass((RuntimeObject*)L_4, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var));
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7** L_5 = (&__this->___beginLocomotion_5);
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_6 = V_2;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_7 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_9 = V_0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_9) == ((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::add_endLocomotion(System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_add_endLocomotion_mB5BE7BC07AD5A5A22A5CAD63540D2A0D6D698606 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_0 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_1 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_2 = NULL;
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_0 = __this->___endLocomotion_6;
V_0 = L_0;
}
IL_0007:
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_1 = V_0;
V_1 = L_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_2 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)Castclass((RuntimeObject*)L_4, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var));
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7** L_5 = (&__this->___endLocomotion_6);
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_6 = V_2;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_7 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_9 = V_0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_9) == ((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::remove_endLocomotion(System.Action`1<UnityEngine.XR.Interaction.Toolkit.LocomotionSystem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_remove_endLocomotion_mC78E210D6096F0D694ADB7108AE7AA2132923B0D (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_0 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_1 = NULL;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* V_2 = NULL;
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_0 = __this->___endLocomotion_6;
V_0 = L_0;
}
IL_0007:
{
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_1 = V_0;
V_1 = L_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_2 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)Castclass((RuntimeObject*)L_4, Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7_il2cpp_TypeInfo_var));
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7** L_5 = (&__this->___endLocomotion_6);
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_6 = V_2;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_7 = V_1;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_9 = V_0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_9) == ((RuntimeObject*)(Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.LocomotionSystem UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::get_system()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method)
{
{
// get => m_System;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_0 = __this->___m_System_7;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::set_system(UnityEngine.XR.Interaction.Toolkit.LocomotionSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_set_system_m356CEE71E1057AAD0A615898E7E92A89E2E4664C (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* ___value0, const RuntimeMethod* method)
{
{
// set => m_System = value;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_0 = ___value0;
__this->___m_System_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_System_7), (void*)L_0);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::Awake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider_Awake_mDB71AC0528310B8B6A57E0D5D0C6E54C0E0E22EB (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_FindObjectOfType_TisLocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B_m867D5A523EFB0B4B4A6226EBE9555249C65CF210_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_System == null)
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_0 = __this->___m_System_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0019;
}
}
{
// m_System = FindObjectOfType<LocomotionSystem>();
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_2;
L_2 = Object_FindObjectOfType_TisLocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B_m867D5A523EFB0B4B4A6226EBE9555249C65CF210(Object_FindObjectOfType_TisLocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B_m867D5A523EFB0B4B4A6226EBE9555249C65CF210_RuntimeMethod_var);
__this->___m_System_7 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_System_7), (void*)L_2);
}
IL_0019:
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::CanBeginLocomotion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocomotionProvider_CanBeginLocomotion_m3DE86A342E4B792E125FE73F2FE933BE99EDA9F0 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_System == null)
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_0 = __this->___m_System_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
// return false;
return (bool)0;
}
IL_0010:
{
// return !m_System.busy;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_2 = __this->___m_System_7;
NullCheck(L_2);
bool L_3;
L_3 = LocomotionSystem_get_busy_m28D47236EB8305F858FAA903E490FF1F9D678A9F(L_2, NULL);
return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::BeginLocomotion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocomotionProvider_BeginLocomotion_mFB221E462FEC6E933C9161E30271678311D1AAEF (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_m6D24480D7E389B915C20866DC6A3BE7E48E919DA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t G_B6_0 = 0;
int32_t G_B3_0 = 0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* G_B5_0 = NULL;
int32_t G_B5_1 = 0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* G_B4_0 = NULL;
int32_t G_B4_1 = 0;
{
// if (m_System == null)
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_0 = __this->___m_System_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
// return false;
return (bool)0;
}
IL_0010:
{
// var success = m_System.RequestExclusiveOperation(this) == RequestResult.Success;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_2 = __this->___m_System_7;
NullCheck(L_2);
int32_t L_3;
L_3 = LocomotionSystem_RequestExclusiveOperation_m38B962B56859A1978AC995893D7FD9C7CEB0A0F1(L_2, __this, NULL);
// if (success)
int32_t L_4 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
G_B3_0 = L_4;
if (!L_4)
{
G_B6_0 = L_4;
goto IL_0038;
}
}
{
// beginLocomotion?.Invoke(m_System);
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_5 = __this->___beginLocomotion_5;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_6 = L_5;
G_B4_0 = L_6;
G_B4_1 = G_B3_0;
if (L_6)
{
G_B5_0 = L_6;
G_B5_1 = G_B3_0;
goto IL_002d;
}
}
{
return (bool)G_B4_1;
}
IL_002d:
{
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_7 = __this->___m_System_7;
NullCheck(G_B5_0);
Action_1_Invoke_m6D24480D7E389B915C20866DC6A3BE7E48E919DA(G_B5_0, L_7, Action_1_Invoke_m6D24480D7E389B915C20866DC6A3BE7E48E919DA_RuntimeMethod_var);
G_B6_0 = G_B5_1;
}
IL_0038:
{
// return success;
return (bool)G_B6_0;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::EndLocomotion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocomotionProvider_EndLocomotion_m64CC4C14527FF9F8D2956159425A2208E4612ECB (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_m6D24480D7E389B915C20866DC6A3BE7E48E919DA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t G_B6_0 = 0;
int32_t G_B3_0 = 0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* G_B5_0 = NULL;
int32_t G_B5_1 = 0;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* G_B4_0 = NULL;
int32_t G_B4_1 = 0;
{
// if (m_System == null)
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_0 = __this->___m_System_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
// return false;
return (bool)0;
}
IL_0010:
{
// var success = m_System.FinishExclusiveOperation(this) == RequestResult.Success;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_2 = __this->___m_System_7;
NullCheck(L_2);
int32_t L_3;
L_3 = LocomotionSystem_FinishExclusiveOperation_mE60B5D19065E9DC6F76357B21942126ED8383644(L_2, __this, NULL);
// if (success)
int32_t L_4 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
G_B3_0 = L_4;
if (!L_4)
{
G_B6_0 = L_4;
goto IL_0038;
}
}
{
// endLocomotion?.Invoke(m_System);
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_5 = __this->___endLocomotion_6;
Action_1_tF1EFD363206113AB62CC79E4ABC28A4901B693B7* L_6 = L_5;
G_B4_0 = L_6;
G_B4_1 = G_B3_0;
if (L_6)
{
G_B5_0 = L_6;
G_B5_1 = G_B3_0;
goto IL_002d;
}
}
{
return (bool)G_B4_1;
}
IL_002d:
{
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_7 = __this->___m_System_7;
NullCheck(G_B5_0);
Action_1_Invoke_m6D24480D7E389B915C20866DC6A3BE7E48E919DA(G_B5_0, L_7, Action_1_Invoke_m6D24480D7E389B915C20866DC6A3BE7E48E919DA_RuntimeMethod_var);
G_B6_0 = G_B5_1;
}
IL_0038:
{
// return success;
return (bool)G_B6_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionProvider__ctor_m402BA4925BA100FA69742DD86D76BA0ECB39C7E7 (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method)
{
{
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::get_timeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LocomotionSystem_get_timeout_mFD09A2DD790389F19DBF9721011D7D905CE36F2E (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method)
{
{
// get => m_Timeout;
float L_0 = __this->___m_Timeout_6;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::set_timeout(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionSystem_set_timeout_m7B3F1CA7FEADE7103002DDBA0580B08A7E86FE3F (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_Timeout = value;
float L_0 = ___value0;
__this->___m_Timeout_6 = L_0;
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.XRRig UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::get_xrRig()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* LocomotionSystem_get_xrRig_m66C8141D2D2FACDEC33DB82CAC8ED5278DEEDDE1 (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method)
{
{
// get => m_XRRig;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_0 = __this->___m_XRRig_7;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::set_xrRig(UnityEngine.XR.Interaction.Toolkit.XRRig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionSystem_set_xrRig_m582AE29CF788F3FA6E544A852CE884CEDFC50A80 (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* ___value0, const RuntimeMethod* method)
{
{
// set => m_XRRig = value;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_0 = ___value0;
__this->___m_XRRig_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_XRRig_7), (void*)L_0);
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::get_busy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocomotionSystem_get_busy_m28D47236EB8305F858FAA903E490FF1F9D678A9F (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool busy => m_CurrentExclusiveProvider != null;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = __this->___m_CurrentExclusiveProvider_4;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
return L_1;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::get_Busy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocomotionSystem_get_Busy_m43E2C5C416E56C27D9079BE43A58E31C9131B1E7 (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method)
{
{
// public bool Busy => busy;
bool L_0;
L_0 = LocomotionSystem_get_busy_m28D47236EB8305F858FAA903E490FF1F9D678A9F(__this, NULL);
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::Awake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionSystem_Awake_m6A110BC4319FBEC64AD112B130CC3DDAA2B04D14 (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_FindObjectOfType_TisXRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_m204F4BA9167666E8C55752375D5587D40BAE9C06_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_XRRig == null)
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_0 = __this->___m_XRRig_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0019;
}
}
{
// m_XRRig = FindObjectOfType<XRRig>();
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_2;
L_2 = Object_FindObjectOfType_TisXRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_m204F4BA9167666E8C55752375D5587D40BAE9C06(Object_FindObjectOfType_TisXRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_m204F4BA9167666E8C55752375D5587D40BAE9C06_RuntimeMethod_var);
__this->___m_XRRig_7 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_XRRig_7), (void*)L_2);
}
IL_0019:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::Update()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionSystem_Update_m0E0FE862254C451ADBEFE63756E120C6C57E1159 (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_CurrentExclusiveProvider != null && Time.time > m_TimeMadeExclusive + m_Timeout)
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = __this->___m_CurrentExclusiveProvider_4;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0028;
}
}
{
float L_2;
L_2 = Time_get_time_m0BEE9AACD0723FE414465B77C9C64D12263675F3(NULL);
float L_3 = __this->___m_TimeMadeExclusive_5;
float L_4 = __this->___m_Timeout_6;
if ((!(((float)L_2) > ((float)((float)il2cpp_codegen_add((float)L_3, (float)L_4))))))
{
goto IL_0028;
}
}
{
// ResetExclusivity();
LocomotionSystem_ResetExclusivity_m25A6EA802DDFDAF8A1FE6C59FB85C66F58A55DDE(__this, NULL);
}
IL_0028:
{
// }
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.RequestResult UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::RequestExclusiveOperation(UnityEngine.XR.Interaction.Toolkit.LocomotionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LocomotionSystem_RequestExclusiveOperation_m38B962B56859A1978AC995893D7FD9C7CEB0A0F1 (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (provider == null)
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = ___provider0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_000b;
}
}
{
// return RequestResult.Error;
return (int32_t)(2);
}
IL_000b:
{
// if (m_CurrentExclusiveProvider == null)
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_2 = __this->___m_CurrentExclusiveProvider_4;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_3)
{
goto IL_002d;
}
}
{
// m_CurrentExclusiveProvider = provider;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_4 = ___provider0;
__this->___m_CurrentExclusiveProvider_4 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CurrentExclusiveProvider_4), (void*)L_4);
// m_TimeMadeExclusive = Time.time;
float L_5;
L_5 = Time_get_time_m0BEE9AACD0723FE414465B77C9C64D12263675F3(NULL);
__this->___m_TimeMadeExclusive_5 = L_5;
// return RequestResult.Success;
return (int32_t)(0);
}
IL_002d:
{
// return m_CurrentExclusiveProvider != provider ? RequestResult.Busy : RequestResult.Error;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_6 = __this->___m_CurrentExclusiveProvider_4;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_7 = ___provider0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_8;
L_8 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_6, L_7, NULL);
if (L_8)
{
goto IL_003d;
}
}
{
return (int32_t)(2);
}
IL_003d:
{
return (int32_t)(1);
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::ResetExclusivity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionSystem_ResetExclusivity_m25A6EA802DDFDAF8A1FE6C59FB85C66F58A55DDE (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method)
{
{
// m_CurrentExclusiveProvider = null;
__this->___m_CurrentExclusiveProvider_4 = (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CurrentExclusiveProvider_4), (void*)(LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B*)NULL);
// m_TimeMadeExclusive = 0f;
__this->___m_TimeMadeExclusive_5 = (0.0f);
// }
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.RequestResult UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::FinishExclusiveOperation(UnityEngine.XR.Interaction.Toolkit.LocomotionProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LocomotionSystem_FinishExclusiveOperation_mE60B5D19065E9DC6F76357B21942126ED8383644 (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if(provider == null || m_CurrentExclusiveProvider == null)
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_0 = ___provider0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_1)
{
goto IL_0017;
}
}
{
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_2 = __this->___m_CurrentExclusiveProvider_4;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_3)
{
goto IL_0019;
}
}
IL_0017:
{
// return RequestResult.Error;
return (int32_t)(2);
}
IL_0019:
{
// if (m_CurrentExclusiveProvider == provider)
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_4 = __this->___m_CurrentExclusiveProvider_4;
LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* L_5 = ___provider0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_6;
L_6 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_4, L_5, NULL);
if (!L_6)
{
goto IL_002f;
}
}
{
// ResetExclusivity();
LocomotionSystem_ResetExclusivity_m25A6EA802DDFDAF8A1FE6C59FB85C66F58A55DDE(__this, NULL);
// return RequestResult.Success;
return (int32_t)(0);
}
IL_002f:
{
// return RequestResult.Error;
return (int32_t)(2);
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.LocomotionSystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocomotionSystem__ctor_mB37629153362E038054DC424AC2748E8F3CFA8E4 (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method)
{
{
// float m_Timeout = 10f;
__this->___m_Timeout_6 = (10.0f);
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::get_leftHandSnapTurnAction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ActionBasedSnapTurnProvider_get_leftHandSnapTurnAction_m080880500C2C7AF09C16DD9E3AD8987FF54F41B8 (ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9* __this, const RuntimeMethod* method)
{
{
// get => m_LeftHandSnapTurnAction;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_LeftHandSnapTurnAction_14;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::set_leftHandSnapTurnAction(UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedSnapTurnProvider_set_leftHandSnapTurnAction_m593DEF28D9A4AC170EF9CECD72A4CCC39FC1F18A (ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value0, const RuntimeMethod* method)
{
{
// set => SetInputActionProperty(ref m_LeftHandSnapTurnAction, value);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_0 = (&__this->___m_LeftHandSnapTurnAction_14);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = ___value0;
ActionBasedSnapTurnProvider_SetInputActionProperty_mC9D57A366A4C04274E9FAB6B9E46E383A2B96FCC(__this, L_0, L_1, NULL);
return;
}
}
// UnityEngine.InputSystem.InputActionProperty UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::get_rightHandSnapTurnAction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ActionBasedSnapTurnProvider_get_rightHandSnapTurnAction_mB7D3DC36F102F0B0B144A7E66DBD6D8E99DC6D11 (ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9* __this, const RuntimeMethod* method)
{
{
// get => m_RightHandSnapTurnAction;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_RightHandSnapTurnAction_15;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::set_rightHandSnapTurnAction(UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedSnapTurnProvider_set_rightHandSnapTurnAction_m6909A7D5317BC44B3B6FC8A2C86D1ABF1CA3B6EF (ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value0, const RuntimeMethod* method)
{
{
// set => SetInputActionProperty(ref m_RightHandSnapTurnAction, value);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_0 = (&__this->___m_RightHandSnapTurnAction_15);
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = ___value0;
ActionBasedSnapTurnProvider_SetInputActionProperty_mC9D57A366A4C04274E9FAB6B9E46E383A2B96FCC(__this, L_0, L_1, NULL);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedSnapTurnProvider_OnEnable_mB974392761A9F3507B232702D0974A3B620F0CFD (ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9* __this, const RuntimeMethod* method)
{
{
// m_LeftHandSnapTurnAction.EnableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_LeftHandSnapTurnAction_14;
InputActionPropertyExtensions_EnableDirectAction_mA8846AAA44837965CF99FD82C518A86D6479AB46(L_0, NULL);
// m_RightHandSnapTurnAction.EnableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = __this->___m_RightHandSnapTurnAction_15;
InputActionPropertyExtensions_EnableDirectAction_mA8846AAA44837965CF99FD82C518A86D6479AB46(L_1, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedSnapTurnProvider_OnDisable_m50B8D2411258F6363F6167D2706A42FA2A0EDC20 (ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9* __this, const RuntimeMethod* method)
{
{
// m_LeftHandSnapTurnAction.DisableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_0 = __this->___m_LeftHandSnapTurnAction_14;
InputActionPropertyExtensions_DisableDirectAction_m9699BBB4F5F25E03534B2C4A346DC52D2FEE30A7(L_0, NULL);
// m_RightHandSnapTurnAction.DisableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_1 = __this->___m_RightHandSnapTurnAction_15;
InputActionPropertyExtensions_DisableDirectAction_m9699BBB4F5F25E03534B2C4A346DC52D2FEE30A7(L_1, NULL);
// }
return;
}
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::ReadInput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ActionBasedSnapTurnProvider_ReadInput_mB3F4758285A8867A4564A78CCEEC422FBCB4356B (ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B2_0 = NULL;
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B1_0 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B3_0;
memset((&G_B3_0), 0, sizeof(G_B3_0));
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B5_0 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B5_1;
memset((&G_B5_1), 0, sizeof(G_B5_1));
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* G_B4_0 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B4_1;
memset((&G_B4_1), 0, sizeof(G_B4_1));
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B6_0;
memset((&G_B6_0), 0, sizeof(G_B6_0));
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B6_1;
memset((&G_B6_1), 0, sizeof(G_B6_1));
{
// var leftHandValue = m_LeftHandSnapTurnAction.action?.ReadValue<Vector2>() ?? Vector2.zero;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_0 = (&__this->___m_LeftHandSnapTurnAction_14);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_1;
L_1 = InputActionProperty_get_action_mABF2197D9CC6586E5DFB0481CF9C1B2586F41A47(L_0, NULL);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_2 = L_1;
G_B1_0 = L_2;
if (L_2)
{
G_B2_0 = L_2;
goto IL_0016;
}
}
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
L_3 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
G_B3_0 = L_3;
goto IL_001b;
}
IL_0016:
{
NullCheck(G_B2_0);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
L_4 = InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF(G_B2_0, InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_RuntimeMethod_var);
G_B3_0 = L_4;
}
IL_001b:
{
// var rightHandValue = m_RightHandSnapTurnAction.action?.ReadValue<Vector2>() ?? Vector2.zero;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_5 = (&__this->___m_RightHandSnapTurnAction_15);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_6;
L_6 = InputActionProperty_get_action_mABF2197D9CC6586E5DFB0481CF9C1B2586F41A47(L_5, NULL);
InputAction_t1B550AD2B55AF322AFB53CD28DA64081220D01CD* L_7 = L_6;
G_B4_0 = L_7;
G_B4_1 = G_B3_0;
if (L_7)
{
G_B5_0 = L_7;
G_B5_1 = G_B3_0;
goto IL_0031;
}
}
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
L_8 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
G_B6_0 = L_8;
G_B6_1 = G_B4_1;
goto IL_0036;
}
IL_0031:
{
NullCheck(G_B5_0);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
L_9 = InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF(G_B5_0, InputAction_ReadValue_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m8D02BA85303ABD48D9963369E106B0C83A393FBF_RuntimeMethod_var);
G_B6_0 = L_9;
G_B6_1 = G_B5_1;
}
IL_0036:
{
V_0 = G_B6_0;
// return leftHandValue + rightHandValue;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
L_11 = Vector2_op_Addition_m704B5B98EAFE885978381E21B7F89D9DF83C2A60_inline(G_B6_1, L_10, NULL);
return L_11;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::SetInputActionProperty(UnityEngine.InputSystem.InputActionProperty&,UnityEngine.InputSystem.InputActionProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedSnapTurnProvider_SetInputActionProperty_mC9D57A366A4C04274E9FAB6B9E46E383A2B96FCC (ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9* __this, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* ___property0, InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD ___value1, const RuntimeMethod* method)
{
{
// if (Application.isPlaying)
bool L_0;
L_0 = Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337(NULL);
if (!L_0)
{
goto IL_0012;
}
}
{
// property.DisableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_1 = ___property0;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_2 = (*(InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_1);
InputActionPropertyExtensions_DisableDirectAction_m9699BBB4F5F25E03534B2C4A346DC52D2FEE30A7(L_2, NULL);
}
IL_0012:
{
// property = value;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_3 = ___property0;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_4 = ___value1;
*(InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_3 = L_4;
Il2CppCodeGenWriteBarrier((void**)&(((InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_3)->___m_Action_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_3)->___m_Reference_2), (void*)NULL);
#endif
// if (Application.isPlaying && isActiveAndEnabled)
bool L_5;
L_5 = Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337(NULL);
if (!L_5)
{
goto IL_0033;
}
}
{
bool L_6;
L_6 = Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A(__this, NULL);
if (!L_6)
{
goto IL_0033;
}
}
{
// property.EnableDirectAction();
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD* L_7 = ___property0;
InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD L_8 = (*(InputActionProperty_tE5B1633784A72FC044A0BB5C0BE140DD7BD84FAD*)L_7);
InputActionPropertyExtensions_EnableDirectAction_mA8846AAA44837965CF99FD82C518A86D6479AB46(L_8, NULL);
}
IL_0033:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.ActionBasedSnapTurnProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionBasedSnapTurnProvider__ctor_m2DD0B1A6EBB603FA40E193EC764E68047A24059C (ActionBasedSnapTurnProvider_t95ED9D2E3E38ABD6EBF964E3D00E8D8B75458BC9* __this, const RuntimeMethod* method)
{
{
SnapTurnProviderBase__ctor_m962618BDF42FF3FCDB3D8816C9ADDA6E18304F7D(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider/InputAxes UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::get_turnUsage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DeviceBasedSnapTurnProvider_get_turnUsage_m13EA8E1F1E0D250A1CA79550A71D0C3567AFF9BC (DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466* __this, const RuntimeMethod* method)
{
{
// get => m_TurnUsage;
int32_t L_0 = __this->___m_TurnUsage_14;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::set_turnUsage(UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider/InputAxes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedSnapTurnProvider_set_turnUsage_m862FDD3D55F0C49AAB990906404ADE4902DFDD95 (DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_TurnUsage = value;
int32_t L_0 = ___value0;
__this->___m_TurnUsage_14 = L_0;
return;
}
}
// System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController> UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::get_controllers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* DeviceBasedSnapTurnProvider_get_controllers_m0BAA48EADCBCD01F05ADEC2320DF14C5582ED437 (DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466* __this, const RuntimeMethod* method)
{
{
// get => m_Controllers;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = __this->___m_Controllers_15;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::set_controllers(System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseController>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedSnapTurnProvider_set_controllers_m1D926F8431A5DFC4D68B7219763D82FCCFF7C905 (DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466* __this, List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* ___value0, const RuntimeMethod* method)
{
{
// set => m_Controllers = value;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = ___value0;
__this->___m_Controllers_15 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Controllers_15), (void*)L_0);
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::get_deadZone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DeviceBasedSnapTurnProvider_get_deadZone_m5BD8B17BD1FFDA15FBF13CE57B6B228183FC224D (DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466* __this, const RuntimeMethod* method)
{
{
// get => m_DeadZone;
float L_0 = __this->___m_DeadZone_16;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::set_deadZone(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedSnapTurnProvider_set_deadZone_m1F0A53F7076A009D8C97B244C0F86F99EAE941EA (DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_DeadZone = value;
float L_0 = ___value0;
__this->___m_DeadZone_16 = L_0;
return;
}
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::ReadInput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 DeviceBasedSnapTurnProvider_ReadInput_m8032A60D620CC1F500C253C42BD42B3D298BE2F0 (DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mE3735CD7D71FB40C90C7625AEE4A7F16E2EEC53F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C V_1;
memset((&V_1), 0, sizeof(V_1));
float V_2 = 0.0f;
int32_t V_3 = 0;
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* V_4 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_5;
memset((&V_5), 0, sizeof(V_5));
InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD V_6;
memset((&V_6), 0, sizeof(V_6));
{
// if (m_Controllers.Count == 0)
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = __this->___m_Controllers_15;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_inline(L_0, List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_RuntimeMethod_var);
if (L_1)
{
goto IL_0013;
}
}
{
// return Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
L_2 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
return L_2;
}
IL_0013:
{
// var input = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
L_3 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
V_0 = L_3;
// var feature = k_Vec2UsageList[(int)m_TurnUsage];
il2cpp_codegen_runtime_class_init_inline(DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466_il2cpp_TypeInfo_var);
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_4 = ((DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466_StaticFields*)il2cpp_codegen_static_fields_for(DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466_il2cpp_TypeInfo_var))->___k_Vec2UsageList_17;
int32_t L_5 = __this->___m_TurnUsage_14;
NullCheck(L_4);
int32_t L_6 = L_5;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_1 = L_7;
// var sqrDeadZone = m_DeadZone * m_DeadZone;
float L_8 = __this->___m_DeadZone_16;
float L_9 = __this->___m_DeadZone_16;
V_2 = ((float)il2cpp_codegen_multiply((float)L_8, (float)L_9));
// for (var i = 0; i < m_Controllers.Count; ++i)
V_3 = 0;
goto IL_008e;
}
IL_003c:
{
// var controller = m_Controllers[i] as XRController;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_10 = __this->___m_Controllers_15;
int32_t L_11 = V_3;
NullCheck(L_10);
XRBaseController_t44C1BB30A7E1D279DD2508F34D3352B33A9AD60C* L_12;
L_12 = List_1_get_Item_mE3735CD7D71FB40C90C7625AEE4A7F16E2EEC53F(L_10, L_11, List_1_get_Item_mE3735CD7D71FB40C90C7625AEE4A7F16E2EEC53F_RuntimeMethod_var);
V_4 = ((XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F*)IsInstClass((RuntimeObject*)L_12, XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F_il2cpp_TypeInfo_var));
// if (controller != null &&
// controller.enableInputActions &&
// controller.inputDevice.TryGetFeatureValue(feature, out var controllerInput) &&
// controllerInput.sqrMagnitude > sqrDeadZone)
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* L_13 = V_4;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_14;
L_14 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_13, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_14)
{
goto IL_008a;
}
}
{
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* L_15 = V_4;
NullCheck(L_15);
bool L_16;
L_16 = XRBaseController_get_enableInputActions_m4E285A2F619049FF60318453228523C193C9E8CE_inline(L_15, NULL);
if (!L_16)
{
goto IL_008a;
}
}
{
XRController_t928E104C899E51FDE12C0A8AC68874587C46C28F* L_17 = V_4;
NullCheck(L_17);
InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD L_18;
L_18 = XRController_get_inputDevice_m584AA43BBBC4CD0FAD047217DDB64DCD35281389(L_17, NULL);
V_6 = L_18;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_19 = V_1;
bool L_20;
L_20 = InputDevice_TryGetFeatureValue_mB2C15D1FC747DA9FB5958FA17E77049886FB3BBA((&V_6), L_19, (&V_5), NULL);
if (!L_20)
{
goto IL_008a;
}
}
{
float L_21;
L_21 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_5), NULL);
float L_22 = V_2;
if ((!(((float)L_21) > ((float)L_22))))
{
goto IL_008a;
}
}
{
// input += controllerInput;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_23 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_24 = V_5;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_25;
L_25 = Vector2_op_Addition_m704B5B98EAFE885978381E21B7F89D9DF83C2A60_inline(L_23, L_24, NULL);
V_0 = L_25;
}
IL_008a:
{
// for (var i = 0; i < m_Controllers.Count; ++i)
int32_t L_26 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
}
IL_008e:
{
// for (var i = 0; i < m_Controllers.Count; ++i)
int32_t L_27 = V_3;
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_28 = __this->___m_Controllers_15;
NullCheck(L_28);
int32_t L_29;
L_29 = List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_inline(L_28, List_1_get_Count_m1ECF6AB6E4C23744C265915A2705C02F05D4C8AA_RuntimeMethod_var);
if ((((int32_t)L_27) < ((int32_t)L_29)))
{
goto IL_003c;
}
}
{
// return input;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_30 = V_0;
return L_30;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedSnapTurnProvider__ctor_m3BF22C66539C00C07B72AFD688BC9EDBC006A66E (DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m724463B39B944A8F8354B96833F40DDC56293D8E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// List<XRBaseController> m_Controllers = new List<XRBaseController>();
List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30* L_0 = (List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30*)il2cpp_codegen_object_new(List_1_t1ED67C54F566D2D44BD175F8DC9DA0AA6468FA30_il2cpp_TypeInfo_var);
List_1__ctor_m724463B39B944A8F8354B96833F40DDC56293D8E(L_0, /*hidden argument*/List_1__ctor_m724463B39B944A8F8354B96833F40DDC56293D8E_RuntimeMethod_var);
__this->___m_Controllers_15 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Controllers_15), (void*)L_0);
// float m_DeadZone = 0.75f;
__this->___m_DeadZone_16 = (0.75f);
SnapTurnProviderBase__ctor_m962618BDF42FF3FCDB3D8816C9ADDA6E18304F7D(__this, NULL);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.DeviceBasedSnapTurnProvider::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceBasedSnapTurnProvider__cctor_mAC0B8900E5AC49A44914C6F2DBB283CE5FE8BC46 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static readonly InputFeatureUsage<Vector2>[] k_Vec2UsageList =
// {
// CommonUsages.primary2DAxis,
// CommonUsages.secondary2DAxis,
// };
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_0 = (InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91*)(InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91*)SZArrayNew(InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91_il2cpp_TypeInfo_var, (uint32_t)2);
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_1 = L_0;
il2cpp_codegen_runtime_class_init_inline(CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var);
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_2 = ((CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_StaticFields*)il2cpp_codegen_static_fields_for(CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var))->___primary2DAxis_17;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C)L_2);
InputFeatureUsage_1U5BU5D_t70BB6C9773E825D79E0D241D4C351891E40E3B91* L_3 = L_1;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_4 = ((CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_StaticFields*)il2cpp_codegen_static_fields_for(CommonUsages_t9208F514F1E77BE70AC53EFEC94D57EDDAF3B8E1_il2cpp_TypeInfo_var))->___secondary2DAxis_18;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C)L_4);
((DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466_StaticFields*)il2cpp_codegen_static_fields_for(DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466_il2cpp_TypeInfo_var))->___k_Vec2UsageList_17 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466_StaticFields*)il2cpp_codegen_static_fields_for(DeviceBasedSnapTurnProvider_t16D88BEA064062F967D48ECB8C3EC41298D38466_il2cpp_TypeInfo_var))->___k_Vec2UsageList_17), (void*)L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::get_turnAmount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SnapTurnProviderBase_get_turnAmount_m1A71B1F663BBA314E04F40A87F976E65C585329A (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, const RuntimeMethod* method)
{
{
// get => m_TurnAmount;
float L_0 = __this->___m_TurnAmount_8;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::set_turnAmount(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SnapTurnProviderBase_set_turnAmount_m7CF964B94A1EF781ED3318E924FD1F6E60BBD959 (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_TurnAmount = value;
float L_0 = ___value0;
__this->___m_TurnAmount_8 = L_0;
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::get_debounceTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SnapTurnProviderBase_get_debounceTime_mBE1DB957DE0AEFDA923ADF4F60749AAB5777D112 (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, const RuntimeMethod* method)
{
{
// get => m_DebounceTime;
float L_0 = __this->___m_DebounceTime_9;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::set_debounceTime(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SnapTurnProviderBase_set_debounceTime_mF1EC6DC3B36931E6DDD9A9A7837794DDDE35DF80 (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_DebounceTime = value;
float L_0 = ___value0;
__this->___m_DebounceTime_9 = L_0;
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::get_enableTurnLeftRight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SnapTurnProviderBase_get_enableTurnLeftRight_m305A42F82C0DA2E59ED427C612B31714110C3A6B (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, const RuntimeMethod* method)
{
{
// get => m_EnableTurnLeftRight;
bool L_0 = __this->___m_EnableTurnLeftRight_10;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::set_enableTurnLeftRight(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SnapTurnProviderBase_set_enableTurnLeftRight_mA12C92CD143D8DBCE0CB8C9B1AD5D1221BC62513 (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, bool ___value0, const RuntimeMethod* method)
{
{
// set => m_EnableTurnLeftRight = value;
bool L_0 = ___value0;
__this->___m_EnableTurnLeftRight_10 = L_0;
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::get_enableTurnAround()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SnapTurnProviderBase_get_enableTurnAround_mBDD9557E4365D79557C02612DB6211CEC921F0B1 (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, const RuntimeMethod* method)
{
{
// get => m_EnableTurnAround;
bool L_0 = __this->___m_EnableTurnAround_11;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::set_enableTurnAround(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SnapTurnProviderBase_set_enableTurnAround_m7F986600E4931C3157B0C68C6C3F484969FB0033 (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, bool ___value0, const RuntimeMethod* method)
{
{
// set => m_EnableTurnAround = value;
bool L_0 = ___value0;
__this->___m_EnableTurnAround_11 = L_0;
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::Update()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SnapTurnProviderBase_Update_m5A976A8A283FD65E2D7D7D5B0CDD8C908811ACBB (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
float V_1 = 0.0f;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* V_2 = NULL;
{
// if (m_TimeStarted > 0f && (m_TimeStarted + m_DebounceTime < Time.time))
float L_0 = __this->___m_TimeStarted_13;
if ((!(((float)L_0) > ((float)(0.0f)))))
{
goto IL_002d;
}
}
{
float L_1 = __this->___m_TimeStarted_13;
float L_2 = __this->___m_DebounceTime_9;
float L_3;
L_3 = Time_get_time_m0BEE9AACD0723FE414465B77C9C64D12263675F3(NULL);
if ((!(((float)((float)il2cpp_codegen_add((float)L_1, (float)L_2))) < ((float)L_3))))
{
goto IL_002d;
}
}
{
// m_TimeStarted = 0f;
__this->___m_TimeStarted_13 = (0.0f);
// return;
return;
}
IL_002d:
{
// var input = ReadInput();
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
L_4 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(5 /* UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::ReadInput() */, __this);
V_0 = L_4;
// var amount = GetTurnAmount(input);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_0;
float L_6;
L_6 = VirtualFuncInvoker1< float, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(6 /* System.Single UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::GetTurnAmount(UnityEngine.Vector2) */, __this, L_5);
V_1 = L_6;
// if (Mathf.Abs(amount) > 0f)
float L_7 = V_1;
float L_8;
L_8 = fabsf(L_7);
if ((!(((float)L_8) > ((float)(0.0f)))))
{
goto IL_0050;
}
}
{
// StartTurn(amount);
float L_9 = V_1;
SnapTurnProviderBase_StartTurn_m8050D3721A33C34B57752916F121AC72754B6390(__this, L_9, NULL);
}
IL_0050:
{
// if (Math.Abs(m_CurrentTurnAmount) > 0f && BeginLocomotion())
float L_10 = __this->___m_CurrentTurnAmount_12;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
float L_11;
L_11 = fabsf(L_10);
if ((!(((float)L_11) > ((float)(0.0f)))))
{
goto IL_009e;
}
}
{
bool L_12;
L_12 = LocomotionProvider_BeginLocomotion_mFB221E462FEC6E933C9161E30271678311D1AAEF(__this, NULL);
if (!L_12)
{
goto IL_009e;
}
}
{
// var xrRig = system.xrRig;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_13;
L_13 = LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94_inline(__this, NULL);
NullCheck(L_13);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_14;
L_14 = LocomotionSystem_get_xrRig_m66C8141D2D2FACDEC33DB82CAC8ED5278DEEDDE1_inline(L_13, NULL);
V_2 = L_14;
// if (xrRig != null)
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_15 = V_2;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_16;
L_16 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_15, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_16)
{
goto IL_008c;
}
}
{
// xrRig.RotateAroundCameraUsingRigUp(m_CurrentTurnAmount);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_17 = V_2;
float L_18 = __this->___m_CurrentTurnAmount_12;
NullCheck(L_17);
bool L_19;
L_19 = XRRig_RotateAroundCameraUsingRigUp_mE9DB5E392764B04743D17BC410E1DB5D37A10CC2(L_17, L_18, NULL);
}
IL_008c:
{
// m_CurrentTurnAmount = 0f;
__this->___m_CurrentTurnAmount_12 = (0.0f);
// EndLocomotion();
bool L_20;
L_20 = LocomotionProvider_EndLocomotion_m64CC4C14527FF9F8D2956159425A2208E4612ECB(__this, NULL);
}
IL_009e:
{
// }
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::GetTurnAmount(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SnapTurnProviderBase_GetTurnAmount_m8ED0772ED87A2E33FA68B280111BBC1688D215C3 (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___input0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// if (input == Vector2.zero)
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___input0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
L_1 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
bool L_2;
L_2 = Vector2_op_Equality_m5447BF12C18339431AB8AF02FA463C543D88D463_inline(L_0, L_1, NULL);
if (!L_2)
{
goto IL_0013;
}
}
{
// return 0f;
return (0.0f);
}
IL_0013:
{
// var cardinal = CardinalUtility.GetNearestCardinal(input);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___input0;
int32_t L_4;
L_4 = CardinalUtility_GetNearestCardinal_m6761662410E5FAE1002827B1863A7A2871B85734(L_3, NULL);
V_0 = L_4;
int32_t L_5 = V_0;
switch (L_5)
{
case 0:
{
goto IL_005f;
}
case 1:
{
goto IL_0032;
}
case 2:
{
goto IL_0040;
}
case 3:
{
goto IL_004f;
}
}
}
{
goto IL_005f;
}
IL_0032:
{
// if (m_EnableTurnAround)
bool L_6 = __this->___m_EnableTurnAround_11;
if (!L_6)
{
goto IL_005f;
}
}
{
// return 180f;
return (180.0f);
}
IL_0040:
{
// if (m_EnableTurnLeftRight)
bool L_7 = __this->___m_EnableTurnLeftRight_10;
if (!L_7)
{
goto IL_005f;
}
}
{
// return m_TurnAmount;
float L_8 = __this->___m_TurnAmount_8;
return L_8;
}
IL_004f:
{
// if (m_EnableTurnLeftRight)
bool L_9 = __this->___m_EnableTurnLeftRight_10;
if (!L_9)
{
goto IL_005f;
}
}
{
// return -m_TurnAmount;
float L_10 = __this->___m_TurnAmount_8;
return ((-L_10));
}
IL_005f:
{
// return 0f;
return (0.0f);
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::StartTurn(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SnapTurnProviderBase_StartTurn_m8050D3721A33C34B57752916F121AC72754B6390 (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, float ___amount0, const RuntimeMethod* method)
{
{
// if (m_TimeStarted > 0f)
float L_0 = __this->___m_TimeStarted_13;
if ((!(((float)L_0) > ((float)(0.0f)))))
{
goto IL_000e;
}
}
{
// return;
return;
}
IL_000e:
{
// if (!CanBeginLocomotion())
bool L_1;
L_1 = LocomotionProvider_CanBeginLocomotion_m3DE86A342E4B792E125FE73F2FE933BE99EDA9F0(__this, NULL);
if (L_1)
{
goto IL_0017;
}
}
{
// return;
return;
}
IL_0017:
{
// m_TimeStarted = Time.time;
float L_2;
L_2 = Time_get_time_m0BEE9AACD0723FE414465B77C9C64D12263675F3(NULL);
__this->___m_TimeStarted_13 = L_2;
// m_CurrentTurnAmount = amount;
float L_3 = ___amount0;
__this->___m_CurrentTurnAmount_12 = L_3;
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::FakeStartTurn(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SnapTurnProviderBase_FakeStartTurn_m7E059AB0072FC7622EFA51DADA5A4290975A3814 (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, bool ___isLeft0, const RuntimeMethod* method)
{
SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* G_B2_0 = NULL;
SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* G_B1_0 = NULL;
float G_B3_0 = 0.0f;
SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* G_B3_1 = NULL;
{
// StartTurn(isLeft ? -m_TurnAmount : m_TurnAmount);
bool L_0 = ___isLeft0;
G_B1_0 = __this;
if (L_0)
{
G_B2_0 = __this;
goto IL_000c;
}
}
{
float L_1 = __this->___m_TurnAmount_8;
G_B3_0 = L_1;
G_B3_1 = G_B1_0;
goto IL_0013;
}
IL_000c:
{
float L_2 = __this->___m_TurnAmount_8;
G_B3_0 = ((-L_2));
G_B3_1 = G_B2_0;
}
IL_0013:
{
NullCheck(G_B3_1);
SnapTurnProviderBase_StartTurn_m8050D3721A33C34B57752916F121AC72754B6390(G_B3_1, G_B3_0, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::FakeStartTurnAround()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SnapTurnProviderBase_FakeStartTurnAround_m8C6CA0D15294B087F3B93488549801E48916CD76 (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, const RuntimeMethod* method)
{
{
// StartTurn(180f);
SnapTurnProviderBase_StartTurn_m8050D3721A33C34B57752916F121AC72754B6390(__this, (180.0f), NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SnapTurnProviderBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SnapTurnProviderBase__ctor_m962618BDF42FF3FCDB3D8816C9ADDA6E18304F7D (SnapTurnProviderBase_tFDF55C1A80E85535B6AA7CBCA1C1DF9BA07FF706* __this, const RuntimeMethod* method)
{
{
// float m_TurnAmount = 45f;
__this->___m_TurnAmount_8 = (45.0f);
// float m_DebounceTime = 0.5f;
__this->___m_DebounceTime_9 = (0.5f);
// bool m_EnableTurnLeftRight = true;
__this->___m_EnableTurnLeftRight_10 = (bool)1;
// bool m_EnableTurnAround = true;
__this->___m_EnableTurnAround_11 = (bool)1;
LocomotionProvider__ctor_m402BA4925BA100FA69742DD86D76BA0ECB39C7E7(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.TeleportationProvider UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::get_teleportationProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* BaseTeleportationInteractable_get_teleportationProvider_m9B53CC4903106CE7C0DA0F861BB22ED63AAD076F (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, const RuntimeMethod* method)
{
{
// get => m_TeleportationProvider;
TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* L_0 = __this->___m_TeleportationProvider_34;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::set_teleportationProvider(UnityEngine.XR.Interaction.Toolkit.TeleportationProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable_set_teleportationProvider_m10689329CEEDA0CECFC6C6DE42FEC5F402726CED (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* ___value0, const RuntimeMethod* method)
{
{
// set => m_TeleportationProvider = value;
TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* L_0 = ___value0;
__this->___m_TeleportationProvider_34 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TeleportationProvider_34), (void*)L_0);
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.MatchOrientation UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::get_matchOrientation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseTeleportationInteractable_get_matchOrientation_mB4CE35CEB0A0206457993CB28A618F300E4BC03D (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, const RuntimeMethod* method)
{
{
// get => m_MatchOrientation;
int32_t L_0 = __this->___m_MatchOrientation_35;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::set_matchOrientation(UnityEngine.XR.Interaction.Toolkit.MatchOrientation)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable_set_matchOrientation_mD9AD6D9C7CD63E80BDAFB6D6AC229531671960D9 (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_MatchOrientation = value;
int32_t L_0 = ___value0;
__this->___m_MatchOrientation_35 = L_0;
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable/TeleportTrigger UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::get_teleportTrigger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseTeleportationInteractable_get_teleportTrigger_m875F50A1066F596DA0CB800997B84B4A0F8B1A94 (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, const RuntimeMethod* method)
{
{
// get => m_TeleportTrigger;
int32_t L_0 = __this->___m_TeleportTrigger_36;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::set_teleportTrigger(UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable/TeleportTrigger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable_set_teleportTrigger_m456E07E992D4B82240DC266B240D46E12F3FB55A (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_TeleportTrigger = value;
int32_t L_0 = ___value0;
__this->___m_TeleportTrigger_36 = L_0;
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::Awake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable_Awake_mC0C13EE138834FD575C21D6CA01E1FC07F701600 (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_FindObjectOfType_TisTeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972_m59197783B83969B16374A3B8BE819108C6C9F049_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// base.Awake();
XRBaseInteractable_Awake_m0F05BB9C7C9315AD7A6FA1654A50612AFB5D8EA0(__this, NULL);
// if (m_TeleportationProvider == null)
TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* L_0 = __this->___m_TeleportationProvider_34;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_001f;
}
}
{
// m_TeleportationProvider = FindObjectOfType<TeleportationProvider>();
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* L_2;
L_2 = Object_FindObjectOfType_TisTeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972_m59197783B83969B16374A3B8BE819108C6C9F049(Object_FindObjectOfType_TisTeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972_m59197783B83969B16374A3B8BE819108C6C9F049_RuntimeMethod_var);
__this->___m_TeleportationProvider_34 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TeleportationProvider_34), (void*)L_2);
}
IL_001f:
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::GenerateTeleportRequest(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.RaycastHit,UnityEngine.XR.Interaction.Toolkit.TeleportRequest&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseTeleportationInteractable_GenerateTeleportRequest_mB9FB5D40C078FF126CDFD19CECB2C3DC8E6FA7A5 (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 ___raycastHit1, TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE* ___teleportRequest2, const RuntimeMethod* method)
{
{
// => false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::SendTeleportRequest(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable_SendTeleportRequest_mAF7A72334016F5310C979FE97FDC30C4665677A8 (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRayInteractor_t0B25C1D5A938B199A71908E189AB351B43DA4C76_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRRayInteractor_t0B25C1D5A938B199A71908E189AB351B43DA4C76* V_0 = NULL;
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 V_1;
memset((&V_1), 0, sizeof(V_1));
bool V_2 = false;
Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A V_3;
memset((&V_3), 0, sizeof(V_3));
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE V_4;
memset((&V_4), 0, sizeof(V_4));
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE V_5;
memset((&V_5), 0, sizeof(V_5));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
{
// if (!interactor || m_TeleportationProvider == null)
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___interactor0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Implicit_m18E1885C296CC868AC918101523697CFE6413C79(L_0, NULL);
if (!L_1)
{
goto IL_0016;
}
}
{
TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* L_2 = __this->___m_TeleportationProvider_34;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_3)
{
goto IL_0017;
}
}
IL_0016:
{
// return;
return;
}
IL_0017:
{
// var rayInt = interactor as XRRayInteractor;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_4 = ___interactor0;
V_0 = ((XRRayInteractor_t0B25C1D5A938B199A71908E189AB351B43DA4C76*)IsInstClass((RuntimeObject*)L_4, XRRayInteractor_t0B25C1D5A938B199A71908E189AB351B43DA4C76_il2cpp_TypeInfo_var));
// if (rayInt != null)
XRRayInteractor_t0B25C1D5A938B199A71908E189AB351B43DA4C76* L_5 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_6;
L_6 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_5, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_6)
{
goto IL_00bb;
}
}
{
// if (rayInt.TryGetCurrent3DRaycastHit(out var raycastHit))
XRRayInteractor_t0B25C1D5A938B199A71908E189AB351B43DA4C76* L_7 = V_0;
NullCheck(L_7);
bool L_8;
L_8 = XRRayInteractor_TryGetCurrent3DRaycastHit_m3B0B4ECA2D4B2786F08B42F1BA327D63706BB060(L_7, (&V_1), NULL);
if (!L_8)
{
goto IL_00bb;
}
}
{
// var found = false;
V_2 = (bool)0;
// foreach (var interactionCollider in colliders)
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* L_9;
L_9 = XRBaseInteractable_get_colliders_m7E5D104638AC4B5E5C77D40094AA52B9ABEB32FB_inline(__this, NULL);
NullCheck(L_9);
Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A L_10;
L_10 = List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420(L_9, List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420_RuntimeMethod_var);
V_3 = L_10;
}
IL_0045:
try
{// begin try (depth: 1)
{
goto IL_0060;
}
IL_0047:
{
// foreach (var interactionCollider in colliders)
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_11;
L_11 = Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_inline((&V_3), Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_RuntimeMethod_var);
// if (interactionCollider == raycastHit.collider)
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_12;
L_12 = RaycastHit_get_collider_m84B160439BBEAB6D9E94B799F720E25C9E2D444D((&V_1), NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_13;
L_13 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_11, L_12, NULL);
if (!L_13)
{
goto IL_0060;
}
}
IL_005c:
{
// found = true;
V_2 = (bool)1;
// break;
IL2CPP_LEAVE(0x121, FINALLY_006b);
}
IL_0060:
{
// foreach (var interactionCollider in colliders)
bool L_14;
L_14 = Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1((&V_3), Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1_RuntimeMethod_var);
if (L_14)
{
goto IL_0047;
}
}
IL_0069:
{
IL2CPP_LEAVE(0x121, FINALLY_006b);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_006b;
}
FINALLY_006b:
{// begin finally (depth: 1)
Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D((&V_3), Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D_RuntimeMethod_var);
IL2CPP_END_FINALLY(107)
}// end finally (depth: 1)
IL2CPP_CLEANUP(107)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x121, IL_0079)
}
IL_0079:
{
// if (found)
bool L_15 = V_2;
if (!L_15)
{
goto IL_00bb;
}
}
{
// var tr = new TeleportRequest
// {
// matchOrientation = m_MatchOrientation,
// requestTime = Time.time,
// };
il2cpp_codegen_initobj((&V_5), sizeof(TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE));
int32_t L_16 = __this->___m_MatchOrientation_35;
(&V_5)->___matchOrientation_3 = L_16;
float L_17;
L_17 = Time_get_time_m0BEE9AACD0723FE414465B77C9C64D12263675F3(NULL);
(&V_5)->___requestTime_2 = L_17;
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_18 = V_5;
V_4 = L_18;
// if (GenerateTeleportRequest(interactor, raycastHit, ref tr))
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_19 = ___interactor0;
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 L_20 = V_1;
bool L_21;
L_21 = VirtualFuncInvoker3< bool, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158*, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5, TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE* >::Invoke(39 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::GenerateTeleportRequest(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.RaycastHit,UnityEngine.XR.Interaction.Toolkit.TeleportRequest&) */, __this, L_19, L_20, (&V_4));
if (!L_21)
{
goto IL_00bb;
}
}
{
// m_TeleportationProvider.QueueTeleportRequest(tr);
TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* L_22 = __this->___m_TeleportationProvider_34;
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_23 = V_4;
NullCheck(L_22);
bool L_24;
L_24 = VirtualFuncInvoker1< bool, TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE >::Invoke(5 /* System.Boolean UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::QueueTeleportRequest(UnityEngine.XR.Interaction.Toolkit.TeleportRequest) */, L_22, L_23);
}
IL_00bb:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::OnSelectEntered(UnityEngine.XR.Interaction.Toolkit.SelectEnterEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable_OnSelectEntered_m0FD58F8C469202E81555C08B4362E2D23B620676 (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* ___args0, const RuntimeMethod* method)
{
{
// if (m_TeleportTrigger == TeleportTrigger.OnSelectEntered)
int32_t L_0 = __this->___m_TeleportTrigger_36;
if ((!(((uint32_t)L_0) == ((uint32_t)1))))
{
goto IL_0015;
}
}
{
// SendTeleportRequest(args.interactor);
SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* L_1 = ___args0;
NullCheck(L_1);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_2;
L_2 = BaseInteractionEventArgs_get_interactor_mE0AC419B526DA1A39B56DA244258474047DD0176_inline(L_1, NULL);
BaseTeleportationInteractable_SendTeleportRequest_mAF7A72334016F5310C979FE97FDC30C4665677A8(__this, L_2, NULL);
}
IL_0015:
{
// base.OnSelectEntered(args);
SelectEnterEventArgs_t9220B1E6A9BB5A847C0476949ACE0182430BB938* L_3 = ___args0;
XRBaseInteractable_OnSelectEntered_m548EC86DEEF771E952DFC75BAE8EA5C27E441C5C(__this, L_3, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::OnSelectExited(UnityEngine.XR.Interaction.Toolkit.SelectExitEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable_OnSelectExited_m104024A13FA59E4110738133C4FB571DB6607E83 (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* ___args0, const RuntimeMethod* method)
{
{
// if (m_TeleportTrigger == TeleportTrigger.OnSelectExited && !args.isCanceled)
int32_t L_0 = __this->___m_TeleportTrigger_36;
if (L_0)
{
goto IL_001c;
}
}
{
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_1 = ___args0;
NullCheck(L_1);
bool L_2;
L_2 = SelectExitEventArgs_get_isCanceled_m4C9FCCB6A51201B8728DAF9BA356BB589A149FF7_inline(L_1, NULL);
if (L_2)
{
goto IL_001c;
}
}
{
// SendTeleportRequest(args.interactor);
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_3 = ___args0;
NullCheck(L_3);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_4;
L_4 = BaseInteractionEventArgs_get_interactor_mE0AC419B526DA1A39B56DA244258474047DD0176_inline(L_3, NULL);
BaseTeleportationInteractable_SendTeleportRequest_mAF7A72334016F5310C979FE97FDC30C4665677A8(__this, L_4, NULL);
}
IL_001c:
{
// base.OnSelectExited(args);
SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* L_5 = ___args0;
XRBaseInteractable_OnSelectExited_m0D5AEB82DE37B8584A97A262468AF59B70A5568C(__this, L_5, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::OnActivated(UnityEngine.XR.Interaction.Toolkit.ActivateEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable_OnActivated_m3519F32AD8EF48DEA2DC762AA0203AC2CA2BF9E7 (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, ActivateEventArgs_tAC81C18EA24D76411EE5A5D61523A551CCB46C3E* ___args0, const RuntimeMethod* method)
{
{
// if (m_TeleportTrigger == TeleportTrigger.OnActivated)
int32_t L_0 = __this->___m_TeleportTrigger_36;
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
{
goto IL_0015;
}
}
{
// SendTeleportRequest(args.interactor);
ActivateEventArgs_tAC81C18EA24D76411EE5A5D61523A551CCB46C3E* L_1 = ___args0;
NullCheck(L_1);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_2;
L_2 = BaseInteractionEventArgs_get_interactor_mE0AC419B526DA1A39B56DA244258474047DD0176_inline(L_1, NULL);
BaseTeleportationInteractable_SendTeleportRequest_mAF7A72334016F5310C979FE97FDC30C4665677A8(__this, L_2, NULL);
}
IL_0015:
{
// base.OnActivated(args);
ActivateEventArgs_tAC81C18EA24D76411EE5A5D61523A551CCB46C3E* L_3 = ___args0;
XRBaseInteractable_OnActivated_mF584BF76F2FE64DB21A707C4FDBBEA7885D6524C(__this, L_3, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::OnDeactivated(UnityEngine.XR.Interaction.Toolkit.DeactivateEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable_OnDeactivated_mCC3F748F7269D8A30EED80532E054CF274283D4E (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, DeactivateEventArgs_t7AE1163C39B5B95A4501EC961D8D643C369774D0* ___args0, const RuntimeMethod* method)
{
{
// if (m_TeleportTrigger == TeleportTrigger.OnDeactivated)
int32_t L_0 = __this->___m_TeleportTrigger_36;
if ((!(((uint32_t)L_0) == ((uint32_t)3))))
{
goto IL_0015;
}
}
{
// SendTeleportRequest(args.interactor);
DeactivateEventArgs_t7AE1163C39B5B95A4501EC961D8D643C369774D0* L_1 = ___args0;
NullCheck(L_1);
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_2;
L_2 = BaseInteractionEventArgs_get_interactor_mE0AC419B526DA1A39B56DA244258474047DD0176_inline(L_1, NULL);
BaseTeleportationInteractable_SendTeleportRequest_mAF7A72334016F5310C979FE97FDC30C4665677A8(__this, L_2, NULL);
}
IL_0015:
{
// base.OnDeactivated(args);
DeactivateEventArgs_t7AE1163C39B5B95A4501EC961D8D643C369774D0* L_3 = ___args0;
XRBaseInteractable_OnDeactivated_m3A86068F620BFE049FCF5D0712CDC3A2819F1577(__this, L_3, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.BaseTeleportationInteractable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseTeleportationInteractable__ctor_m03523AE1E1C51AF0E9B210844669220113406EE7 (BaseTeleportationInteractable_t3CA78AC694D6BFBA115E724F2C104AB069449AE8* __this, const RuntimeMethod* method)
{
{
XRBaseInteractable__ctor_m0B36974579D0C9F2799C4C5DE77B136C291247F4(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Transform UnityEngine.XR.Interaction.Toolkit.TeleportationAnchor::get_teleportAnchorTransform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* TeleportationAnchor_get_teleportAnchorTransform_m0711868C6E4463287017D36942E8A5C03122A435 (TeleportationAnchor_t5C73F0B7F59911E6F9F98FA9156ECBC6E9DD9085* __this, const RuntimeMethod* method)
{
{
// get => m_TeleportAnchorTransform;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_0 = __this->___m_TeleportAnchorTransform_37;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.TeleportationAnchor::set_teleportAnchorTransform(UnityEngine.Transform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TeleportationAnchor_set_teleportAnchorTransform_m00BFEA234630A95B4B9BE291610D89DC72EB9A5F (TeleportationAnchor_t5C73F0B7F59911E6F9F98FA9156ECBC6E9DD9085* __this, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___value0, const RuntimeMethod* method)
{
{
// set => m_TeleportAnchorTransform = value;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_0 = ___value0;
__this->___m_TeleportAnchorTransform_37 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TeleportAnchorTransform_37), (void*)L_0);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.TeleportationAnchor::OnValidate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TeleportationAnchor_OnValidate_m7D4D44B9600ADB0E40D31F2D7AE24DBADC1036E5 (TeleportationAnchor_t5C73F0B7F59911E6F9F98FA9156ECBC6E9DD9085* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_TeleportAnchorTransform == null)
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_0 = __this->___m_TeleportAnchorTransform_37;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_001a;
}
}
{
// m_TeleportAnchorTransform = transform;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_2;
L_2 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(__this, NULL);
__this->___m_TeleportAnchorTransform_37 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TeleportAnchorTransform_37), (void*)L_2);
}
IL_001a:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.TeleportationAnchor::OnDrawGizmos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TeleportationAnchor_OnDrawGizmos_m5D8C112B038BBB334829CE1185DB35C0C45B925D (TeleportationAnchor_t5C73F0B7F59911E6F9F98FA9156ECBC6E9DD9085* __this, const RuntimeMethod* method)
{
{
// Gizmos.color = Color.blue;
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0;
L_0 = Color_get_blue_m0D04554379CB8606EF48E3091CDC3098B81DD86D_inline(NULL);
Gizmos_set_color_mFD4A7935FF025F5922374A8DD797BA0558BF1AD2(L_0, NULL);
// GizmoHelpers.DrawWireCubeOriented(m_TeleportAnchorTransform.position, m_TeleportAnchorTransform.rotation, 1f);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1 = __this->___m_TeleportAnchorTransform_37;
NullCheck(L_1);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2;
L_2 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_1, NULL);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_3 = __this->___m_TeleportAnchorTransform_37;
NullCheck(L_3);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_4;
L_4 = Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C(L_3, NULL);
GizmoHelpers_DrawWireCubeOriented_mB0B3D31FD9FCEFEC22AFB3B26E9AA374BB918730(L_2, L_4, (1.0f), NULL);
// GizmoHelpers.DrawAxisArrows(m_TeleportAnchorTransform, 1f);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_5 = __this->___m_TeleportAnchorTransform_37;
GizmoHelpers_DrawAxisArrows_m2E693699692850260E01A003FDE03C207C04804F(L_5, (1.0f), NULL);
// }
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.TeleportationAnchor::GenerateTeleportRequest(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.RaycastHit,UnityEngine.XR.Interaction.Toolkit.TeleportRequest&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TeleportationAnchor_GenerateTeleportRequest_m51207633F5FD31B8672B4D5DACC0E3D1FC75350F (TeleportationAnchor_t5C73F0B7F59911E6F9F98FA9156ECBC6E9DD9085* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 ___raycastHit1, TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE* ___teleportRequest2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_TeleportAnchorTransform == null)
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_0 = __this->___m_TeleportAnchorTransform_37;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
// return false;
return (bool)0;
}
IL_0010:
{
// teleportRequest.destinationPosition = m_TeleportAnchorTransform.position;
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE* L_2 = ___teleportRequest2;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_3 = __this->___m_TeleportAnchorTransform_37;
NullCheck(L_3);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4;
L_4 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_3, NULL);
L_2->___destinationPosition_0 = L_4;
// teleportRequest.destinationRotation = m_TeleportAnchorTransform.rotation;
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE* L_5 = ___teleportRequest2;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_6 = __this->___m_TeleportAnchorTransform_37;
NullCheck(L_6);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_7;
L_7 = Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C(L_6, NULL);
L_5->___destinationRotation_1 = L_7;
// return true;
return (bool)1;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.TeleportationAnchor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TeleportationAnchor__ctor_m8645304E8AFD708D9BF3C8E3B8D2F64F9CEBA427 (TeleportationAnchor_t5C73F0B7F59911E6F9F98FA9156ECBC6E9DD9085* __this, const RuntimeMethod* method)
{
{
BaseTeleportationInteractable__ctor_m03523AE1E1C51AF0E9B210844669220113406EE7(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean UnityEngine.XR.Interaction.Toolkit.TeleportationArea::GenerateTeleportRequest(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,UnityEngine.RaycastHit,UnityEngine.XR.Interaction.Toolkit.TeleportRequest&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TeleportationArea_GenerateTeleportRequest_m5F593A3DA8199A607F2ACCA7BD04D43F5F06C8AC (TeleportationArea_t4E760401D8B7EBAA17DD75E248517C0ECBB608FD* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 ___raycastHit1, TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE* ___teleportRequest2, const RuntimeMethod* method)
{
{
// teleportRequest.destinationPosition = raycastHit.point;
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE* L_0 = ___teleportRequest2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
L_1 = RaycastHit_get_point_m02B764612562AFE0F998CC7CFB2EEDE41BA47F39((&___raycastHit1), NULL);
L_0->___destinationPosition_0 = L_1;
// teleportRequest.destinationRotation = transform.rotation;
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE* L_2 = ___teleportRequest2;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_3;
L_3 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(__this, NULL);
NullCheck(L_3);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_4;
L_4 = Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C(L_3, NULL);
L_2->___destinationRotation_1 = L_4;
// return true;
return (bool)1;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.TeleportationArea::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TeleportationArea__ctor_mBD0DD39D29BA373207C79E8600D8F183D3E14EFB (TeleportationArea_t4E760401D8B7EBAA17DD75E248517C0ECBB608FD* __this, const RuntimeMethod* method)
{
{
BaseTeleportationInteractable__ctor_m03523AE1E1C51AF0E9B210844669220113406EE7(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.Interaction.Toolkit.TeleportRequest UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::get_currentRequest()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE TeleportationProvider_get_currentRequest_m0CCE6B6BE488A506F4FD398A18C8D0450ED6C39B (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, const RuntimeMethod* method)
{
{
// protected TeleportRequest currentRequest { get; set; }
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_0 = __this->___U3CcurrentRequestU3Ek__BackingField_8;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::set_currentRequest(UnityEngine.XR.Interaction.Toolkit.TeleportRequest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TeleportationProvider_set_currentRequest_m109FD936C57760C70C312B799E6AD6D7651B0581 (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE ___value0, const RuntimeMethod* method)
{
{
// protected TeleportRequest currentRequest { get; set; }
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_0 = ___value0;
__this->___U3CcurrentRequestU3Ek__BackingField_8 = L_0;
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::get_validRequest()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TeleportationProvider_get_validRequest_m083A1AF44E1AD7BD791A2B599216067B94D65788 (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, const RuntimeMethod* method)
{
{
// protected bool validRequest { get; set; }
bool L_0 = __this->___U3CvalidRequestU3Ek__BackingField_9;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::set_validRequest(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TeleportationProvider_set_validRequest_m539A9FBCF21BBCE6062D888442666D0679B27B0D (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, bool ___value0, const RuntimeMethod* method)
{
{
// protected bool validRequest { get; set; }
bool L_0 = ___value0;
__this->___U3CvalidRequestU3Ek__BackingField_9 = L_0;
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::QueueTeleportRequest(UnityEngine.XR.Interaction.Toolkit.TeleportRequest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TeleportationProvider_QueueTeleportRequest_mE1D319B5F451A6AD4CC2749D9B4CF6763E67A278 (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE ___teleportRequest0, const RuntimeMethod* method)
{
{
// currentRequest = teleportRequest;
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_0 = ___teleportRequest0;
TeleportationProvider_set_currentRequest_m109FD936C57760C70C312B799E6AD6D7651B0581_inline(__this, L_0, NULL);
// validRequest = true;
TeleportationProvider_set_validRequest_m539A9FBCF21BBCE6062D888442666D0679B27B0D_inline(__this, (bool)1, NULL);
// return true;
return (bool)1;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::Update()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TeleportationProvider_Update_mF3A1A890CCFF2A42AC886504065D4F503E22C88D (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* V_0 = NULL;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
memset((&V_1), 0, sizeof(V_1));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
memset((&V_2), 0, sizeof(V_2));
int32_t V_3 = 0;
{
// if (!validRequest || !BeginLocomotion())
bool L_0;
L_0 = TeleportationProvider_get_validRequest_m083A1AF44E1AD7BD791A2B599216067B94D65788_inline(__this, NULL);
if (!L_0)
{
goto IL_0010;
}
}
{
bool L_1;
L_1 = LocomotionProvider_BeginLocomotion_mFB221E462FEC6E933C9161E30271678311D1AAEF(__this, NULL);
if (L_1)
{
goto IL_0011;
}
}
IL_0010:
{
// return;
return;
}
IL_0011:
{
// var xrRig = system.xrRig;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_2;
L_2 = LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94_inline(__this, NULL);
NullCheck(L_2);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_3;
L_3 = LocomotionSystem_get_xrRig_m66C8141D2D2FACDEC33DB82CAC8ED5278DEEDDE1_inline(L_2, NULL);
V_0 = L_3;
// if (xrRig != null)
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_4 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_5)
{
goto IL_00e0;
}
}
{
// switch (currentRequest.matchOrientation)
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_6;
L_6 = TeleportationProvider_get_currentRequest_m0CCE6B6BE488A506F4FD398A18C8D0450ED6C39B_inline(__this, NULL);
int32_t L_7 = L_6.___matchOrientation_3;
V_3 = L_7;
int32_t L_8 = V_3;
switch (L_8)
{
case 0:
{
goto IL_004d;
}
case 1:
{
goto IL_005b;
}
case 2:
{
goto IL_0079;
}
case 3:
{
goto IL_00aa;
}
}
}
{
goto IL_00aa;
}
IL_004d:
{
// xrRig.MatchRigUp(Vector3.up);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_9 = V_0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10;
L_10 = Vector3_get_up_mAB5269BFCBCB1BD241450C9BF2F156303D30E0C3_inline(NULL);
NullCheck(L_9);
bool L_11;
L_11 = XRRig_MatchRigUp_m02778B1BD71CC152FF1A66B7C448E1DED5464744(L_9, L_10, NULL);
// break;
goto IL_00aa;
}
IL_005b:
{
// xrRig.MatchRigUp(currentRequest.destinationRotation * Vector3.up);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_12 = V_0;
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_13;
L_13 = TeleportationProvider_get_currentRequest_m0CCE6B6BE488A506F4FD398A18C8D0450ED6C39B_inline(__this, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_14 = L_13.___destinationRotation_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_15;
L_15 = Vector3_get_up_mAB5269BFCBCB1BD241450C9BF2F156303D30E0C3_inline(NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16;
L_16 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_14, L_15, NULL);
NullCheck(L_12);
bool L_17;
L_17 = XRRig_MatchRigUp_m02778B1BD71CC152FF1A66B7C448E1DED5464744(L_12, L_16, NULL);
// break;
goto IL_00aa;
}
IL_0079:
{
// xrRig.MatchRigUpCameraForward(currentRequest.destinationRotation * Vector3.up, currentRequest.destinationRotation * Vector3.forward);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_18 = V_0;
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_19;
L_19 = TeleportationProvider_get_currentRequest_m0CCE6B6BE488A506F4FD398A18C8D0450ED6C39B_inline(__this, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_20 = L_19.___destinationRotation_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21;
L_21 = Vector3_get_up_mAB5269BFCBCB1BD241450C9BF2F156303D30E0C3_inline(NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_22;
L_22 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_20, L_21, NULL);
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_23;
L_23 = TeleportationProvider_get_currentRequest_m0CCE6B6BE488A506F4FD398A18C8D0450ED6C39B_inline(__this, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_24 = L_23.___destinationRotation_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_25;
L_25 = Vector3_get_forward_mEBAB24D77FC02FC88ED880738C3B1D47C758B3EB_inline(NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_26;
L_26 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_24, L_25, NULL);
NullCheck(L_18);
bool L_27;
L_27 = XRRig_MatchRigUpCameraForward_m0C2B0CEA4D62279A7E2D370B072996F8418D550E(L_18, L_22, L_26, NULL);
}
IL_00aa:
{
// var heightAdjustment = xrRig.rig.transform.up * xrRig.cameraInRigSpaceHeight;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_28 = V_0;
NullCheck(L_28);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_29;
L_29 = XRRig_get_rig_mE186F9F6B042C09CA316CFB7137A8CC44D49A573_inline(L_28, NULL);
NullCheck(L_29);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_30;
L_30 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_29, NULL);
NullCheck(L_30);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_31;
L_31 = Transform_get_up_mE47A9D9D96422224DD0539AA5524DA5440145BB2(L_30, NULL);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_32 = V_0;
NullCheck(L_32);
float L_33;
L_33 = XRRig_get_cameraInRigSpaceHeight_m9ED1541D7D6485281124CE4EC109D826851BC575(L_32, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_34;
L_34 = Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline(L_31, L_33, NULL);
V_1 = L_34;
// var cameraDestination = currentRequest.destinationPosition + heightAdjustment;
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_35;
L_35 = TeleportationProvider_get_currentRequest_m0CCE6B6BE488A506F4FD398A18C8D0450ED6C39B_inline(__this, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_36 = L_35.___destinationPosition_0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_37 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_38;
L_38 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_36, L_37, NULL);
V_2 = L_38;
// xrRig.MoveCameraToWorldLocation(cameraDestination);
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_39 = V_0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_40 = V_2;
NullCheck(L_39);
bool L_41;
L_41 = XRRig_MoveCameraToWorldLocation_mA5697533798D47028152B51FCB8B68BC48CC2B0D(L_39, L_40, NULL);
}
IL_00e0:
{
// EndLocomotion();
bool L_42;
L_42 = LocomotionProvider_EndLocomotion_m64CC4C14527FF9F8D2956159425A2208E4612ECB(__this, NULL);
// validRequest = false;
TeleportationProvider_set_validRequest_m539A9FBCF21BBCE6062D888442666D0679B27B0D_inline(__this, (bool)0, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.TeleportationProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TeleportationProvider__ctor_mE4031FC9A5B03DA60B3C68E52F39D0F721C3C2ED (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, const RuntimeMethod* method)
{
{
LocomotionProvider__ctor_m402BA4925BA100FA69742DD86D76BA0ECB39C7E7(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.GizmoHelpers::DrawWirePlaneOriented(UnityEngine.Vector3,UnityEngine.Quaternion,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GizmoHelpers_DrawWirePlaneOriented_m601D38814CCE4734D7248C027878AC09610001FA (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position0, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rotation1, float ___size2, const RuntimeMethod* method)
{
float V_0 = 0.0f;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
memset((&V_1), 0, sizeof(V_1));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
memset((&V_2), 0, sizeof(V_2));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_3;
memset((&V_3), 0, sizeof(V_3));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_4;
memset((&V_4), 0, sizeof(V_4));
{
// var halfSize = size / 2f;
float L_0 = ___size2;
V_0 = ((float)((float)L_0/(float)(2.0f)));
// var tl = new Vector3(halfSize, 0f, -halfSize);
float L_1 = V_0;
float L_2 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_1), L_1, (0.0f), ((-L_2)), NULL);
// var tr = new Vector3(halfSize, 0f, halfSize);
float L_3 = V_0;
float L_4 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_2), L_3, (0.0f), L_4, NULL);
// var bl = new Vector3(-halfSize, 0f, -halfSize);
float L_5 = V_0;
float L_6 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_3), ((-L_5)), (0.0f), ((-L_6)), NULL);
// var br = new Vector3(-halfSize, 0f, halfSize);
float L_7 = V_0;
float L_8 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_4), ((-L_7)), (0.0f), L_8, NULL);
// Gizmos.DrawLine((rotation * tl) + position,
// (rotation * tr) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_9 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_11;
L_11 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_9, L_10, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
L_13 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_11, L_12, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_14 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_15 = V_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16;
L_16 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_14, L_15, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_18;
L_18 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_16, L_17, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_13, L_18, NULL);
// Gizmos.DrawLine((rotation * tr) + position,
// (rotation * br) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_19 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = V_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21;
L_21 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_19, L_20, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_22 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_23;
L_23 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_21, L_22, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_24 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_25 = V_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_26;
L_26 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_24, L_25, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_27 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_28;
L_28 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_26, L_27, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_23, L_28, NULL);
// Gizmos.DrawLine((rotation * br) + position,
// (rotation * bl) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_29 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_30 = V_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_31;
L_31 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_29, L_30, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_32 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_33;
L_33 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_31, L_32, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_34 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_35 = V_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_36;
L_36 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_34, L_35, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_37 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_38;
L_38 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_36, L_37, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_33, L_38, NULL);
// Gizmos.DrawLine((rotation * bl) + position,
// (rotation * tl) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_39 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_40 = V_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_41;
L_41 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_39, L_40, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_42 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_43;
L_43 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_41, L_42, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_44 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_45 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_46;
L_46 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_44, L_45, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_47 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_48;
L_48 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_46, L_47, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_43, L_48, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.GizmoHelpers::DrawWireCubeOriented(UnityEngine.Vector3,UnityEngine.Quaternion,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GizmoHelpers_DrawWireCubeOriented_mB0B3D31FD9FCEFEC22AFB3B26E9AA374BB918730 (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position0, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rotation1, float ___size2, const RuntimeMethod* method)
{
float V_0 = 0.0f;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
memset((&V_1), 0, sizeof(V_1));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
memset((&V_2), 0, sizeof(V_2));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_3;
memset((&V_3), 0, sizeof(V_3));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_4;
memset((&V_4), 0, sizeof(V_4));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_5;
memset((&V_5), 0, sizeof(V_5));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_6;
memset((&V_6), 0, sizeof(V_6));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_7;
memset((&V_7), 0, sizeof(V_7));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_8;
memset((&V_8), 0, sizeof(V_8));
{
// var halfSize = size / 2f;
float L_0 = ___size2;
V_0 = ((float)((float)L_0/(float)(2.0f)));
// var tl = new Vector3(halfSize, 0f, -halfSize);
float L_1 = V_0;
float L_2 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_1), L_1, (0.0f), ((-L_2)), NULL);
// var tr = new Vector3(halfSize, 0f, halfSize);
float L_3 = V_0;
float L_4 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_2), L_3, (0.0f), L_4, NULL);
// var bl = new Vector3(-halfSize, 0f, -halfSize);
float L_5 = V_0;
float L_6 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_3), ((-L_5)), (0.0f), ((-L_6)), NULL);
// var br = new Vector3(-halfSize, 0f, halfSize);
float L_7 = V_0;
float L_8 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_4), ((-L_7)), (0.0f), L_8, NULL);
// var tlt = new Vector3(halfSize, size, -halfSize);
float L_9 = V_0;
float L_10 = ___size2;
float L_11 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_5), L_9, L_10, ((-L_11)), NULL);
// var trt = new Vector3(halfSize, size, halfSize);
float L_12 = V_0;
float L_13 = ___size2;
float L_14 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_6), L_12, L_13, L_14, NULL);
// var blt = new Vector3(-halfSize, size, -halfSize);
float L_15 = V_0;
float L_16 = ___size2;
float L_17 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_7), ((-L_15)), L_16, ((-L_17)), NULL);
// var brt = new Vector3(-halfSize, size, halfSize);
float L_18 = V_0;
float L_19 = ___size2;
float L_20 = V_0;
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_8), ((-L_18)), L_19, L_20, NULL);
// Gizmos.DrawLine((rotation * tl) + position, (rotation * tr) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_21 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_22 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_23;
L_23 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_21, L_22, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_25;
L_25 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_23, L_24, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_26 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_27 = V_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_28;
L_28 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_26, L_27, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_29 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_30;
L_30 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_28, L_29, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_25, L_30, NULL);
// Gizmos.DrawLine((rotation * tr) + position, (rotation * br) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_31 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_32 = V_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_33;
L_33 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_31, L_32, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_34 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_35;
L_35 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_33, L_34, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_36 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_37 = V_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_38;
L_38 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_36, L_37, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_39 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_40;
L_40 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_38, L_39, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_35, L_40, NULL);
// Gizmos.DrawLine((rotation * br) + position, (rotation * bl) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_41 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_42 = V_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_43;
L_43 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_41, L_42, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_44 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_45;
L_45 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_43, L_44, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_46 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_47 = V_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_48;
L_48 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_46, L_47, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_49 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_50;
L_50 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_48, L_49, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_45, L_50, NULL);
// Gizmos.DrawLine((rotation * bl) + position, (rotation * tl) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_51 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_52 = V_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_53;
L_53 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_51, L_52, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_54 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_55;
L_55 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_53, L_54, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_56 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_57 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_58;
L_58 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_56, L_57, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_59 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_60;
L_60 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_58, L_59, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_55, L_60, NULL);
// Gizmos.DrawLine((rotation * tlt) + position, (rotation * trt) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_61 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_62 = V_5;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_63;
L_63 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_61, L_62, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_64 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_65;
L_65 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_63, L_64, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_66 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_67 = V_6;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_68;
L_68 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_66, L_67, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_69 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_70;
L_70 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_68, L_69, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_65, L_70, NULL);
// Gizmos.DrawLine((rotation * trt) + position, (rotation * brt) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_71 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_72 = V_6;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_73;
L_73 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_71, L_72, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_74 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_75;
L_75 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_73, L_74, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_76 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_77 = V_8;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_78;
L_78 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_76, L_77, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_79 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_80;
L_80 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_78, L_79, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_75, L_80, NULL);
// Gizmos.DrawLine((rotation * brt) + position, (rotation * blt) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_81 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_82 = V_8;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_83;
L_83 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_81, L_82, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_84 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_85;
L_85 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_83, L_84, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_86 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_87 = V_7;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_88;
L_88 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_86, L_87, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_89 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_90;
L_90 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_88, L_89, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_85, L_90, NULL);
// Gizmos.DrawLine((rotation * blt) + position, (rotation * tlt) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_91 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_92 = V_7;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_93;
L_93 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_91, L_92, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_94 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_95;
L_95 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_93, L_94, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_96 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_97 = V_5;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_98;
L_98 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_96, L_97, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_99 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_100;
L_100 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_98, L_99, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_95, L_100, NULL);
// Gizmos.DrawLine((rotation * tlt) + position, (rotation * tl) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_101 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_102 = V_5;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_103;
L_103 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_101, L_102, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_104 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_105;
L_105 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_103, L_104, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_106 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_107 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_108;
L_108 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_106, L_107, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_109 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_110;
L_110 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_108, L_109, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_105, L_110, NULL);
// Gizmos.DrawLine((rotation * trt) + position, (rotation * tr) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_111 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_112 = V_6;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_113;
L_113 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_111, L_112, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_114 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_115;
L_115 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_113, L_114, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_116 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_117 = V_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_118;
L_118 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_116, L_117, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_119 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_120;
L_120 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_118, L_119, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_115, L_120, NULL);
// Gizmos.DrawLine((rotation * brt) + position, (rotation * br) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_121 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_122 = V_8;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_123;
L_123 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_121, L_122, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_124 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_125;
L_125 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_123, L_124, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_126 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_127 = V_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_128;
L_128 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_126, L_127, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_129 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_130;
L_130 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_128, L_129, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_125, L_130, NULL);
// Gizmos.DrawLine((rotation * blt) + position, (rotation * bl) + position);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_131 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_132 = V_7;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_133;
L_133 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_131, L_132, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_134 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_135;
L_135 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_133, L_134, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_136 = ___rotation1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_137 = V_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_138;
L_138 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_136, L_137, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_139 = ___position0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_140;
L_140 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_138, L_139, NULL);
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_135, L_140, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.GizmoHelpers::DrawAxisArrows(UnityEngine.Transform,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GizmoHelpers_DrawAxisArrows_m2E693699692850260E01A003FDE03C207C04804F (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___transform0, float ___size1, const RuntimeMethod* method)
{
{
// var position = transform.position;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_0 = ___transform0;
NullCheck(L_0);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
L_1 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_0, NULL);
// Gizmos.color = Color.blue;
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2;
L_2 = Color_get_blue_m0D04554379CB8606EF48E3091CDC3098B81DD86D_inline(NULL);
Gizmos_set_color_mFD4A7935FF025F5922374A8DD797BA0558BF1AD2(L_2, NULL);
// Gizmos.DrawRay(position, transform.forward * size);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = L_1;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_4 = ___transform0;
NullCheck(L_4);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5;
L_5 = Transform_get_forward_mFCFACF7165FDAB21E80E384C494DF278386CEE2F(L_4, NULL);
float L_6 = ___size1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7;
L_7 = Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline(L_5, L_6, NULL);
Gizmos_DrawRay_m0FB8AC474F4025A0775879DC8640C8816E14A454(L_3, L_7, NULL);
// Gizmos.color = Color.green;
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_8;
L_8 = Color_get_green_m336EB73DD4A5B11B7F405CF4BC7F37A466FB4FF7_inline(NULL);
Gizmos_set_color_mFD4A7935FF025F5922374A8DD797BA0558BF1AD2(L_8, NULL);
// Gizmos.DrawRay(position, transform.up * size);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9 = L_3;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_10 = ___transform0;
NullCheck(L_10);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_11;
L_11 = Transform_get_up_mE47A9D9D96422224DD0539AA5524DA5440145BB2(L_10, NULL);
float L_12 = ___size1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
L_13 = Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline(L_11, L_12, NULL);
Gizmos_DrawRay_m0FB8AC474F4025A0775879DC8640C8816E14A454(L_9, L_13, NULL);
// Gizmos.color = Color.red;
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_14;
L_14 = Color_get_red_m27D04C1E5FE794AD933B7B9364F3D34B9EA25109_inline(NULL);
Gizmos_set_color_mFD4A7935FF025F5922374A8DD797BA0558BF1AD2(L_14, NULL);
// Gizmos.DrawRay(position, transform.right * size);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_15 = ___transform0;
NullCheck(L_15);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16;
L_16 = Transform_get_right_mC6DC057C23313802E2186A9E0DB760D795A758A4(L_15, NULL);
float L_17 = ___size1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_18;
L_18 = Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline(L_16, L_17, NULL);
Gizmos_DrawRay_m0FB8AC474F4025A0775879DC8640C8816E14A454(L_9, L_18, NULL);
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean UnityEngine.XR.Interaction.Toolkit.InputHelpers::IsPressed(UnityEngine.XR.InputDevice,UnityEngine.XR.Interaction.Toolkit.InputHelpers/Button,System.Boolean&,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputHelpers_IsPressed_mD0516F35AE1B3765A098C89EDBC1E5F1E68144E2 (InputDevice_t882EE3EE8A71D8F5F38BA3F9356A49F24510E8BD ___device0, int32_t ___button1, bool* ___isPressed2, float ___pressThreshold3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputFeatureUsage_1__ctor_m6357AF3E3C16046E807776AA58473ABC83F88989_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputFeatureUsage_1__ctor_mEB36F8937385A1065CD9F48AE2DAD9EAE49EFCE7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
bool V_2 = false;
float V_3 = 0.0f;
float V_4 = 0.0f;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_5;
memset((&V_5), 0, sizeof(V_5));
float V_6 = 0.0f;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_7;
memset((&V_7), 0, sizeof(V_7));
float V_8 = 0.0f;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_9;
memset((&V_9), 0, sizeof(V_9));
float V_10 = 0.0f;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_11;
memset((&V_11), 0, sizeof(V_11));
float V_12 = 0.0f;
float G_B12_0 = 0.0f;
float G_B17_0 = 0.0f;
float G_B22_0 = 0.0f;
float G_B27_0 = 0.0f;
float G_B32_0 = 0.0f;
{
// if ((int)button >= s_ButtonData.Length)
int32_t L_0 = ___button1;
il2cpp_codegen_runtime_class_init_inline(InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_il2cpp_TypeInfo_var);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_1 = ((InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_StaticFields*)il2cpp_codegen_static_fields_for(InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_il2cpp_TypeInfo_var))->___s_ButtonData_0;
NullCheck(L_1);
if ((((int32_t)L_0) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))
{
goto IL_0015;
}
}
{
// throw new ArgumentException("[InputHelpers.IsPressed] The value of <button> is out of the supported range.");
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC0E522E41B31F469B561B936335484000D89DE4A)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputHelpers_IsPressed_mD0516F35AE1B3765A098C89EDBC1E5F1E68144E2_RuntimeMethod_var)));
}
IL_0015:
{
// if (!device.isValid)
bool L_3;
L_3 = InputDevice_get_isValid_mA908CF8195CECA44FF457430AFF9198C3FEC0948((&___device0), NULL);
if (L_3)
{
goto IL_0023;
}
}
{
// isPressed = false;
bool* L_4 = ___isPressed2;
*((int8_t*)L_4) = (int8_t)0;
// return false;
return (bool)0;
}
IL_0023:
{
// var info = s_ButtonData[(int)button];
il2cpp_codegen_runtime_class_init_inline(InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_il2cpp_TypeInfo_var);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_5 = ((InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_StaticFields*)il2cpp_codegen_static_fields_for(InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_il2cpp_TypeInfo_var))->___s_ButtonData_0;
int32_t L_6 = ___button1;
NullCheck(L_5);
int32_t L_7 = L_6;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_0 = L_8;
// switch (info.type)
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_9 = V_0;
int32_t L_10 = L_9.___type_1;
V_1 = L_10;
int32_t L_11 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)))
{
case 0:
{
goto IL_005b;
}
case 1:
{
goto IL_0079;
}
case 2:
{
goto IL_00b0;
}
case 3:
{
goto IL_00ed;
}
case 4:
{
goto IL_012b;
}
case 5:
{
goto IL_0166;
}
}
}
{
goto IL_01a0;
}
IL_005b:
{
// if (device.TryGetFeatureValue(new InputFeatureUsage<bool>(info.name), out var value))
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_12 = V_0;
String_t* L_13 = L_12.___name_0;
InputFeatureUsage_1_tE336B2F0B9AC721519BFA17A08D6353FD5221637 L_14;
memset((&L_14), 0, sizeof(L_14));
InputFeatureUsage_1__ctor_mEB36F8937385A1065CD9F48AE2DAD9EAE49EFCE7((&L_14), L_13, /*hidden argument*/InputFeatureUsage_1__ctor_mEB36F8937385A1065CD9F48AE2DAD9EAE49EFCE7_RuntimeMethod_var);
bool L_15;
L_15 = InputDevice_TryGetFeatureValue_m24EC3B6C41AE4098269427232AD5F52E786BF884((&___device0), L_14, (&V_2), NULL);
if (!L_15)
{
goto IL_01a0;
}
}
{
// isPressed = value;
bool* L_16 = ___isPressed2;
bool L_17 = V_2;
*((int8_t*)L_16) = (int8_t)L_17;
// return true;
return (bool)1;
}
IL_0079:
{
// if (device.TryGetFeatureValue(new InputFeatureUsage<float>(info.name), out var value))
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_18 = V_0;
String_t* L_19 = L_18.___name_0;
InputFeatureUsage_1_t311D0F42F1A7BF37D3CEAC15A53A1F24165F1848 L_20;
memset((&L_20), 0, sizeof(L_20));
InputFeatureUsage_1__ctor_m6357AF3E3C16046E807776AA58473ABC83F88989((&L_20), L_19, /*hidden argument*/InputFeatureUsage_1__ctor_m6357AF3E3C16046E807776AA58473ABC83F88989_RuntimeMethod_var);
bool L_21;
L_21 = InputDevice_TryGetFeatureValue_m675D52240379FEF80D6499B5031941812FDFD081((&___device0), L_20, (&V_3), NULL);
if (!L_21)
{
goto IL_01a0;
}
}
{
// var threshold = (pressThreshold >= 0f) ? pressThreshold : k_DefaultPressThreshold;
float L_22 = ___pressThreshold3;
if ((((float)L_22) >= ((float)(0.0f))))
{
goto IL_00a1;
}
}
{
G_B12_0 = (0.100000001f);
goto IL_00a2;
}
IL_00a1:
{
float L_23 = ___pressThreshold3;
G_B12_0 = L_23;
}
IL_00a2:
{
V_4 = G_B12_0;
// isPressed = value >= threshold;
bool* L_24 = ___isPressed2;
float L_25 = V_3;
float L_26 = V_4;
*((int8_t*)L_24) = (int8_t)((((int32_t)((!(((float)L_25) >= ((float)L_26)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
// return true;
return (bool)1;
}
IL_00b0:
{
// if (device.TryGetFeatureValue(new InputFeatureUsage<Vector2>(info.name), out var value))
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_27 = V_0;
String_t* L_28 = L_27.___name_0;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_29;
memset((&L_29), 0, sizeof(L_29));
InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A((&L_29), L_28, /*hidden argument*/InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A_RuntimeMethod_var);
bool L_30;
L_30 = InputDevice_TryGetFeatureValue_mB2C15D1FC747DA9FB5958FA17E77049886FB3BBA((&___device0), L_29, (&V_5), NULL);
if (!L_30)
{
goto IL_01a0;
}
}
{
// var threshold = (pressThreshold >= 0f) ? pressThreshold : k_DefaultPressThreshold;
float L_31 = ___pressThreshold3;
if ((((float)L_31) >= ((float)(0.0f))))
{
goto IL_00d8;
}
}
{
G_B17_0 = (0.100000001f);
goto IL_00d9;
}
IL_00d8:
{
float L_32 = ___pressThreshold3;
G_B17_0 = L_32;
}
IL_00d9:
{
V_6 = G_B17_0;
// isPressed = value.y >= threshold;
bool* L_33 = ___isPressed2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_34 = V_5;
float L_35 = L_34.___y_1;
float L_36 = V_6;
*((int8_t*)L_33) = (int8_t)((((int32_t)((!(((float)L_35) >= ((float)L_36)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
// return true;
return (bool)1;
}
IL_00ed:
{
// if (device.TryGetFeatureValue(new InputFeatureUsage<Vector2>(info.name), out var value))
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_37 = V_0;
String_t* L_38 = L_37.___name_0;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_39;
memset((&L_39), 0, sizeof(L_39));
InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A((&L_39), L_38, /*hidden argument*/InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A_RuntimeMethod_var);
bool L_40;
L_40 = InputDevice_TryGetFeatureValue_mB2C15D1FC747DA9FB5958FA17E77049886FB3BBA((&___device0), L_39, (&V_7), NULL);
if (!L_40)
{
goto IL_01a0;
}
}
{
// var threshold = (pressThreshold >= 0f) ? pressThreshold : k_DefaultPressThreshold;
float L_41 = ___pressThreshold3;
if ((((float)L_41) >= ((float)(0.0f))))
{
goto IL_0115;
}
}
{
G_B22_0 = (0.100000001f);
goto IL_0116;
}
IL_0115:
{
float L_42 = ___pressThreshold3;
G_B22_0 = L_42;
}
IL_0116:
{
V_8 = G_B22_0;
// isPressed = value.y <= -threshold;
bool* L_43 = ___isPressed2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_44 = V_7;
float L_45 = L_44.___y_1;
float L_46 = V_8;
*((int8_t*)L_43) = (int8_t)((((int32_t)((!(((float)L_45) <= ((float)((-L_46)))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
// return true;
return (bool)1;
}
IL_012b:
{
// if (device.TryGetFeatureValue(new InputFeatureUsage<Vector2>(info.name), out var value))
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_47 = V_0;
String_t* L_48 = L_47.___name_0;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_49;
memset((&L_49), 0, sizeof(L_49));
InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A((&L_49), L_48, /*hidden argument*/InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A_RuntimeMethod_var);
bool L_50;
L_50 = InputDevice_TryGetFeatureValue_mB2C15D1FC747DA9FB5958FA17E77049886FB3BBA((&___device0), L_49, (&V_9), NULL);
if (!L_50)
{
goto IL_01a0;
}
}
{
// var threshold = (pressThreshold >= 0f) ? pressThreshold : k_DefaultPressThreshold;
float L_51 = ___pressThreshold3;
if ((((float)L_51) >= ((float)(0.0f))))
{
goto IL_0150;
}
}
{
G_B27_0 = (0.100000001f);
goto IL_0151;
}
IL_0150:
{
float L_52 = ___pressThreshold3;
G_B27_0 = L_52;
}
IL_0151:
{
V_10 = G_B27_0;
// isPressed = value.x <= -threshold;
bool* L_53 = ___isPressed2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_54 = V_9;
float L_55 = L_54.___x_0;
float L_56 = V_10;
*((int8_t*)L_53) = (int8_t)((((int32_t)((!(((float)L_55) <= ((float)((-L_56)))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
// return true;
return (bool)1;
}
IL_0166:
{
// if (device.TryGetFeatureValue(new InputFeatureUsage<Vector2>(info.name), out var value))
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_57 = V_0;
String_t* L_58 = L_57.___name_0;
InputFeatureUsage_1_tEB160A05BCDCCA4F96072CBA0866498D06B9A27C L_59;
memset((&L_59), 0, sizeof(L_59));
InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A((&L_59), L_58, /*hidden argument*/InputFeatureUsage_1__ctor_m502985516521824A155A5780090765043843868A_RuntimeMethod_var);
bool L_60;
L_60 = InputDevice_TryGetFeatureValue_mB2C15D1FC747DA9FB5958FA17E77049886FB3BBA((&___device0), L_59, (&V_11), NULL);
if (!L_60)
{
goto IL_01a0;
}
}
{
// var threshold = (pressThreshold >= 0f) ? pressThreshold : k_DefaultPressThreshold;
float L_61 = ___pressThreshold3;
if ((((float)L_61) >= ((float)(0.0f))))
{
goto IL_018b;
}
}
{
G_B32_0 = (0.100000001f);
goto IL_018c;
}
IL_018b:
{
float L_62 = ___pressThreshold3;
G_B32_0 = L_62;
}
IL_018c:
{
V_12 = G_B32_0;
// isPressed = value.x >= threshold;
bool* L_63 = ___isPressed2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_64 = V_11;
float L_65 = L_64.___x_0;
float L_66 = V_12;
*((int8_t*)L_63) = (int8_t)((((int32_t)((!(((float)L_65) >= ((float)L_66)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
// return true;
return (bool)1;
}
IL_01a0:
{
// isPressed = false;
bool* L_67 = ___isPressed2;
*((int8_t*)L_67) = (int8_t)0;
// return false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InputHelpers::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputHelpers__cctor_m9959AB7052F722A32BD5C0F5065FB1D0E0383C5F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24B00BEE43751066E2697652F1D6D262C07E28BF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38500B43596E22322F78E4DB6623115A6D7C5B24);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67D793F7DD951BDE60D6852D926F85A806B85905);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral70BD96A9936A8229937A8E85846B5AE5657B701D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral754BC8CC289786CFBEFC86F613F47EEC45C9D500);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral805CCC40BBBCD72FEA9E12C8D3D97C4C0DF4854C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAC10ECED701E479DB1EB99F71C7E143BF33BDB28);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB387D42F0AFA94CE7B6979B587B90DD3FE6E03AE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB4FE860573CD6E03F0D1A4378C1F330A3820D8C9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB85E78C75EF1A6F636689BD88A9D6C2A3B2B0A1B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC5505A25CF2D095FDF8936A52047CE843140CE71);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC8E762418D8614D739AB43D7D2C189A29AF1145F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8FEC942054577466215DA5251FB602E014D433B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF0B09D3AC2B1A403AD50571DE6D02BADF994DF6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE87E0289369699E3077923D9BD0365C6E47D2BCA);
s_Il2CppMethodInitialized = true;
}
{
// static readonly ButtonInfo[] s_ButtonData =
// {
// new ButtonInfo("", ButtonReadType.None),
// new ButtonInfo("MenuButton", ButtonReadType.Binary),
// new ButtonInfo("Trigger", ButtonReadType.Axis1D),
// new ButtonInfo("Grip", ButtonReadType.Axis1D),
// new ButtonInfo("TriggerPressed", ButtonReadType.Binary),
// new ButtonInfo("GripPressed", ButtonReadType.Binary),
// new ButtonInfo("PrimaryButton", ButtonReadType.Binary),
// new ButtonInfo("PrimaryTouch", ButtonReadType.Binary),
// new ButtonInfo("SecondaryButton", ButtonReadType.Binary),
// new ButtonInfo("SecondaryTouch", ButtonReadType.Binary),
// new ButtonInfo("Primary2DAxisTouch", ButtonReadType.Binary),
// new ButtonInfo("Primary2DAxisClick", ButtonReadType.Binary),
// new ButtonInfo("Secondary2DAxisTouch", ButtonReadType.Binary),
// new ButtonInfo("Secondary2DAxisClick", ButtonReadType.Binary),
// new ButtonInfo("Primary2DAxis", ButtonReadType.Axis2DUp),
// new ButtonInfo("Primary2DAxis", ButtonReadType.Axis2DDown),
// new ButtonInfo("Primary2DAxis", ButtonReadType.Axis2DLeft),
// new ButtonInfo("Primary2DAxis", ButtonReadType.Axis2DRight),
// new ButtonInfo("Secondary2DAxis", ButtonReadType.Axis2DUp),
// new ButtonInfo("Secondary2DAxis", ButtonReadType.Axis2DDown),
// new ButtonInfo("Secondary2DAxis", ButtonReadType.Axis2DLeft),
// new ButtonInfo("Secondary2DAxis", ButtonReadType.Axis2DRight),
// };
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_0 = (ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC*)(ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC*)SZArrayNew(ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC_il2cpp_TypeInfo_var, (uint32_t)((int32_t)22));
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_1 = L_0;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_2;
memset((&L_2), 0, sizeof(L_2));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_2), _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, 0, /*hidden argument*/NULL);
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_2);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_3 = L_1;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_4;
memset((&L_4), 0, sizeof(L_4));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_4), _stringLiteralC5505A25CF2D095FDF8936A52047CE843140CE71, 1, /*hidden argument*/NULL);
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_4);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_5 = L_3;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_6;
memset((&L_6), 0, sizeof(L_6));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_6), _stringLiteralB85E78C75EF1A6F636689BD88A9D6C2A3B2B0A1B, 2, /*hidden argument*/NULL);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_6);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_7 = L_5;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_8;
memset((&L_8), 0, sizeof(L_8));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_8), _stringLiteralB4FE860573CD6E03F0D1A4378C1F330A3820D8C9, 2, /*hidden argument*/NULL);
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(3), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_8);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_9 = L_7;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_10;
memset((&L_10), 0, sizeof(L_10));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_10), _stringLiteral67D793F7DD951BDE60D6852D926F85A806B85905, 1, /*hidden argument*/NULL);
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(4), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_10);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_11 = L_9;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_12;
memset((&L_12), 0, sizeof(L_12));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_12), _stringLiteral805CCC40BBBCD72FEA9E12C8D3D97C4C0DF4854C, 1, /*hidden argument*/NULL);
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(5), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_12);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_13 = L_11;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_14;
memset((&L_14), 0, sizeof(L_14));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_14), _stringLiteralAC10ECED701E479DB1EB99F71C7E143BF33BDB28, 1, /*hidden argument*/NULL);
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(6), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_14);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_15 = L_13;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_16;
memset((&L_16), 0, sizeof(L_16));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_16), _stringLiteralE87E0289369699E3077923D9BD0365C6E47D2BCA, 1, /*hidden argument*/NULL);
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(7), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_16);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_17 = L_15;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_18;
memset((&L_18), 0, sizeof(L_18));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_18), _stringLiteralDF0B09D3AC2B1A403AD50571DE6D02BADF994DF6, 1, /*hidden argument*/NULL);
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(8), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_18);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_19 = L_17;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_20;
memset((&L_20), 0, sizeof(L_20));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_20), _stringLiteral70BD96A9936A8229937A8E85846B5AE5657B701D, 1, /*hidden argument*/NULL);
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_20);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_21 = L_19;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_22;
memset((&L_22), 0, sizeof(L_22));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_22), _stringLiteralD8FEC942054577466215DA5251FB602E014D433B, 1, /*hidden argument*/NULL);
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_22);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_23 = L_21;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_24;
memset((&L_24), 0, sizeof(L_24));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_24), _stringLiteralC8E762418D8614D739AB43D7D2C189A29AF1145F, 1, /*hidden argument*/NULL);
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_24);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_25 = L_23;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_26;
memset((&L_26), 0, sizeof(L_26));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_26), _stringLiteral38500B43596E22322F78E4DB6623115A6D7C5B24, 1, /*hidden argument*/NULL);
NullCheck(L_25);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_26);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_27 = L_25;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_28;
memset((&L_28), 0, sizeof(L_28));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_28), _stringLiteral24B00BEE43751066E2697652F1D6D262C07E28BF, 1, /*hidden argument*/NULL);
NullCheck(L_27);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_28);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_29 = L_27;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_30;
memset((&L_30), 0, sizeof(L_30));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_30), _stringLiteral754BC8CC289786CFBEFC86F613F47EEC45C9D500, 3, /*hidden argument*/NULL);
NullCheck(L_29);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_30);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_31 = L_29;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_32;
memset((&L_32), 0, sizeof(L_32));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_32), _stringLiteral754BC8CC289786CFBEFC86F613F47EEC45C9D500, 4, /*hidden argument*/NULL);
NullCheck(L_31);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_32);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_33 = L_31;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_34;
memset((&L_34), 0, sizeof(L_34));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_34), _stringLiteral754BC8CC289786CFBEFC86F613F47EEC45C9D500, 5, /*hidden argument*/NULL);
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_34);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_35 = L_33;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_36;
memset((&L_36), 0, sizeof(L_36));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_36), _stringLiteral754BC8CC289786CFBEFC86F613F47EEC45C9D500, 6, /*hidden argument*/NULL);
NullCheck(L_35);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_36);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_37 = L_35;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_38;
memset((&L_38), 0, sizeof(L_38));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_38), _stringLiteralB387D42F0AFA94CE7B6979B587B90DD3FE6E03AE, 3, /*hidden argument*/NULL);
NullCheck(L_37);
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_38);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_39 = L_37;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_40;
memset((&L_40), 0, sizeof(L_40));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_40), _stringLiteralB387D42F0AFA94CE7B6979B587B90DD3FE6E03AE, 4, /*hidden argument*/NULL);
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_40);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_41 = L_39;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_42;
memset((&L_42), 0, sizeof(L_42));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_42), _stringLiteralB387D42F0AFA94CE7B6979B587B90DD3FE6E03AE, 5, /*hidden argument*/NULL);
NullCheck(L_41);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_42);
ButtonInfoU5BU5D_tD4403FF73F81188FD2308AB4D827FAB81B5E86FC* L_43 = L_41;
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412 L_44;
memset((&L_44), 0, sizeof(L_44));
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69((&L_44), _stringLiteralB387D42F0AFA94CE7B6979B587B90DD3FE6E03AE, 6, /*hidden argument*/NULL);
NullCheck(L_43);
(L_43)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412)L_44);
((InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_StaticFields*)il2cpp_codegen_static_fields_for(InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_il2cpp_TypeInfo_var))->___s_ButtonData_0 = L_43;
Il2CppCodeGenWriteBarrier((void**)(&((InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_StaticFields*)il2cpp_codegen_static_fields_for(InputHelpers_t6F6BABB51A0BA00202F7D2720513930CFF10810F_il2cpp_TypeInfo_var))->___s_ButtonData_0), (void*)L_43);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo
IL2CPP_EXTERN_C void ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshal_pinvoke(const ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412& unmarshaled, ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshaled_pinvoke& marshaled)
{
marshaled.___name_0 = il2cpp_codegen_marshal_string(unmarshaled.___name_0);
marshaled.___type_1 = unmarshaled.___type_1;
}
IL2CPP_EXTERN_C void ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshal_pinvoke_back(const ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshaled_pinvoke& marshaled, ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412& unmarshaled)
{
unmarshaled.___name_0 = il2cpp_codegen_marshal_string_result(marshaled.___name_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___name_0), (void*)il2cpp_codegen_marshal_string_result(marshaled.___name_0));
int32_t unmarshaled_type_temp_1 = 0;
unmarshaled_type_temp_1 = marshaled.___type_1;
unmarshaled.___type_1 = unmarshaled_type_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo
IL2CPP_EXTERN_C void ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshal_pinvoke_cleanup(ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___name_0);
marshaled.___name_0 = NULL;
}
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo
IL2CPP_EXTERN_C void ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshal_com(const ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412& unmarshaled, ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshaled_com& marshaled)
{
marshaled.___name_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___name_0);
marshaled.___type_1 = unmarshaled.___type_1;
}
IL2CPP_EXTERN_C void ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshal_com_back(const ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshaled_com& marshaled, ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412& unmarshaled)
{
unmarshaled.___name_0 = il2cpp_codegen_marshal_bstring_result(marshaled.___name_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___name_0), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___name_0));
int32_t unmarshaled_type_temp_1 = 0;
unmarshaled_type_temp_1 = marshaled.___type_1;
unmarshaled.___type_1 = unmarshaled_type_temp_1;
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo
IL2CPP_EXTERN_C void ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshal_com_cleanup(ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___name_0);
marshaled.___name_0 = NULL;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonInfo::.ctor(System.String,UnityEngine.XR.Interaction.Toolkit.InputHelpers/ButtonReadType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69 (ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412* __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method)
{
{
// this.name = name;
String_t* L_0 = ___name0;
__this->___name_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_0), (void*)L_0);
// this.type = type;
int32_t L_1 = ___type1;
__this->___type_1 = L_1;
// }
return;
}
}
IL2CPP_EXTERN_C void ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69_AdjustorThunk (RuntimeObject* __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method)
{
ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ButtonInfo_t53A2502E0A81EA56542E786FD84C3A3CB2746412*>(__this + _offset);
ButtonInfo__ctor_m3478ACD7B8502B0839AAA54A15EC75CE3A5A2A69(_thisAdjusted, ___name0, ___type1, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.SortingHelpers::SortByDistanceToInteractor(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortingHelpers_SortByDistanceToInteractor_m0CF489900DE9E2E50248029039EB3ACA64162A34 (XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___interactor0, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___unsortedTargets1, List_1_t02510C493B34D49F210C22C40442D863A08509CB* ___results2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_m079CAFEFDB10EC87A1C25FC08BD32C3F1134A573_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mA255F5E255E66993AEA236E6D1F2BD11AEDEA14F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mE1066F7F49419B6C26CA7685407062B5A484F0FD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m39CF62A1FA54AAD0EE4BC97B663FA35E0C754B21_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_m256078382FC40045587959BD5B9AFAF789460CD1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F V_0;
memset((&V_0), 0, sizeof(V_0));
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_1 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// results.Clear();
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_0 = ___results2;
NullCheck(L_0);
List_1_Clear_m39CF62A1FA54AAD0EE4BC97B663FA35E0C754B21_inline(L_0, List_1_Clear_m39CF62A1FA54AAD0EE4BC97B663FA35E0C754B21_RuntimeMethod_var);
// results.AddRange(unsortedTargets);
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_1 = ___results2;
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_2 = ___unsortedTargets1;
NullCheck(L_1);
List_1_AddRange_mE1066F7F49419B6C26CA7685407062B5A484F0FD(L_1, L_2, List_1_AddRange_mE1066F7F49419B6C26CA7685407062B5A484F0FD_RuntimeMethod_var);
// s_InteractableDistanceSqrMap.Clear();
il2cpp_codegen_runtime_class_init_inline(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var);
Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F* L_3 = ((SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_StaticFields*)il2cpp_codegen_static_fields_for(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var))->___s_InteractableDistanceSqrMap_0;
NullCheck(L_3);
Dictionary_2_Clear_m079CAFEFDB10EC87A1C25FC08BD32C3F1134A573(L_3, Dictionary_2_Clear_m079CAFEFDB10EC87A1C25FC08BD32C3F1134A573_RuntimeMethod_var);
// foreach (var interactable in unsortedTargets)
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_4 = ___unsortedTargets1;
NullCheck(L_4);
Enumerator_t03D3177241C168800EA82D53FA252EDAB1A1DC2F L_5;
L_5 = List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A(L_4, List_1_GetEnumerator_mC83A3B411E86D6314A308659C46F0459CD258E7A_RuntimeMethod_var);
V_0 = L_5;
}
IL_001e:
try
{// begin try (depth: 1)
{
goto IL_003a;
}
IL_0020:
{
// foreach (var interactable in unsortedTargets)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_6;
L_6 = Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_inline((&V_0), Enumerator_get_Current_m92CD20C682EC8D139A43D8CB302B3794D963B156_RuntimeMethod_var);
V_1 = L_6;
// s_InteractableDistanceSqrMap[interactable] = interactable.GetDistanceSqrToInteractor(interactor);
il2cpp_codegen_runtime_class_init_inline(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var);
Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F* L_7 = ((SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_StaticFields*)il2cpp_codegen_static_fields_for(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var))->___s_InteractableDistanceSqrMap_0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_8 = V_1;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_9 = V_1;
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_10 = ___interactor0;
NullCheck(L_9);
float L_11;
L_11 = VirtualFuncInvoker1< float, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* >::Invoke(9 /* System.Single UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable::GetDistanceSqrToInteractor(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractor) */, L_9, L_10);
NullCheck(L_7);
Dictionary_2_set_Item_mA255F5E255E66993AEA236E6D1F2BD11AEDEA14F(L_7, L_8, L_11, Dictionary_2_set_Item_mA255F5E255E66993AEA236E6D1F2BD11AEDEA14F_RuntimeMethod_var);
}
IL_003a:
{
// foreach (var interactable in unsortedTargets)
bool L_12;
L_12 = Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A((&V_0), Enumerator_MoveNext_m24BF706CF8F7F8A66DE3894B2243FD6DAA62879A_RuntimeMethod_var);
if (L_12)
{
goto IL_0020;
}
}
IL_0043:
{
IL2CPP_LEAVE(0x83, FINALLY_0045);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_0045;
}
FINALLY_0045:
{// begin finally (depth: 1)
Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032((&V_0), Enumerator_Dispose_m6D2223014275188A865A6CC79616F9A23389D032_RuntimeMethod_var);
IL2CPP_END_FINALLY(69)
}// end finally (depth: 1)
IL2CPP_CLEANUP(69)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x83, IL_0053)
}
IL_0053:
{
// results.Sort(s_InteractableDistanceComparison);
List_1_t02510C493B34D49F210C22C40442D863A08509CB* L_13 = ___results2;
il2cpp_codegen_runtime_class_init_inline(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var);
Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A* L_14 = ((SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_StaticFields*)il2cpp_codegen_static_fields_for(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var))->___s_InteractableDistanceComparison_1;
NullCheck(L_13);
List_1_Sort_m256078382FC40045587959BD5B9AFAF789460CD1(L_13, L_14, List_1_Sort_m256078382FC40045587959BD5B9AFAF789460CD1_RuntimeMethod_var);
// }
return;
}
}
// System.Int32 UnityEngine.XR.Interaction.Toolkit.SortingHelpers::InteractableDistanceComparison(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable,UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortingHelpers_InteractableDistanceComparison_m0D9C672112352117F140EF9F99E1113BA8B2041A (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___x0, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mE0F123D3CCC105693B04EE651053CD324DC2FD4A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
float V_1 = 0.0f;
{
// var xDistance = s_InteractableDistanceSqrMap[x];
il2cpp_codegen_runtime_class_init_inline(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var);
Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F* L_0 = ((SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_StaticFields*)il2cpp_codegen_static_fields_for(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var))->___s_InteractableDistanceSqrMap_0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_1 = ___x0;
NullCheck(L_0);
float L_2;
L_2 = Dictionary_2_get_Item_mE0F123D3CCC105693B04EE651053CD324DC2FD4A(L_0, L_1, Dictionary_2_get_Item_mE0F123D3CCC105693B04EE651053CD324DC2FD4A_RuntimeMethod_var);
V_0 = L_2;
// var yDistance = s_InteractableDistanceSqrMap[y];
Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F* L_3 = ((SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_StaticFields*)il2cpp_codegen_static_fields_for(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var))->___s_InteractableDistanceSqrMap_0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_4 = ___y1;
NullCheck(L_3);
float L_5;
L_5 = Dictionary_2_get_Item_mE0F123D3CCC105693B04EE651053CD324DC2FD4A(L_3, L_4, Dictionary_2_get_Item_mE0F123D3CCC105693B04EE651053CD324DC2FD4A_RuntimeMethod_var);
V_1 = L_5;
// if (xDistance > yDistance)
float L_6 = V_0;
float L_7 = V_1;
if ((!(((float)L_6) > ((float)L_7))))
{
goto IL_001e;
}
}
{
// return 1;
return 1;
}
IL_001e:
{
// if (xDistance < yDistance)
float L_8 = V_0;
float L_9 = V_1;
if ((!(((float)L_8) < ((float)L_9))))
{
goto IL_0024;
}
}
{
// return -1;
return (-1);
}
IL_0024:
{
// return 0;
return 0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.SortingHelpers::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortingHelpers__cctor_m5B6BEBB684FF311488D74E34B93688E9AE00BCE2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1__ctor_mD2DDA56B9090282D66F10976E281BE284F0209B7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m09DA62123E32D2F4548D8180EC0ADFF29CFF5074_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortingHelpers_InteractableDistanceComparison_m0D9C672112352117F140EF9F99E1113BA8B2041A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static readonly Dictionary<XRBaseInteractable, float> s_InteractableDistanceSqrMap = new Dictionary<XRBaseInteractable, float>();
Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F* L_0 = (Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F*)il2cpp_codegen_object_new(Dictionary_2_tB99319F1361663A7CCEE0E9698ED312F4C80AE0F_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m09DA62123E32D2F4548D8180EC0ADFF29CFF5074(L_0, /*hidden argument*/Dictionary_2__ctor_m09DA62123E32D2F4548D8180EC0ADFF29CFF5074_RuntimeMethod_var);
((SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_StaticFields*)il2cpp_codegen_static_fields_for(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var))->___s_InteractableDistanceSqrMap_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_StaticFields*)il2cpp_codegen_static_fields_for(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var))->___s_InteractableDistanceSqrMap_0), (void*)L_0);
// static readonly Comparison<XRBaseInteractable> s_InteractableDistanceComparison = InteractableDistanceComparison;
Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A* L_1 = (Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A*)il2cpp_codegen_object_new(Comparison_1_t58F051979AFFE9336E51E124BC6F0F3A10C6800A_il2cpp_TypeInfo_var);
Comparison_1__ctor_mD2DDA56B9090282D66F10976E281BE284F0209B7(L_1, NULL, (intptr_t)((void*)SortingHelpers_InteractableDistanceComparison_m0D9C672112352117F140EF9F99E1113BA8B2041A_RuntimeMethod_var), /*hidden argument*/Comparison_1__ctor_mD2DDA56B9090282D66F10976E281BE284F0209B7_RuntimeMethod_var);
((SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_StaticFields*)il2cpp_codegen_static_fields_for(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var))->___s_InteractableDistanceComparison_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_StaticFields*)il2cpp_codegen_static_fields_for(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var))->___s_InteractableDistanceComparison_1), (void*)L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.XRRig::get_rig()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* XRRig_get_rig_mE186F9F6B042C09CA316CFB7137A8CC44D49A573 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// get => m_RigBaseGameObject;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_RigBaseGameObject_5;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::set_rig(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_set_rig_m3EB7C0D9BD2B867ACF1E100075E0C0BB467FCF95 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// set => m_RigBaseGameObject = value;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___m_RigBaseGameObject_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RigBaseGameObject_5), (void*)L_0);
return;
}
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.XRRig::get_cameraFloorOffsetObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* XRRig_get_cameraFloorOffsetObject_m1218E7E974839EBB80C129E4611301124283D235 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// get => m_CameraFloorOffsetObject;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CameraFloorOffsetObject_6;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::set_cameraFloorOffsetObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_set_cameraFloorOffsetObject_mC072D15643C2FCF1B004A287E0663BA6DBAED604 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// m_CameraFloorOffsetObject = value;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___m_CameraFloorOffsetObject_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraFloorOffsetObject_6), (void*)L_0);
// MoveOffsetHeight();
XRRig_MoveOffsetHeight_m6AF8AA5C9DB9F82E9B7A997E45619DC10A122C64(__this, NULL);
// }
return;
}
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.XRRig::get_cameraGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* XRRig_get_cameraGameObject_m599F292919A35F8427477F95D733377B56C43A73 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// get => m_CameraGameObject;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CameraGameObject_7;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::set_cameraGameObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_set_cameraGameObject_m68EB375A3940A631155A30F1E85E712B5CCF73FC (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// set => m_CameraGameObject = value;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___m_CameraGameObject_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraGameObject_7), (void*)L_0);
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.XRRig/TrackingOriginMode UnityEngine.XR.Interaction.Toolkit.XRRig::get_requestedTrackingOriginMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRRig_get_requestedTrackingOriginMode_m2B0C613651F5A2D11D9DE5C35206BFBC5FC44951 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// get => m_RequestedTrackingOriginMode;
int32_t L_0 = __this->___m_RequestedTrackingOriginMode_8;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::set_requestedTrackingOriginMode(UnityEngine.XR.Interaction.Toolkit.XRRig/TrackingOriginMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_set_requestedTrackingOriginMode_mB5AAE42249EF32E76A05CD7875576146B37BE378 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// m_RequestedTrackingOriginMode = value;
int32_t L_0 = ___value0;
__this->___m_RequestedTrackingOriginMode_8 = L_0;
// TryInitializeCamera();
XRRig_TryInitializeCamera_m2A3FCB48EC42E30997999D41D5D473F3B6DE3790(__this, NULL);
// }
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRig::get_cameraYOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRRig_get_cameraYOffset_m671108AC8E1F340886A0B37C38155586F3499B84 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// get => m_CameraYOffset;
float L_0 = __this->___m_CameraYOffset_9;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::set_cameraYOffset(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_set_cameraYOffset_m289E1253EB6C747D6D221881829D5E88874BC810 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, float ___value0, const RuntimeMethod* method)
{
{
// m_CameraYOffset = value;
float L_0 = ___value0;
__this->___m_CameraYOffset_9 = L_0;
// MoveOffsetHeight();
XRRig_MoveOffsetHeight_m6AF8AA5C9DB9F82E9B7A997E45619DC10A122C64(__this, NULL);
// }
return;
}
}
// UnityEngine.XR.TrackingOriginModeFlags UnityEngine.XR.Interaction.Toolkit.XRRig::get_currentTrackingOriginMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRRig_get_currentTrackingOriginMode_m4E0D1ECA3BB9564009C4ADC500DDF4FCC2D0182B (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// public TrackingOriginModeFlags currentTrackingOriginMode { get; private set; }
int32_t L_0 = __this->___U3CcurrentTrackingOriginModeU3Ek__BackingField_10;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::set_currentTrackingOriginMode(UnityEngine.XR.TrackingOriginModeFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_set_currentTrackingOriginMode_m8808FA6451664B1A54B94D29536F52EAF1C2B50F (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public TrackingOriginModeFlags currentTrackingOriginMode { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CcurrentTrackingOriginModeU3Ek__BackingField_10 = L_0;
return;
}
}
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.XRRig::get_rigInCameraSpacePos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 XRRig_get_rigInCameraSpacePos_m504AE7211B9F2359312069B68DD810C00F04F578 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// public Vector3 rigInCameraSpacePos => m_CameraGameObject.transform.InverseTransformPoint(m_RigBaseGameObject.transform.position);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CameraGameObject_7;
NullCheck(L_0);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1;
L_1 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_0, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = __this->___m_RigBaseGameObject_5;
NullCheck(L_2);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_3;
L_3 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_2, NULL);
NullCheck(L_3);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4;
L_4 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_3, NULL);
NullCheck(L_1);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5;
L_5 = Transform_InverseTransformPoint_m18CD395144D9C78F30E15A5B82B6670E792DBA5D(L_1, L_4, NULL);
return L_5;
}
}
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.XRRig::get_cameraInRigSpacePos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 XRRig_get_cameraInRigSpacePos_mA397E5CCFBED6DB8DE87BE51E2C2CA686604B72E (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// public Vector3 cameraInRigSpacePos => m_RigBaseGameObject.transform.InverseTransformPoint(m_CameraGameObject.transform.position);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_RigBaseGameObject_5;
NullCheck(L_0);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1;
L_1 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_0, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = __this->___m_CameraGameObject_7;
NullCheck(L_2);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_3;
L_3 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_2, NULL);
NullCheck(L_3);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4;
L_4 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_3, NULL);
NullCheck(L_1);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5;
L_5 = Transform_InverseTransformPoint_m18CD395144D9C78F30E15A5B82B6670E792DBA5D(L_1, L_4, NULL);
return L_5;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.XRRig::get_cameraInRigSpaceHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRRig_get_cameraInRigSpaceHeight_m9ED1541D7D6485281124CE4EC109D826851BC575 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// public float cameraInRigSpaceHeight => cameraInRigSpacePos.y;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0;
L_0 = XRRig_get_cameraInRigSpacePos_mA397E5CCFBED6DB8DE87BE51E2C2CA686604B72E(__this, NULL);
float L_1 = L_0.___y_3;
return L_1;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::OnValidate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_OnValidate_mC4E4ECE7B942E76D28568911314BBF3FE0FFFF7E (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// UpgradeTrackingSpaceToTrackingOriginMode();
XRRig_UpgradeTrackingSpaceToTrackingOriginMode_m90C7E3360BB6776280F797F8896CB1A6EECCA596(__this, NULL);
// UpgradeTrackingOriginModeToRequest();
XRRig_UpgradeTrackingOriginModeToRequest_m389DECA9B678D71FAA9E2A14106798A93A1F08FE(__this, NULL);
// if (m_RigBaseGameObject == null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_RigBaseGameObject_5;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0026;
}
}
{
// m_RigBaseGameObject = gameObject;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
L_2 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(__this, NULL);
__this->___m_RigBaseGameObject_5 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RigBaseGameObject_5), (void*)L_2);
}
IL_0026:
{
// if (Application.isPlaying && isActiveAndEnabled)
bool L_3;
L_3 = Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337(NULL);
if (!L_3)
{
goto IL_004a;
}
}
{
bool L_4;
L_4 = Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A(__this, NULL);
if (!L_4)
{
goto IL_004a;
}
}
{
// if (IsModeStale())
bool L_5;
L_5 = XRRig_U3COnValidateU3Eg__IsModeStaleU7C35_0_m64AB1C559E4CAA47441B7CD9A68EBB52C062829F(__this, NULL);
if (!L_5)
{
goto IL_0044;
}
}
{
// TryInitializeCamera();
XRRig_TryInitializeCamera_m2A3FCB48EC42E30997999D41D5D473F3B6DE3790(__this, NULL);
return;
}
IL_0044:
{
// MoveOffsetHeight();
XRRig_MoveOffsetHeight_m6AF8AA5C9DB9F82E9B7A997E45619DC10A122C64(__this, NULL);
}
IL_004a:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::Awake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_Awake_m4C54DB98C4E12B1283219E8DB8F7649E8B02E9D3 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral70A7C4E13A35934A82D9F7983DC74553A1AA381C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB7C728E2B8F33B73AF48C0C23120A706EBFAB52);
s_Il2CppMethodInitialized = true;
}
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_0 = NULL;
{
// if (m_CameraFloorOffsetObject == null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CameraFloorOffsetObject_6;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0025;
}
}
{
// Debug.LogWarning("No Camera Floor Offset Object specified for XR Rig, using attached GameObject.", this);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_LogWarning_m5C8299150E64600CBF5C92706AD610C21D0C0DC5(_stringLiteral70A7C4E13A35934A82D9F7983DC74553A1AA381C, __this, NULL);
// m_CameraFloorOffsetObject = gameObject;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
L_2 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(__this, NULL);
__this->___m_CameraFloorOffsetObject_6 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraFloorOffsetObject_6), (void*)L_2);
}
IL_0025:
{
// if (m_CameraGameObject == null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = __this->___m_CameraGameObject_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_4)
{
goto IL_005a;
}
}
{
// var mainCamera = Camera.main;
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5;
L_5 = Camera_get_main_mF222B707D3BF8CC9C7544609EFC71CFB62E81D43(NULL);
V_0 = L_5;
// if (mainCamera != null)
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_6 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_6, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_7)
{
goto IL_004f;
}
}
{
// m_CameraGameObject = mainCamera.gameObject;
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_8 = V_0;
NullCheck(L_8);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9;
L_9 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_8, NULL);
__this->___m_CameraGameObject_7 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraGameObject_7), (void*)L_9);
return;
}
IL_004f:
{
// Debug.LogWarning("No Main Camera is found for XR Rig, please assign the Camera GameObject field manually.", this);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_LogWarning_m5C8299150E64600CBF5C92706AD610C21D0C0DC5(_stringLiteralDB7C728E2B8F33B73AF48C0C23120A706EBFAB52, __this, NULL);
}
IL_005a:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_Start_mF912BAA80031F771DEF1E17255A51D26DE2594AF (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// TryInitializeCamera();
XRRig_TryInitializeCamera_m2A3FCB48EC42E30997999D41D5D473F3B6DE3790(__this, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::OnDestroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_OnDestroy_m274C526353DF792CED6C22BFAD12CAA2FDBF2481 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1__ctor_m06CD1A5164C93280C6A23D8435BF77A89B8E4B0F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m984D421A36C91A4FA622218385CB4346C9411DF3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m43BF1149292892E0A147B31279D198F4ABA5D952_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mEBE35085F23AD21C6E36B9EFAED53B414317CE31_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mD7750792B348A44331FAA1F78D8608F585823A50_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRig_OnInputSubsystemTrackingOriginUpdated_m36527BEC4D562F5EC58CAACDA032E28BFBF314EE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5 V_0;
memset((&V_0), 0, sizeof(V_0));
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* V_1 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// foreach (var inputSubsystem in s_InputSubsystems)
il2cpp_codegen_runtime_class_init_inline(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var);
List_1_t90832B88D7207769654164CC28440CF594CC397D* L_0 = ((XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_StaticFields*)il2cpp_codegen_static_fields_for(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var))->___s_InputSubsystems_11;
NullCheck(L_0);
Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5 L_1;
L_1 = List_1_GetEnumerator_mD7750792B348A44331FAA1F78D8608F585823A50(L_0, List_1_GetEnumerator_mD7750792B348A44331FAA1F78D8608F585823A50_RuntimeMethod_var);
V_0 = L_1;
}
IL_000b:
try
{// begin try (depth: 1)
{
goto IL_002a;
}
IL_000d:
{
// foreach (var inputSubsystem in s_InputSubsystems)
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_2;
L_2 = Enumerator_get_Current_mEBE35085F23AD21C6E36B9EFAED53B414317CE31_inline((&V_0), Enumerator_get_Current_mEBE35085F23AD21C6E36B9EFAED53B414317CE31_RuntimeMethod_var);
V_1 = L_2;
// if (inputSubsystem != null)
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_3 = V_1;
if (!L_3)
{
goto IL_002a;
}
}
IL_0018:
{
// inputSubsystem.trackingOriginUpdated -= OnInputSubsystemTrackingOriginUpdated;
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_4 = V_1;
Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A* L_5 = (Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A*)il2cpp_codegen_object_new(Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A_il2cpp_TypeInfo_var);
Action_1__ctor_m06CD1A5164C93280C6A23D8435BF77A89B8E4B0F(L_5, __this, (intptr_t)((void*)XRRig_OnInputSubsystemTrackingOriginUpdated_m36527BEC4D562F5EC58CAACDA032E28BFBF314EE_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m06CD1A5164C93280C6A23D8435BF77A89B8E4B0F_RuntimeMethod_var);
NullCheck(L_4);
XRInputSubsystem_remove_trackingOriginUpdated_m6A04D2813F1D4A37C013BA00EBC862D1EEA7473E(L_4, L_5, NULL);
}
IL_002a:
{
// foreach (var inputSubsystem in s_InputSubsystems)
bool L_6;
L_6 = Enumerator_MoveNext_m43BF1149292892E0A147B31279D198F4ABA5D952((&V_0), Enumerator_MoveNext_m43BF1149292892E0A147B31279D198F4ABA5D952_RuntimeMethod_var);
if (L_6)
{
goto IL_000d;
}
}
IL_0033:
{
IL2CPP_LEAVE(0x67, FINALLY_0035);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_0035;
}
FINALLY_0035:
{// begin finally (depth: 1)
Enumerator_Dispose_m984D421A36C91A4FA622218385CB4346C9411DF3((&V_0), Enumerator_Dispose_m984D421A36C91A4FA622218385CB4346C9411DF3_RuntimeMethod_var);
IL2CPP_END_FINALLY(53)
}// end finally (depth: 1)
IL2CPP_CLEANUP(53)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x67, IL_0043)
}
IL_0043:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::OnDrawGizmos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_OnDrawGizmos_mF1CB626A1069E0B353DF714F4B1CB4B1D0E7B18B (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// if (m_RigBaseGameObject != null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_RigBaseGameObject_5;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0057;
}
}
{
// Gizmos.color = Color.green;
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2;
L_2 = Color_get_green_m336EB73DD4A5B11B7F405CF4BC7F37A466FB4FF7_inline(NULL);
Gizmos_set_color_mFD4A7935FF025F5922374A8DD797BA0558BF1AD2(L_2, NULL);
// GizmoHelpers.DrawWireCubeOriented(m_RigBaseGameObject.transform.position, m_RigBaseGameObject.transform.rotation, 3f);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = __this->___m_RigBaseGameObject_5;
NullCheck(L_3);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_4;
L_4 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_3, NULL);
NullCheck(L_4);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5;
L_5 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_4, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6 = __this->___m_RigBaseGameObject_5;
NullCheck(L_6);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_7;
L_7 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_6, NULL);
NullCheck(L_7);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_8;
L_8 = Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C(L_7, NULL);
GizmoHelpers_DrawWireCubeOriented_mB0B3D31FD9FCEFEC22AFB3B26E9AA374BB918730(L_5, L_8, (3.0f), NULL);
// GizmoHelpers.DrawAxisArrows(m_RigBaseGameObject.transform, 0.5f);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9 = __this->___m_RigBaseGameObject_5;
NullCheck(L_9);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_10;
L_10 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_9, NULL);
GizmoHelpers_DrawAxisArrows_m2E693699692850260E01A003FDE03C207C04804F(L_10, (0.5f), NULL);
}
IL_0057:
{
// if (m_CameraFloorOffsetObject != null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_11 = __this->___m_CameraFloorOffsetObject_6;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_12;
L_12 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_11, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_12)
{
goto IL_007a;
}
}
{
// GizmoHelpers.DrawAxisArrows(m_CameraFloorOffsetObject.transform, 0.5f);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_13 = __this->___m_CameraFloorOffsetObject_6;
NullCheck(L_13);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_14;
L_14 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_13, NULL);
GizmoHelpers_DrawAxisArrows_m2E693699692850260E01A003FDE03C207C04804F(L_14, (0.5f), NULL);
}
IL_007a:
{
// if (m_CameraGameObject != null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_15 = __this->___m_CameraGameObject_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_16;
L_16 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_15, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_16)
{
goto IL_0106;
}
}
{
// var cameraPosition = m_CameraGameObject.transform.position;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_17 = __this->___m_CameraGameObject_7;
NullCheck(L_17);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_18;
L_18 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_17, NULL);
NullCheck(L_18);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_19;
L_19 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_18, NULL);
V_0 = L_19;
// Gizmos.color = Color.red;
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_20;
L_20 = Color_get_red_m27D04C1E5FE794AD933B7B9364F3D34B9EA25109_inline(NULL);
Gizmos_set_color_mFD4A7935FF025F5922374A8DD797BA0558BF1AD2(L_20, NULL);
// GizmoHelpers.DrawWireCubeOriented(cameraPosition, m_CameraGameObject.transform.rotation, 0.1f);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21 = V_0;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_22 = __this->___m_CameraGameObject_7;
NullCheck(L_22);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_23;
L_23 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_22, NULL);
NullCheck(L_23);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_24;
L_24 = Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C(L_23, NULL);
GizmoHelpers_DrawWireCubeOriented_mB0B3D31FD9FCEFEC22AFB3B26E9AA374BB918730(L_21, L_24, (0.100000001f), NULL);
// GizmoHelpers.DrawAxisArrows(m_CameraGameObject.transform, 0.5f);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_25 = __this->___m_CameraGameObject_7;
NullCheck(L_25);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_26;
L_26 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_25, NULL);
GizmoHelpers_DrawAxisArrows_m2E693699692850260E01A003FDE03C207C04804F(L_26, (0.5f), NULL);
// if (m_RigBaseGameObject != null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_27 = __this->___m_RigBaseGameObject_5;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_28;
L_28 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_27, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_28)
{
goto IL_0106;
}
}
{
// var floorPos = cameraPosition;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_29 = V_0;
V_1 = L_29;
// floorPos.y = m_RigBaseGameObject.transform.position.y;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_30 = __this->___m_RigBaseGameObject_5;
NullCheck(L_30);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_31;
L_31 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_30, NULL);
NullCheck(L_31);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_32;
L_32 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_31, NULL);
float L_33 = L_32.___y_3;
(&V_1)->___y_3 = L_33;
// Gizmos.DrawLine(floorPos, cameraPosition);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_34 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_35 = V_0;
Gizmos_DrawLine_m09F46DC2EA3C2200E465435A29960E8BCD84DD9C(L_34, L_35, NULL);
}
IL_0106:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::TryInitializeCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_TryInitializeCamera_m2A3FCB48EC42E30997999D41D5D473F3B6DE3790 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// if (!Application.isPlaying)
bool L_0;
L_0 = Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337(NULL);
if (L_0)
{
goto IL_0008;
}
}
{
// return;
return;
}
IL_0008:
{
// m_CameraInitialized = SetupCamera();
bool L_1;
L_1 = XRRig_SetupCamera_mF14AD1A86C728BC80E1C491B99D432ADC6A80967(__this, NULL);
__this->___m_CameraInitialized_12 = L_1;
// if (!m_CameraInitialized & !m_CameraInitializing)
bool L_2 = __this->___m_CameraInitialized_12;
bool L_3 = __this->___m_CameraInitializing_13;
if (!((int32_t)((int32_t)((((int32_t)L_2) == ((int32_t)0))? 1 : 0)&(int32_t)((((int32_t)L_3) == ((int32_t)0))? 1 : 0))))
{
goto IL_0036;
}
}
{
// StartCoroutine(RepeatInitializeCamera());
RuntimeObject* L_4;
L_4 = XRRig_RepeatInitializeCamera_mE36D220D554117D9FFF4F8CAFE47E32E08015B0C(__this, NULL);
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* L_5;
L_5 = MonoBehaviour_StartCoroutine_m4CAFF732AA28CD3BDC5363B44A863575530EC812(__this, L_4, NULL);
}
IL_0036:
{
// }
return;
}
}
// System.Collections.IEnumerator UnityEngine.XR.Interaction.Toolkit.XRRig::RepeatInitializeCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XRRig_RepeatInitializeCamera_mE36D220D554117D9FFF4F8CAFE47E32E08015B0C (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F* L_0 = (U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F*)il2cpp_codegen_object_new(U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F_il2cpp_TypeInfo_var);
U3CRepeatInitializeCameraU3Ed__41__ctor_m6B95E9FAB0B4538741707561ADAB158E77B30508(L_0, 0, /*hidden argument*/NULL);
U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F* L_1 = L_0;
NullCheck(L_1);
L_1->___U3CU3E4__this_2 = __this;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this_2), (void*)__this);
return L_1;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::SetupCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_SetupCamera_mF14AD1A86C728BC80E1C491B99D432ADC6A80967 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1__ctor_m06CD1A5164C93280C6A23D8435BF77A89B8E4B0F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m984D421A36C91A4FA622218385CB4346C9411DF3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m43BF1149292892E0A147B31279D198F4ABA5D952_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mEBE35085F23AD21C6E36B9EFAED53B414317CE31_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mD7750792B348A44331FAA1F78D8608F585823A50_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF8DDB0BDC273D655115D5E62307ADF657EC28DE5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemManager_GetInstances_TisXRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34_mEF47974C54AA515C3180A0AD3418F3E4037983EE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemManager_t9A7261E4D0B53B996F04B8707D8E1C33AB65E824_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRig_OnInputSubsystemTrackingOriginUpdated_m36527BEC4D562F5EC58CAACDA032E28BFBF314EE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5 V_1;
memset((&V_1), 0, sizeof(V_1));
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* V_2 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// var initialized = true;
V_0 = (bool)1;
// SubsystemManager.GetInstances(s_InputSubsystems);
il2cpp_codegen_runtime_class_init_inline(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var);
List_1_t90832B88D7207769654164CC28440CF594CC397D* L_0 = ((XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_StaticFields*)il2cpp_codegen_static_fields_for(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var))->___s_InputSubsystems_11;
il2cpp_codegen_runtime_class_init_inline(SubsystemManager_t9A7261E4D0B53B996F04B8707D8E1C33AB65E824_il2cpp_TypeInfo_var);
SubsystemManager_GetInstances_TisXRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34_mEF47974C54AA515C3180A0AD3418F3E4037983EE(L_0, SubsystemManager_GetInstances_TisXRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34_mEF47974C54AA515C3180A0AD3418F3E4037983EE_RuntimeMethod_var);
// if (s_InputSubsystems.Count > 0)
List_1_t90832B88D7207769654164CC28440CF594CC397D* L_1 = ((XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_StaticFields*)il2cpp_codegen_static_fields_for(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var))->___s_InputSubsystems_11;
NullCheck(L_1);
int32_t L_2;
L_2 = List_1_get_Count_mF8DDB0BDC273D655115D5E62307ADF657EC28DE5_inline(L_1, List_1_get_Count_mF8DDB0BDC273D655115D5E62307ADF657EC28DE5_RuntimeMethod_var);
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_0078;
}
}
{
// foreach (var inputSubsystem in s_InputSubsystems)
il2cpp_codegen_runtime_class_init_inline(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var);
List_1_t90832B88D7207769654164CC28440CF594CC397D* L_3 = ((XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_StaticFields*)il2cpp_codegen_static_fields_for(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var))->___s_InputSubsystems_11;
NullCheck(L_3);
Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5 L_4;
L_4 = List_1_GetEnumerator_mD7750792B348A44331FAA1F78D8608F585823A50(L_3, List_1_GetEnumerator_mD7750792B348A44331FAA1F78D8608F585823A50_RuntimeMethod_var);
V_1 = L_4;
}
IL_0024:
try
{// begin try (depth: 1)
{
goto IL_005f;
}
IL_0026:
{
// foreach (var inputSubsystem in s_InputSubsystems)
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_5;
L_5 = Enumerator_get_Current_mEBE35085F23AD21C6E36B9EFAED53B414317CE31_inline((&V_1), Enumerator_get_Current_mEBE35085F23AD21C6E36B9EFAED53B414317CE31_RuntimeMethod_var);
V_2 = L_5;
// if (SetupCamera(inputSubsystem))
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_6 = V_2;
bool L_7;
L_7 = XRRig_SetupCamera_m8DFC1790FD94C84F2FAA4DFDE1D05B270048CEA3(__this, L_6, NULL);
if (!L_7)
{
goto IL_005d;
}
}
IL_0037:
{
// inputSubsystem.trackingOriginUpdated -= OnInputSubsystemTrackingOriginUpdated;
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_8 = V_2;
Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A* L_9 = (Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A*)il2cpp_codegen_object_new(Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A_il2cpp_TypeInfo_var);
Action_1__ctor_m06CD1A5164C93280C6A23D8435BF77A89B8E4B0F(L_9, __this, (intptr_t)((void*)XRRig_OnInputSubsystemTrackingOriginUpdated_m36527BEC4D562F5EC58CAACDA032E28BFBF314EE_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m06CD1A5164C93280C6A23D8435BF77A89B8E4B0F_RuntimeMethod_var);
NullCheck(L_8);
XRInputSubsystem_remove_trackingOriginUpdated_m6A04D2813F1D4A37C013BA00EBC862D1EEA7473E(L_8, L_9, NULL);
// inputSubsystem.trackingOriginUpdated += OnInputSubsystemTrackingOriginUpdated;
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_10 = V_2;
Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A* L_11 = (Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A*)il2cpp_codegen_object_new(Action_1_tC867D66471C553CFFF8707FF2C59FB7AAB03086A_il2cpp_TypeInfo_var);
Action_1__ctor_m06CD1A5164C93280C6A23D8435BF77A89B8E4B0F(L_11, __this, (intptr_t)((void*)XRRig_OnInputSubsystemTrackingOriginUpdated_m36527BEC4D562F5EC58CAACDA032E28BFBF314EE_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m06CD1A5164C93280C6A23D8435BF77A89B8E4B0F_RuntimeMethod_var);
NullCheck(L_10);
XRInputSubsystem_add_trackingOriginUpdated_mA5E69767B6E8D505BE73804A4B4EA738A27F675E(L_10, L_11, NULL);
goto IL_005f;
}
IL_005d:
{
// initialized = false;
V_0 = (bool)0;
}
IL_005f:
{
// foreach (var inputSubsystem in s_InputSubsystems)
bool L_12;
L_12 = Enumerator_MoveNext_m43BF1149292892E0A147B31279D198F4ABA5D952((&V_1), Enumerator_MoveNext_m43BF1149292892E0A147B31279D198F4ABA5D952_RuntimeMethod_var);
if (L_12)
{
goto IL_0026;
}
}
IL_0068:
{
IL2CPP_LEAVE(0x127, FINALLY_006a);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_006a;
}
FINALLY_006a:
{// begin finally (depth: 1)
Enumerator_Dispose_m984D421A36C91A4FA622218385CB4346C9411DF3((&V_1), Enumerator_Dispose_m984D421A36C91A4FA622218385CB4346C9411DF3_RuntimeMethod_var);
IL2CPP_END_FINALLY(106)
}// end finally (depth: 1)
IL2CPP_CLEANUP(106)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x127, IL_007f)
}
IL_0078:
{
// return SetupCameraLegacy();
bool L_13;
L_13 = XRRig_SetupCameraLegacy_mCD89564985CB93F730497582C666C474896C9749(__this, NULL);
return L_13;
}
IL_007f:
{
// return initialized;
bool L_14 = V_0;
return L_14;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::SetupCamera(UnityEngine.XR.XRInputSubsystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_SetupCamera_m8DFC1790FD94C84F2FAA4DFDE1D05B270048CEA3 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* ___inputSubsystem0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingOriginModeFlags_t04723708FB00785CE6A9CDECBB4501ADAB612C4F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral21BABB7D4D81546003053B7D1D3E1523E82A424A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral558296ACB55EF55350E59F922EE5DD3735E5F58F);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t G_B11_0 = 0;
{
// if (inputSubsystem == null)
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_0 = ___inputSubsystem0;
if (L_0)
{
goto IL_0005;
}
}
{
// return false;
return (bool)0;
}
IL_0005:
{
// var successful = true;
V_0 = (bool)1;
// switch (m_RequestedTrackingOriginMode)
int32_t L_1 = __this->___m_RequestedTrackingOriginMode_8;
V_1 = L_1;
int32_t L_2 = V_1;
if (!L_2)
{
goto IL_001c;
}
}
{
int32_t L_3 = V_1;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1))) > ((uint32_t)1))))
{
goto IL_002a;
}
}
{
goto IL_009e;
}
IL_001c:
{
// currentTrackingOriginMode = inputSubsystem.GetTrackingOriginMode();
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_4 = ___inputSubsystem0;
NullCheck(L_4);
int32_t L_5;
L_5 = XRInputSubsystem_GetTrackingOriginMode_mBAFED615F74039A681825BB956AD3C8FA7DE45F2(L_4, NULL);
XRRig_set_currentTrackingOriginMode_m8808FA6451664B1A54B94D29536F52EAF1C2B50F_inline(__this, L_5, NULL);
// break;
goto IL_00a0;
}
IL_002a:
{
// var supportedModes = inputSubsystem.GetSupportedTrackingOriginModes();
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_6 = ___inputSubsystem0;
NullCheck(L_6);
int32_t L_7;
L_7 = XRInputSubsystem_GetSupportedTrackingOriginModes_mBA7190E84E6BB4F251C232B97565E228AECB3018(L_6, NULL);
V_2 = L_7;
// if (supportedModes == TrackingOriginModeFlags.Unknown)
int32_t L_8 = V_2;
if (L_8)
{
goto IL_0036;
}
}
{
// return false;
return (bool)0;
}
IL_0036:
{
// var equivalentFlagsMode = m_RequestedTrackingOriginMode == TrackingOriginMode.Device
// ? TrackingOriginModeFlags.Device
// : TrackingOriginModeFlags.Floor;
int32_t L_9 = __this->___m_RequestedTrackingOriginMode_8;
if ((((int32_t)L_9) == ((int32_t)1)))
{
goto IL_0042;
}
}
{
G_B11_0 = 2;
goto IL_0043;
}
IL_0042:
{
G_B11_0 = 1;
}
IL_0043:
{
V_3 = G_B11_0;
// if ((supportedModes & equivalentFlagsMode) == 0)
int32_t L_10 = V_2;
int32_t L_11 = V_3;
if (((int32_t)((int32_t)L_10&(int32_t)L_11)))
{
goto IL_0094;
}
}
{
// m_RequestedTrackingOriginMode = TrackingOriginMode.NotSpecified;
__this->___m_RequestedTrackingOriginMode_8 = 0;
// currentTrackingOriginMode = inputSubsystem.GetTrackingOriginMode();
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_12 = ___inputSubsystem0;
NullCheck(L_12);
int32_t L_13;
L_13 = XRInputSubsystem_GetTrackingOriginMode_mBAFED615F74039A681825BB956AD3C8FA7DE45F2(L_12, NULL);
XRRig_set_currentTrackingOriginMode_m8808FA6451664B1A54B94D29536F52EAF1C2B50F_inline(__this, L_13, NULL);
// Debug.LogWarning($"Attempting to set the tracking origin mode to {equivalentFlagsMode}, but that is not supported by the SDK." +
// $" Supported types: {supportedModes:F}. Using the current mode of {currentTrackingOriginMode} instead.", this);
int32_t L_14 = V_3;
int32_t L_15 = L_14;
RuntimeObject* L_16 = Box(TrackingOriginModeFlags_t04723708FB00785CE6A9CDECBB4501ADAB612C4F_il2cpp_TypeInfo_var, &L_15);
String_t* L_17;
L_17 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral558296ACB55EF55350E59F922EE5DD3735E5F58F, L_16, NULL);
int32_t L_18 = V_2;
int32_t L_19 = L_18;
RuntimeObject* L_20 = Box(TrackingOriginModeFlags_t04723708FB00785CE6A9CDECBB4501ADAB612C4F_il2cpp_TypeInfo_var, &L_19);
int32_t L_21;
L_21 = XRRig_get_currentTrackingOriginMode_m4E0D1ECA3BB9564009C4ADC500DDF4FCC2D0182B_inline(__this, NULL);
int32_t L_22 = L_21;
RuntimeObject* L_23 = Box(TrackingOriginModeFlags_t04723708FB00785CE6A9CDECBB4501ADAB612C4F_il2cpp_TypeInfo_var, &L_22);
String_t* L_24;
L_24 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteral21BABB7D4D81546003053B7D1D3E1523E82A424A, L_20, L_23, NULL);
String_t* L_25;
L_25 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_17, L_24, NULL);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_LogWarning_m5C8299150E64600CBF5C92706AD610C21D0C0DC5(L_25, __this, NULL);
goto IL_00a0;
}
IL_0094:
{
// successful = inputSubsystem.TrySetTrackingOriginMode(equivalentFlagsMode);
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_26 = ___inputSubsystem0;
int32_t L_27 = V_3;
NullCheck(L_26);
bool L_28;
L_28 = XRInputSubsystem_TrySetTrackingOriginMode_m132C190CEAE4403A381BF1C1C4B5FF349F2A3FA7(L_26, L_27, NULL);
V_0 = L_28;
// break;
goto IL_00a0;
}
IL_009e:
{
// return false;
return (bool)0;
}
IL_00a0:
{
// if (successful)
bool L_29 = V_0;
if (!L_29)
{
goto IL_00a9;
}
}
{
// MoveOffsetHeight();
XRRig_MoveOffsetHeight_m6AF8AA5C9DB9F82E9B7A997E45619DC10A122C64(__this, NULL);
}
IL_00a9:
{
// if (currentTrackingOriginMode == TrackingOriginModeFlags.Device || m_RequestedTrackingOriginMode == TrackingOriginMode.Device)
int32_t L_30;
L_30 = XRRig_get_currentTrackingOriginMode_m4E0D1ECA3BB9564009C4ADC500DDF4FCC2D0182B_inline(__this, NULL);
if ((((int32_t)L_30) == ((int32_t)1)))
{
goto IL_00bb;
}
}
{
int32_t L_31 = __this->___m_RequestedTrackingOriginMode_8;
if ((!(((uint32_t)L_31) == ((uint32_t)1))))
{
goto IL_00c2;
}
}
IL_00bb:
{
// successful = inputSubsystem.TryRecenter();
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_32 = ___inputSubsystem0;
NullCheck(L_32);
bool L_33;
L_33 = XRInputSubsystem_TryRecenter_m4F8888E40ED79139DCB81D56A67C03B4D931A6BB(L_32, NULL);
V_0 = L_33;
}
IL_00c2:
{
// return successful;
bool L_34 = V_0;
return L_34;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::MoveOffsetHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_MoveOffsetHeight_m6AF8AA5C9DB9F82E9B7A997E45619DC10A122C64 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// if (!Application.isPlaying)
bool L_0;
L_0 = Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337(NULL);
if (L_0)
{
goto IL_0008;
}
}
{
// return;
return;
}
IL_0008:
{
// switch (currentTrackingOriginMode)
int32_t L_1;
L_1 = XRRig_get_currentTrackingOriginMode_m4E0D1ECA3BB9564009C4ADC500DDF4FCC2D0182B_inline(__this, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0023;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)2))))
{
goto IL_0030;
}
}
{
// MoveOffsetHeight(0f);
XRRig_MoveOffsetHeight_m08324B80614054B51915190FAFD0251988912FF0(__this, (0.0f), NULL);
// break;
return;
}
IL_0023:
{
// MoveOffsetHeight(m_CameraYOffset);
float L_4 = __this->___m_CameraYOffset_9;
XRRig_MoveOffsetHeight_m08324B80614054B51915190FAFD0251988912FF0(__this, L_4, NULL);
// break;
return;
}
IL_0030:
{
// return;
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::MoveOffsetHeight(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_MoveOffsetHeight_m08324B80614054B51915190FAFD0251988912FF0 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, float ___y0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (m_CameraFloorOffsetObject != null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CameraFloorOffsetObject_6;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_002e;
}
}
{
// var offsetTransform = m_CameraFloorOffsetObject.transform;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = __this->___m_CameraFloorOffsetObject_6;
NullCheck(L_2);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_3;
L_3 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_2, NULL);
// var desiredPosition = offsetTransform.localPosition;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_4 = L_3;
NullCheck(L_4);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5;
L_5 = Transform_get_localPosition_mA9C86B990DF0685EA1061A120218993FDCC60A95(L_4, NULL);
V_0 = L_5;
// desiredPosition.y = y;
float L_6 = ___y0;
(&V_0)->___y_3 = L_6;
// offsetTransform.localPosition = desiredPosition;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = V_0;
NullCheck(L_4);
Transform_set_localPosition_mDE1C997F7D79C0885210B7732B4BA50EE7D73134(L_4, L_7, NULL);
}
IL_002e:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::OnInputSubsystemTrackingOriginUpdated(UnityEngine.XR.XRInputSubsystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_OnInputSubsystemTrackingOriginUpdated_m36527BEC4D562F5EC58CAACDA032E28BFBF314EE (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* ___inputSubsystem0, const RuntimeMethod* method)
{
{
// currentTrackingOriginMode = inputSubsystem.GetTrackingOriginMode();
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_0 = ___inputSubsystem0;
NullCheck(L_0);
int32_t L_1;
L_1 = XRInputSubsystem_GetTrackingOriginMode_mBAFED615F74039A681825BB956AD3C8FA7DE45F2(L_0, NULL);
XRRig_set_currentTrackingOriginMode_m8808FA6451664B1A54B94D29536F52EAF1C2B50F_inline(__this, L_1, NULL);
// MoveOffsetHeight();
XRRig_MoveOffsetHeight_m6AF8AA5C9DB9F82E9B7A997E45619DC10A122C64(__this, NULL);
// }
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::RotateAroundCameraUsingRigUp(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_RotateAroundCameraUsingRigUp_mE9DB5E392764B04743D17BC410E1DB5D37A10CC2 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, float ___angleDegrees0, const RuntimeMethod* method)
{
{
// return RotateAroundCameraPosition(m_RigBaseGameObject.transform.up, angleDegrees);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_RigBaseGameObject_5;
NullCheck(L_0);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1;
L_1 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_0, NULL);
NullCheck(L_1);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2;
L_2 = Transform_get_up_mE47A9D9D96422224DD0539AA5524DA5440145BB2(L_1, NULL);
float L_3 = ___angleDegrees0;
bool L_4;
L_4 = XRRig_RotateAroundCameraPosition_mE07A8F00166F1D159F941C6F22D5A37FC2B865BF(__this, L_2, L_3, NULL);
return L_4;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::RotateAroundCameraPosition(UnityEngine.Vector3,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_RotateAroundCameraPosition_mE07A8F00166F1D159F941C6F22D5A37FC2B865BF (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___vector0, float ___angleDegrees1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_CameraGameObject == null || m_RigBaseGameObject == null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CameraGameObject_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_1)
{
goto IL_001c;
}
}
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = __this->___m_RigBaseGameObject_5;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_3)
{
goto IL_001e;
}
}
IL_001c:
{
// return false;
return (bool)0;
}
IL_001e:
{
// m_RigBaseGameObject.transform.RotateAround(m_CameraGameObject.transform.position, vector, angleDegrees);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = __this->___m_RigBaseGameObject_5;
NullCheck(L_4);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_5;
L_5 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_4, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6 = __this->___m_CameraGameObject_7;
NullCheck(L_6);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_7;
L_7 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_6, NULL);
NullCheck(L_7);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8;
L_8 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_7, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9 = ___vector0;
float L_10 = ___angleDegrees1;
NullCheck(L_5);
Transform_RotateAround_m489C5BE8B8B15D0A5F4863DE6D23FF2CC8FA76C6(L_5, L_8, L_9, L_10, NULL);
// return true;
return (bool)1;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::MatchRigUp(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_MatchRigUp_m02778B1BD71CC152FF1A66B7C448E1DED5464744 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___destinationUp0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (m_RigBaseGameObject == null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_RigBaseGameObject_5;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
// return false;
return (bool)0;
}
IL_0010:
{
// if (m_RigBaseGameObject.transform.up == destinationUp)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = __this->___m_RigBaseGameObject_5;
NullCheck(L_2);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_3;
L_3 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_2, NULL);
NullCheck(L_3);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4;
L_4 = Transform_get_up_mE47A9D9D96422224DD0539AA5524DA5440145BB2(L_3, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___destinationUp0;
bool L_6;
L_6 = Vector3_op_Equality_m15951D1B53E3BE36C9D265E229090020FBD72EBB_inline(L_4, L_5, NULL);
if (!L_6)
{
goto IL_002a;
}
}
{
// return true;
return (bool)1;
}
IL_002a:
{
// var rigUp = Quaternion.FromToRotation(m_RigBaseGameObject.transform.up, destinationUp);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_7 = __this->___m_RigBaseGameObject_5;
NullCheck(L_7);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_8;
L_8 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_7, NULL);
NullCheck(L_8);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
L_9 = Transform_get_up_mE47A9D9D96422224DD0539AA5524DA5440145BB2(L_8, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___destinationUp0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_11;
L_11 = Quaternion_FromToRotation_m041093DBB23CB3641118310881D6B7746E3B8418(L_9, L_10, NULL);
V_0 = L_11;
// m_RigBaseGameObject.transform.rotation = rigUp * transform.rotation;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_12 = __this->___m_RigBaseGameObject_5;
NullCheck(L_12);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_13;
L_13 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_12, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_14 = V_0;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_15;
L_15 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(__this, NULL);
NullCheck(L_15);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_16;
L_16 = Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C(L_15, NULL);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_17;
L_17 = Quaternion_op_Multiply_m5AC8B39C55015059BDD09122E04E47D4BFAB2276_inline(L_14, L_16, NULL);
NullCheck(L_13);
Transform_set_rotation_m61340DE74726CF0F9946743A727C4D444397331D(L_13, L_17, NULL);
// return true;
return (bool)1;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::MatchRigUpCameraForward(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_MatchRigUpCameraForward_m0C2B0CEA4D62279A7E2D370B072996F8418D550E (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___destinationUp0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___destinationForward1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// if (m_CameraGameObject != null && MatchRigUp(destinationUp))
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CameraGameObject_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0048;
}
}
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___destinationUp0;
bool L_3;
L_3 = XRRig_MatchRigUp_m02778B1BD71CC152FF1A66B7C448E1DED5464744(__this, L_2, NULL);
if (!L_3)
{
goto IL_0048;
}
}
{
// var projectedCamForward = Vector3.ProjectOnPlane(cameraGameObject.transform.forward, destinationUp).normalized;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
L_4 = XRRig_get_cameraGameObject_m599F292919A35F8427477F95D733377B56C43A73_inline(__this, NULL);
NullCheck(L_4);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_5;
L_5 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_4, NULL);
NullCheck(L_5);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
L_6 = Transform_get_forward_mFCFACF7165FDAB21E80E384C494DF278386CEE2F(L_5, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = ___destinationUp0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8;
L_8 = Vector3_ProjectOnPlane_mCAFA9F9416EA4740DCA8757B6E52260BF536770A_inline(L_6, L_7, NULL);
V_1 = L_8;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
L_9 = Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline((&V_1), NULL);
// var signedAngle = Vector3.SignedAngle(projectedCamForward, destinationForward, destinationUp);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___destinationForward1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_11 = ___destinationUp0;
float L_12;
L_12 = Vector3_SignedAngle_mD30E71B2F64983C2C4D86F17E7023BAA84CE50BE_inline(L_9, L_10, L_11, NULL);
V_0 = L_12;
// RotateAroundCameraPosition(destinationUp, signedAngle);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13 = ___destinationUp0;
float L_14 = V_0;
bool L_15;
L_15 = XRRig_RotateAroundCameraPosition_mE07A8F00166F1D159F941C6F22D5A37FC2B865BF(__this, L_13, L_14, NULL);
// return true;
return (bool)1;
}
IL_0048:
{
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::MatchRigUpRigForward(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_MatchRigUpRigForward_m94F4910B4B27AAFD942946712A4098567C93A982 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___destinationUp0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___destinationForward1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
{
// if (m_RigBaseGameObject != null && MatchRigUp(destinationUp))
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_RigBaseGameObject_5;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_003a;
}
}
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___destinationUp0;
bool L_3;
L_3 = XRRig_MatchRigUp_m02778B1BD71CC152FF1A66B7C448E1DED5464744(__this, L_2, NULL);
if (!L_3)
{
goto IL_003a;
}
}
{
// var signedAngle = Vector3.SignedAngle(m_RigBaseGameObject.transform.forward, destinationForward, destinationUp);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = __this->___m_RigBaseGameObject_5;
NullCheck(L_4);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_5;
L_5 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_4, NULL);
NullCheck(L_5);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
L_6 = Transform_get_forward_mFCFACF7165FDAB21E80E384C494DF278386CEE2F(L_5, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = ___destinationForward1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___destinationUp0;
float L_9;
L_9 = Vector3_SignedAngle_mD30E71B2F64983C2C4D86F17E7023BAA84CE50BE_inline(L_6, L_7, L_8, NULL);
V_0 = L_9;
// RotateAroundCameraPosition(destinationUp, signedAngle);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___destinationUp0;
float L_11 = V_0;
bool L_12;
L_12 = XRRig_RotateAroundCameraPosition_mE07A8F00166F1D159F941C6F22D5A37FC2B865BF(__this, L_10, L_11, NULL);
// return true;
return (bool)1;
}
IL_003a:
{
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::MoveCameraToWorldLocation(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_MoveCameraToWorldLocation_mA5697533798D47028152B51FCB8B68BC48CC2B0D (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___desiredWorldLocation0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_0;
memset((&V_0), 0, sizeof(V_0));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// if (m_CameraGameObject == null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CameraGameObject_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
// return false;
return (bool)0;
}
IL_0010:
{
// var rot = Matrix4x4.Rotate(cameraGameObject.transform.rotation);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
L_2 = XRRig_get_cameraGameObject_m599F292919A35F8427477F95D733377B56C43A73_inline(__this, NULL);
NullCheck(L_2);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_3;
L_3 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_2, NULL);
NullCheck(L_3);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_4;
L_4 = Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C(L_3, NULL);
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_5;
L_5 = Matrix4x4_Rotate_mE2C31B51EEC282F2969B9C2BE24BD73E312807E8(L_4, NULL);
V_0 = L_5;
// var delta = rot.MultiplyPoint3x4(rigInCameraSpacePos);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
L_6 = XRRig_get_rigInCameraSpacePos_m504AE7211B9F2359312069B68DD810C00F04F578(__this, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7;
L_7 = Matrix4x4_MultiplyPoint3x4_mACCBD70AFA82C63DA88555780B7B6B01281AB814((&V_0), L_6, NULL);
V_1 = L_7;
// m_RigBaseGameObject.transform.position = delta + desiredWorldLocation;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_8 = __this->___m_RigBaseGameObject_5;
NullCheck(L_8);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_9;
L_9 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_8, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_11 = ___desiredWorldLocation0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
L_12 = Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline(L_10, L_11, NULL);
NullCheck(L_9);
Transform_set_position_mA1A817124BB41B685043DED2A9BA48CDF37C4156(L_9, L_12, NULL);
// return true;
return (bool)1;
}
}
// UnityEngine.XR.TrackingSpaceType UnityEngine.XR.Interaction.Toolkit.XRRig::get_trackingSpace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRRig_get_trackingSpace_mAD4C6A905AAD431C0EB1779264C6A833473ACE34 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// get => throw new NotSupportedException("trackingSpace has been deprecated. Use requestedTrackingOriginMode instead.");
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral74496F496F80DB57FCB64359D5EECBB9D18B184B)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRRig_get_trackingSpace_mAD4C6A905AAD431C0EB1779264C6A833473ACE34_RuntimeMethod_var)));
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::set_trackingSpace(UnityEngine.XR.TrackingSpaceType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_set_trackingSpace_mCF3CE580D184B437E7241A6A6F6C8B57276D9D2C (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => throw new NotSupportedException("trackingSpace has been deprecated. Use requestedTrackingOriginMode instead.");
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral74496F496F80DB57FCB64359D5EECBB9D18B184B)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRRig_set_trackingSpace_mCF3CE580D184B437E7241A6A6F6C8B57276D9D2C_RuntimeMethod_var)));
}
}
// UnityEngine.XR.TrackingOriginModeFlags UnityEngine.XR.Interaction.Toolkit.XRRig::get_trackingOriginMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRRig_get_trackingOriginMode_mEBBA221C1BEE5C561901D747256B4F6899C37B16 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// if (m_TrackingOriginMode != k_MigratedTrackingOriginMode)
int32_t L_0 = __this->___m_TrackingOriginMode_17;
if ((((int32_t)L_0) == ((int32_t)((int32_t)-2147483648LL))))
{
goto IL_0014;
}
}
{
// return m_TrackingOriginMode;
int32_t L_1 = __this->___m_TrackingOriginMode_17;
return L_1;
}
IL_0014:
{
// if (Application.isPlaying)
bool L_2;
L_2 = Application_get_isPlaying_m0B3B501E1093739F8887A0DAC5F61D9CB49CC337(NULL);
if (!L_2)
{
goto IL_0022;
}
}
{
// return currentTrackingOriginMode;
int32_t L_3;
L_3 = XRRig_get_currentTrackingOriginMode_m4E0D1ECA3BB9564009C4ADC500DDF4FCC2D0182B_inline(__this, NULL);
return L_3;
}
IL_0022:
{
// switch (m_RequestedTrackingOriginMode)
int32_t L_4 = __this->___m_RequestedTrackingOriginMode_8;
V_0 = L_4;
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)1)))
{
goto IL_0033;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)2)))
{
goto IL_0035;
}
}
{
goto IL_0037;
}
IL_0033:
{
// return TrackingOriginModeFlags.Device;
return (int32_t)(1);
}
IL_0035:
{
// return TrackingOriginModeFlags.Floor;
return (int32_t)(2);
}
IL_0037:
{
// return TrackingOriginModeFlags.Unknown;
return (int32_t)(0);
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::set_trackingOriginMode(UnityEngine.XR.TrackingOriginModeFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_set_trackingOriginMode_mD9C7F134E94D332318DBBAAD8887B7C547471F12 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// m_TrackingOriginMode = value;
int32_t L_0 = ___value0;
__this->___m_TrackingOriginMode_17 = L_0;
// UpgradeTrackingOriginModeToRequest();
XRRig_UpgradeTrackingOriginModeToRequest_m389DECA9B678D71FAA9E2A14106798A93A1F08FE(__this, NULL);
// TryInitializeCamera();
XRRig_TryInitializeCamera_m2A3FCB48EC42E30997999D41D5D473F3B6DE3790(__this, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::UpgradeTrackingSpaceToTrackingOriginMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_UpgradeTrackingSpaceToTrackingOriginMode_m90C7E3360BB6776280F797F8896CB1A6EECCA596 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// if (m_TrackingSpace <= TrackingSpaceType.RoomScale)
int32_t L_0 = __this->___m_TrackingSpace_16;
if ((((int32_t)L_0) > ((int32_t)1)))
{
goto IL_002e;
}
}
{
// switch (m_TrackingSpace)
int32_t L_1 = __this->___m_TrackingSpace_16;
V_0 = L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0020;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0027;
}
}
{
// m_TrackingOriginMode = TrackingOriginModeFlags.Floor;
__this->___m_TrackingOriginMode_17 = 2;
// break;
goto IL_0027;
}
IL_0020:
{
// m_TrackingOriginMode = TrackingOriginModeFlags.Device;
__this->___m_TrackingOriginMode_17 = 1;
}
IL_0027:
{
// m_TrackingSpace = k_MigratedTrackingSpace;
__this->___m_TrackingSpace_16 = 3;
}
IL_002e:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::UpgradeTrackingOriginModeToRequest()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig_UpgradeTrackingOriginModeToRequest_m389DECA9B678D71FAA9E2A14106798A93A1F08FE (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingOriginModeFlags_t04723708FB00785CE6A9CDECBB4501ADAB612C4F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3FC2493A341A7326758E941659C41320B80163AA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB2C75D248B73997F69BDC94ABA3EF5AF89482C94);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB2CE0DC7BF0370A44E461DE22DBF1CBD09F5C13);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// if (m_TrackingOriginMode != k_MigratedTrackingOriginMode)
int32_t L_0 = __this->___m_TrackingOriginMode_17;
if ((((int32_t)L_0) == ((int32_t)((int32_t)-2147483648LL))))
{
goto IL_0074;
}
}
{
// switch (m_TrackingOriginMode)
int32_t L_1 = __this->___m_TrackingOriginMode_17;
V_0 = L_1;
int32_t L_2 = V_0;
switch (L_2)
{
case 0:
{
goto IL_0028;
}
case 1:
{
goto IL_0031;
}
case 2:
{
goto IL_003a;
}
}
}
{
goto IL_0043;
}
IL_0028:
{
// m_RequestedTrackingOriginMode = TrackingOriginMode.NotSpecified;
__this->___m_RequestedTrackingOriginMode_8 = 0;
// break;
goto IL_0069;
}
IL_0031:
{
// m_RequestedTrackingOriginMode = TrackingOriginMode.Device;
__this->___m_RequestedTrackingOriginMode_8 = 1;
// break;
goto IL_0069;
}
IL_003a:
{
// m_RequestedTrackingOriginMode = TrackingOriginMode.Floor;
__this->___m_RequestedTrackingOriginMode_8 = 2;
// break;
goto IL_0069;
}
IL_0043:
{
// Debug.LogWarning($"Cannot migrate {m_TrackingOriginMode:F} to {nameof(TrackingOriginMode)} type for {nameof(requestedTrackingOriginMode)}.", this);
int32_t L_3 = __this->___m_TrackingOriginMode_17;
int32_t L_4 = L_3;
RuntimeObject* L_5 = Box(TrackingOriginModeFlags_t04723708FB00785CE6A9CDECBB4501ADAB612C4F_il2cpp_TypeInfo_var, &L_4);
String_t* L_6;
L_6 = String_Format_m76BF8F3A6AD789E38B708848A2688D400AAC250A(_stringLiteralB2C75D248B73997F69BDC94ABA3EF5AF89482C94, L_5, _stringLiteral3FC2493A341A7326758E941659C41320B80163AA, _stringLiteralDB2CE0DC7BF0370A44E461DE22DBF1CBD09F5C13, NULL);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_LogWarning_m5C8299150E64600CBF5C92706AD610C21D0C0DC5(L_6, __this, NULL);
// return;
return;
}
IL_0069:
{
// m_TrackingOriginMode = k_MigratedTrackingOriginMode;
__this->___m_TrackingOriginMode_17 = ((int32_t)-2147483648LL);
}
IL_0074:
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::SetupCameraLegacy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_SetupCameraLegacy_mCD89564985CB93F730497582C666C474896C9749 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// switch (m_RequestedTrackingOriginMode)
int32_t L_0 = __this->___m_RequestedTrackingOriginMode_8;
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0017;
}
}
{
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)2))))
{
goto IL_001f;
}
}
{
// return SetupCameraLegacy(TrackingSpaceType.RoomScale);
bool L_3;
L_3 = XRRig_SetupCameraLegacy_m3BD245ACAB3B62653238B9155C53B7DD20EF0061(__this, 1, NULL);
return L_3;
}
IL_0017:
{
// return SetupCameraLegacy(TrackingSpaceType.Stationary);
bool L_4;
L_4 = XRRig_SetupCameraLegacy_m3BD245ACAB3B62653238B9155C53B7DD20EF0061(__this, 0, NULL);
return L_4;
}
IL_001f:
{
// return true;
return (bool)1;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::SetupCameraLegacy(UnityEngine.XR.TrackingSpaceType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_SetupCameraLegacy_m3BD245ACAB3B62653238B9155C53B7DD20EF0061 (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, int32_t ___trackingSpaceType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputTracking_tA4F34D4D5EC8E560B56ED295177C040D9C9815F1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRDevice_tD076A68EFE413B3EEEEA362BE0364A488B58F194_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool G_B2_0 = false;
bool G_B1_0 = false;
bool G_B4_0 = false;
bool G_B3_0 = false;
{
// var trackingSettingsSet = XRDevice.SetTrackingSpaceType(trackingSpaceType);
int32_t L_0 = ___trackingSpaceType0;
il2cpp_codegen_runtime_class_init_inline(XRDevice_tD076A68EFE413B3EEEEA362BE0364A488B58F194_il2cpp_TypeInfo_var);
bool L_1;
L_1 = XRDevice_SetTrackingSpaceType_mD5276BBB091C1AD8082D8F84F4DA0141E682C348(L_0, NULL);
// if (trackingSpaceType == TrackingSpaceType.Stationary)
int32_t L_2 = ___trackingSpaceType0;
G_B1_0 = L_1;
if (L_2)
{
G_B2_0 = L_1;
goto IL_000e;
}
}
{
// InputTracking.Recenter();
il2cpp_codegen_runtime_class_init_inline(InputTracking_tA4F34D4D5EC8E560B56ED295177C040D9C9815F1_il2cpp_TypeInfo_var);
InputTracking_Recenter_m08E21C730EF172666DB09B3227016DA631EB6B22(NULL);
G_B2_0 = G_B1_0;
}
IL_000e:
{
// if (trackingSettingsSet)
bool L_3 = G_B2_0;
G_B3_0 = L_3;
if (!L_3)
{
G_B4_0 = L_3;
goto IL_0017;
}
}
{
// MoveOffsetHeight();
XRRig_MoveOffsetHeight_m6AF8AA5C9DB9F82E9B7A997E45619DC10A122C64(__this, NULL);
G_B4_0 = G_B3_0;
}
IL_0017:
{
// return trackingSettingsSet;
return G_B4_0;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::IsModeStaleLegacy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_IsModeStaleLegacy_m391BF8291CBAF96C761E8A1174B78BDB9F526B0C (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRDevice_tD076A68EFE413B3EEEEA362BE0364A488B58F194_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// switch (m_RequestedTrackingOriginMode)
int32_t L_0 = __this->___m_RequestedTrackingOriginMode_8;
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_001b;
}
}
{
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)2))))
{
goto IL_0024;
}
}
{
// return XRDevice.GetTrackingSpaceType() != TrackingSpaceType.RoomScale;
il2cpp_codegen_runtime_class_init_inline(XRDevice_tD076A68EFE413B3EEEEA362BE0364A488B58F194_il2cpp_TypeInfo_var);
int32_t L_3;
L_3 = XRDevice_GetTrackingSpaceType_mB55EB16A8A3974609A81C799E16A0251E3D53BDB(NULL);
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_001b:
{
// return XRDevice.GetTrackingSpaceType() != TrackingSpaceType.Stationary;
il2cpp_codegen_runtime_class_init_inline(XRDevice_tD076A68EFE413B3EEEEA362BE0364A488B58F194_il2cpp_TypeInfo_var);
int32_t L_4;
L_4 = XRDevice_GetTrackingSpaceType_mB55EB16A8A3974609A81C799E16A0251E3D53BDB(NULL);
return (bool)((!(((uint32_t)L_4) <= ((uint32_t)0)))? 1 : 0);
}
IL_0024:
{
// return false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig__ctor_mCE1DD53EEE749B4BD2C5914BF5BA8E8B3C60334F (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// float m_CameraYOffset = k_DefaultCameraYOffset;
__this->___m_CameraYOffset_9 = (1.36143994f);
// TrackingSpaceType m_TrackingSpace = k_MigratedTrackingSpace;
__this->___m_TrackingSpace_16 = 3;
// TrackingOriginModeFlags m_TrackingOriginMode = k_MigratedTrackingOriginMode;
__this->___m_TrackingOriginMode_17 = ((int32_t)-2147483648LL);
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRig__cctor_mDE73041441EEB25690F207D387777894D32EAF8F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC249FC827BC3BE999A938F8B5BD884F8AA0CB7FA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t90832B88D7207769654164CC28440CF594CC397D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static readonly List<XRInputSubsystem> s_InputSubsystems = new List<XRInputSubsystem>();
List_1_t90832B88D7207769654164CC28440CF594CC397D* L_0 = (List_1_t90832B88D7207769654164CC28440CF594CC397D*)il2cpp_codegen_object_new(List_1_t90832B88D7207769654164CC28440CF594CC397D_il2cpp_TypeInfo_var);
List_1__ctor_mC249FC827BC3BE999A938F8B5BD884F8AA0CB7FA(L_0, /*hidden argument*/List_1__ctor_mC249FC827BC3BE999A938F8B5BD884F8AA0CB7FA_RuntimeMethod_var);
((XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_StaticFields*)il2cpp_codegen_static_fields_for(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var))->___s_InputSubsystems_11 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_StaticFields*)il2cpp_codegen_static_fields_for(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var))->___s_InputSubsystems_11), (void*)L_0);
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig::<OnValidate>g__IsModeStale|35_0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRig_U3COnValidateU3Eg__IsModeStaleU7C35_0_m64AB1C559E4CAA47441B7CD9A68EBB52C062829F (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m984D421A36C91A4FA622218385CB4346C9411DF3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m43BF1149292892E0A147B31279D198F4ABA5D952_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mEBE35085F23AD21C6E36B9EFAED53B414317CE31_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mD7750792B348A44331FAA1F78D8608F585823A50_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF8DDB0BDC273D655115D5E62307ADF657EC28DE5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5 V_0;
memset((&V_0), 0, sizeof(V_0));
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
bool V_4 = false;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 4> __leave_targets;
{
// if (s_InputSubsystems.Count > 0)
il2cpp_codegen_runtime_class_init_inline(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var);
List_1_t90832B88D7207769654164CC28440CF594CC397D* L_0 = ((XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_StaticFields*)il2cpp_codegen_static_fields_for(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var))->___s_InputSubsystems_11;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_mF8DDB0BDC273D655115D5E62307ADF657EC28DE5_inline(L_0, List_1_get_Count_mF8DDB0BDC273D655115D5E62307ADF657EC28DE5_RuntimeMethod_var);
if ((((int32_t)L_1) <= ((int32_t)0)))
{
goto IL_0079;
}
}
{
// foreach (var inputSubsystem in s_InputSubsystems)
il2cpp_codegen_runtime_class_init_inline(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var);
List_1_t90832B88D7207769654164CC28440CF594CC397D* L_2 = ((XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_StaticFields*)il2cpp_codegen_static_fields_for(XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F_il2cpp_TypeInfo_var))->___s_InputSubsystems_11;
NullCheck(L_2);
Enumerator_t6A30CB77C3B8BF2729352F3BDF7E6FE8BE18B5D5 L_3;
L_3 = List_1_GetEnumerator_mD7750792B348A44331FAA1F78D8608F585823A50(L_2, List_1_GetEnumerator_mD7750792B348A44331FAA1F78D8608F585823A50_RuntimeMethod_var);
V_0 = L_3;
}
IL_0018:
try
{// begin try (depth: 1)
{
goto IL_0060;
}
IL_001a:
{
// foreach (var inputSubsystem in s_InputSubsystems)
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_4;
L_4 = Enumerator_get_Current_mEBE35085F23AD21C6E36B9EFAED53B414317CE31_inline((&V_0), Enumerator_get_Current_mEBE35085F23AD21C6E36B9EFAED53B414317CE31_RuntimeMethod_var);
V_1 = L_4;
// switch (m_RequestedTrackingOriginMode)
int32_t L_5 = __this->___m_RequestedTrackingOriginMode_8;
V_3 = L_5;
int32_t L_6 = V_3;
switch (L_6)
{
case 0:
{
goto IL_003d;
}
case 1:
{
goto IL_0042;
}
case 2:
{
goto IL_0046;
}
}
}
IL_003b:
{
goto IL_004a;
}
IL_003d:
{
// return false;
V_4 = (bool)0;
IL2CPP_LEAVE(0x130, FINALLY_006b);
}
IL_0042:
{
// equivalentFlagsMode = TrackingOriginModeFlags.Device;
V_2 = 1;
// break;
goto IL_004f;
}
IL_0046:
{
// equivalentFlagsMode = TrackingOriginModeFlags.Floor;
V_2 = 2;
// break;
goto IL_004f;
}
IL_004a:
{
// return false;
V_4 = (bool)0;
IL2CPP_LEAVE(0x130, FINALLY_006b);
}
IL_004f:
{
// if (inputSubsystem != null && inputSubsystem.GetTrackingOriginMode() != equivalentFlagsMode)
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_7 = V_1;
if (!L_7)
{
goto IL_0060;
}
}
IL_0052:
{
XRInputSubsystem_tFECE6683FCAEBF05BAD05E5D612690095D8BAD34* L_8 = V_1;
NullCheck(L_8);
int32_t L_9;
L_9 = XRInputSubsystem_GetTrackingOriginMode_mBAFED615F74039A681825BB956AD3C8FA7DE45F2(L_8, NULL);
int32_t L_10 = V_2;
if ((((int32_t)L_9) == ((int32_t)L_10)))
{
goto IL_0060;
}
}
IL_005b:
{
// return true;
V_4 = (bool)1;
IL2CPP_LEAVE(0x130, FINALLY_006b);
}
IL_0060:
{
// foreach (var inputSubsystem in s_InputSubsystems)
bool L_11;
L_11 = Enumerator_MoveNext_m43BF1149292892E0A147B31279D198F4ABA5D952((&V_0), Enumerator_MoveNext_m43BF1149292892E0A147B31279D198F4ABA5D952_RuntimeMethod_var);
if (L_11)
{
goto IL_001a;
}
}
IL_0069:
{
IL2CPP_LEAVE(0x128, FINALLY_006b);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_006b;
}
FINALLY_006b:
{// begin finally (depth: 1)
Enumerator_Dispose_m984D421A36C91A4FA622218385CB4346C9411DF3((&V_0), Enumerator_Dispose_m984D421A36C91A4FA622218385CB4346C9411DF3_RuntimeMethod_var);
IL2CPP_END_FINALLY(107)
}// end finally (depth: 1)
IL2CPP_CLEANUP(107)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x130, IL_0082)
IL2CPP_JUMP_TBL(0x128, IL_0080)
}
IL_0079:
{
// return IsModeStaleLegacy();
bool L_12;
L_12 = XRRig_IsModeStaleLegacy_m391BF8291CBAF96C761E8A1174B78BDB9F526B0C(__this, NULL);
return L_12;
}
IL_0080:
{
// return false;
return (bool)0;
}
IL_0082:
{
// }
bool L_13 = V_4;
return L_13;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CRepeatInitializeCameraU3Ed__41__ctor_m6B95E9FAB0B4538741707561ADAB158E77B30508 (U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->___U3CU3E1__state_0 = L_0;
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CRepeatInitializeCameraU3Ed__41_System_IDisposable_Dispose_m19D2DA05D910E813ED787FCC8B0E7B1DF1E64119 (U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F* __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CRepeatInitializeCameraU3Ed__41_MoveNext_m8562B4606A85EEE18B2512223D0B6965BC437772 (U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* V_1 = NULL;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_1 = __this->___U3CU3E4__this_2;
V_1 = L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0017;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0037;
}
}
{
return (bool)0;
}
IL_0017:
{
__this->___U3CU3E1__state_0 = (-1);
// m_CameraInitializing = true;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_4 = V_1;
NullCheck(L_4);
L_4->___m_CameraInitializing_13 = (bool)1;
goto IL_0052;
}
IL_0027:
{
// yield return null;
__this->___U3CU3E2__current_1 = NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)NULL);
__this->___U3CU3E1__state_0 = 1;
return (bool)1;
}
IL_0037:
{
__this->___U3CU3E1__state_0 = (-1);
// if (!m_CameraInitialized)
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_5 = V_1;
NullCheck(L_5);
bool L_6 = L_5->___m_CameraInitialized_12;
if (L_6)
{
goto IL_0052;
}
}
{
// m_CameraInitialized = SetupCamera();
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_7 = V_1;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_8 = V_1;
NullCheck(L_8);
bool L_9;
L_9 = XRRig_SetupCamera_mF14AD1A86C728BC80E1C491B99D432ADC6A80967(L_8, NULL);
NullCheck(L_7);
L_7->___m_CameraInitialized_12 = L_9;
}
IL_0052:
{
// while (!m_CameraInitialized)
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_10 = V_1;
NullCheck(L_10);
bool L_11 = L_10->___m_CameraInitialized_12;
if (!L_11)
{
goto IL_0027;
}
}
{
// m_CameraInitializing = false;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_12 = V_1;
NullCheck(L_12);
L_12->___m_CameraInitializing_13 = (bool)0;
// }
return (bool)0;
}
}
// System.Object UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41::System.Collections.Generic.IEnumerator<System.Object>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CRepeatInitializeCameraU3Ed__41_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mE23C62A36EB2F24DB64738EC405E006C9F83F2DD (U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CRepeatInitializeCameraU3Ed__41_System_Collections_IEnumerator_Reset_m1954EDA34FDB2E32E388DFEBF546B7DB774800B9 (U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CRepeatInitializeCameraU3Ed__41_System_Collections_IEnumerator_Reset_m1954EDA34FDB2E32E388DFEBF546B7DB774800B9_RuntimeMethod_var)));
}
}
// System.Object UnityEngine.XR.Interaction.Toolkit.XRRig/<RepeatInitializeCamera>d__41::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CRepeatInitializeCameraU3Ed__41_System_Collections_IEnumerator_get_Current_m03CB30FD2B3051C117373B45D0D443620475185A (U3CRepeatInitializeCameraU3Ed__41_tEDA5A0902F9F96DBC680B43FB0CEEF150D56009F* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::add_contactAdded(System.Action`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerContactMonitor_add_contactAdded_m00A6ECF01FFB98168F6B7FEADA03A8393E0EAC56 (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_0 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_1 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_2 = NULL;
{
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_0 = __this->___contactAdded_0;
V_0 = L_0;
}
IL_0007:
{
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_1 = V_0;
V_1 = L_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_2 = V_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)Castclass((RuntimeObject*)L_4, Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875_il2cpp_TypeInfo_var));
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875** L_5 = (&__this->___contactAdded_0);
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_6 = V_2;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_7 = V_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_9 = V_0;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)L_9) == ((RuntimeObject*)(Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::remove_contactAdded(System.Action`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerContactMonitor_remove_contactAdded_mD2B517B30C0520A28F52D4323326639E50D94793 (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_0 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_1 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_2 = NULL;
{
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_0 = __this->___contactAdded_0;
V_0 = L_0;
}
IL_0007:
{
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_1 = V_0;
V_1 = L_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_2 = V_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)Castclass((RuntimeObject*)L_4, Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875_il2cpp_TypeInfo_var));
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875** L_5 = (&__this->___contactAdded_0);
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_6 = V_2;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_7 = V_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_9 = V_0;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)L_9) == ((RuntimeObject*)(Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::add_contactRemoved(System.Action`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerContactMonitor_add_contactRemoved_m122AF98D8CF03B7AFA2D6F27FD4C7E5274AA3975 (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_0 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_1 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_2 = NULL;
{
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_0 = __this->___contactRemoved_1;
V_0 = L_0;
}
IL_0007:
{
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_1 = V_0;
V_1 = L_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_2 = V_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)Castclass((RuntimeObject*)L_4, Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875_il2cpp_TypeInfo_var));
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875** L_5 = (&__this->___contactRemoved_1);
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_6 = V_2;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_7 = V_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_9 = V_0;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)L_9) == ((RuntimeObject*)(Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::remove_contactRemoved(System.Action`1<UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerContactMonitor_remove_contactRemoved_mF869F177089873E375B288B24DE56780988A8891 (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_0 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_1 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* V_2 = NULL;
{
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_0 = __this->___contactRemoved_1;
V_0 = L_0;
}
IL_0007:
{
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_1 = V_0;
V_1 = L_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_2 = V_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)Castclass((RuntimeObject*)L_4, Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875_il2cpp_TypeInfo_var));
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875** L_5 = (&__this->___contactRemoved_1);
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_6 = V_2;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_7 = V_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*>(L_5, L_6, L_7);
V_0 = L_8;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_9 = V_0;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)L_9) == ((RuntimeObject*)(Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.XRInteractionManager UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::get_interactionManager()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* TriggerContactMonitor_get_interactionManager_m962AC519D6229441CA8EB1F2703A6B653E0B9B1F (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, const RuntimeMethod* method)
{
{
// public XRInteractionManager interactionManager { get; set; }
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_0 = __this->___U3CinteractionManagerU3Ek__BackingField_2;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::set_interactionManager(UnityEngine.XR.Interaction.Toolkit.XRInteractionManager)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerContactMonitor_set_interactionManager_m43C96CAC16C5FEB57406D67B68065078FC50D4FC (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___value0, const RuntimeMethod* method)
{
{
// public XRInteractionManager interactionManager { get; set; }
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_0 = ___value0;
__this->___U3CinteractionManagerU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractionManagerU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::AddCollider(UnityEngine.Collider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerContactMonitor_AddCollider_m90B52CC8A482935FE03014BA709AFED8C1A91210 (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___collider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m020DA30FB093D699CEAA4B02CFFC8971106167B5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m8F91FD4088E131696D75A31DF6A17F7204B07C37_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_0 = NULL;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* G_B3_0 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* G_B8_0 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* G_B7_0 = NULL;
{
// var interactable = interactionManager != null ? interactionManager.GetInteractableForCollider(collider) : null;
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_0;
L_0 = TriggerContactMonitor_get_interactionManager_m962AC519D6229441CA8EB1F2703A6B653E0B9B1F_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_1)
{
goto IL_0011;
}
}
{
G_B3_0 = ((XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6*)(NULL));
goto IL_001d;
}
IL_0011:
{
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_2;
L_2 = TriggerContactMonitor_get_interactionManager_m962AC519D6229441CA8EB1F2703A6B653E0B9B1F_inline(__this, NULL);
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_3 = ___collider0;
NullCheck(L_2);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_4;
L_4 = XRInteractionManager_GetInteractableForCollider_m546BE05EAB715F319718D1A173325A8EE87EAD25(L_2, L_3, NULL);
G_B3_0 = L_4;
}
IL_001d:
{
V_0 = G_B3_0;
// if (interactable == null)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_5 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_6;
L_6 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_5, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_6)
{
goto IL_0035;
}
}
{
// m_EnteredUnassociatedColliders.Add(collider);
HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* L_7 = __this->___m_EnteredUnassociatedColliders_5;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_8 = ___collider0;
NullCheck(L_7);
bool L_9;
L_9 = HashSet_1_Add_m8F91FD4088E131696D75A31DF6A17F7204B07C37(L_7, L_8, HashSet_1_Add_m8F91FD4088E131696D75A31DF6A17F7204B07C37_RuntimeMethod_var);
// return;
return;
}
IL_0035:
{
// m_EnteredColliders[collider] = interactable;
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_10 = __this->___m_EnteredColliders_3;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_11 = ___collider0;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_12 = V_0;
NullCheck(L_10);
Dictionary_2_set_Item_m020DA30FB093D699CEAA4B02CFFC8971106167B5(L_10, L_11, L_12, Dictionary_2_set_Item_m020DA30FB093D699CEAA4B02CFFC8971106167B5_RuntimeMethod_var);
// if (m_UnorderedInteractables.Add(interactable))
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_13 = __this->___m_UnorderedInteractables_4;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_14 = V_0;
NullCheck(L_13);
bool L_15;
L_15 = HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485(L_13, L_14, HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var);
if (!L_15)
{
goto IL_0061;
}
}
{
// contactAdded?.Invoke(interactable);
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_16 = __this->___contactAdded_0;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_17 = L_16;
G_B7_0 = L_17;
if (L_17)
{
G_B8_0 = L_17;
goto IL_005b;
}
}
{
return;
}
IL_005b:
{
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_18 = V_0;
NullCheck(G_B8_0);
Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC(G_B8_0, L_18, Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC_RuntimeMethod_var);
}
IL_0061:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::RemoveCollider(UnityEngine.Collider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerContactMonitor_RemoveCollider_mAD618FBAD24B9791B2613A2792CA5C846F2C23D4 (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* ___collider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_m7EB0E0CC4C6F660FCC0BF988C7CF08158EAA9D1C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m05A7F101C863C57A729D38F2C1678CBA3FD3FCF2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m75FB25D8B11134C9C4066F72FA6AC6E8A9F2258A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mE30AF5FEE3FA912E634BD92B4970FB75BEED9664_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mF52B0FA8838B2C802DCDD385FB2BFC7B5110F390_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m5DFAA82D84865660E1D5FA8BBF27AED9A390EF2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_mF49EBE1351C8F52E2EF711118423B90BD6CD74C5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m3EE91401838D1F361844DF4F85724FB69CF93E67_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_0 = NULL;
Enumerator_t6B4BB26A13A662A4B1E681DD83CAAB5BA158CAC3 V_1;
memset((&V_1), 0, sizeof(V_1));
KeyValuePair_2_tA6D30FFB4692368D27138C35CCA0D714E3EF6ABA V_2;
memset((&V_2), 0, sizeof(V_2));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* G_B15_0 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* G_B14_0 = NULL;
{
// if (m_EnteredUnassociatedColliders.Remove(collider))
HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* L_0 = __this->___m_EnteredUnassociatedColliders_5;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_1 = ___collider0;
NullCheck(L_0);
bool L_2;
L_2 = HashSet_1_Remove_m5DFAA82D84865660E1D5FA8BBF27AED9A390EF2D(L_0, L_1, HashSet_1_Remove_m5DFAA82D84865660E1D5FA8BBF27AED9A390EF2D_RuntimeMethod_var);
if (!L_2)
{
goto IL_000f;
}
}
{
// return;
return;
}
IL_000f:
{
// if (m_EnteredColliders.TryGetValue(collider, out var interactable))
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_3 = __this->___m_EnteredColliders_3;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_4 = ___collider0;
NullCheck(L_3);
bool L_5;
L_5 = Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80(L_3, L_4, (&V_0), Dictionary_2_TryGetValue_m240EC279EA0C483A8056E0644EA5C14CC5B05B80_RuntimeMethod_var);
if (!L_5)
{
goto IL_0095;
}
}
{
// m_EnteredColliders.Remove(collider);
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_6 = __this->___m_EnteredColliders_3;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_7 = ___collider0;
NullCheck(L_6);
bool L_8;
L_8 = Dictionary_2_Remove_m05A7F101C863C57A729D38F2C1678CBA3FD3FCF2(L_6, L_7, Dictionary_2_Remove_m05A7F101C863C57A729D38F2C1678CBA3FD3FCF2_RuntimeMethod_var);
// if (interactable == null)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_9 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_10;
L_10 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_9, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_10)
{
goto IL_0036;
}
}
{
// return;
return;
}
IL_0036:
{
// foreach (var kvp in m_EnteredColliders)
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_11 = __this->___m_EnteredColliders_3;
NullCheck(L_11);
Enumerator_t6B4BB26A13A662A4B1E681DD83CAAB5BA158CAC3 L_12;
L_12 = Dictionary_2_GetEnumerator_m7EB0E0CC4C6F660FCC0BF988C7CF08158EAA9D1C(L_11, Dictionary_2_GetEnumerator_m7EB0E0CC4C6F660FCC0BF988C7CF08158EAA9D1C_RuntimeMethod_var);
V_1 = L_12;
}
IL_0042:
try
{// begin try (depth: 1)
{
goto IL_005d;
}
IL_0044:
{
// foreach (var kvp in m_EnteredColliders)
KeyValuePair_2_tA6D30FFB4692368D27138C35CCA0D714E3EF6ABA L_13;
L_13 = Enumerator_get_Current_mF52B0FA8838B2C802DCDD385FB2BFC7B5110F390_inline((&V_1), Enumerator_get_Current_mF52B0FA8838B2C802DCDD385FB2BFC7B5110F390_RuntimeMethod_var);
V_2 = L_13;
// if (kvp.Value == interactable)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_14;
L_14 = KeyValuePair_2_get_Value_m3EE91401838D1F361844DF4F85724FB69CF93E67_inline((&V_2), KeyValuePair_2_get_Value_m3EE91401838D1F361844DF4F85724FB69CF93E67_RuntimeMethod_var);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_15 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_16;
L_16 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_14, L_15, NULL);
if (!L_16)
{
goto IL_005d;
}
}
IL_005b:
{
// return;
IL2CPP_LEAVE(0x149, FINALLY_0068);
}
IL_005d:
{
// foreach (var kvp in m_EnteredColliders)
bool L_17;
L_17 = Enumerator_MoveNext_mE30AF5FEE3FA912E634BD92B4970FB75BEED9664((&V_1), Enumerator_MoveNext_mE30AF5FEE3FA912E634BD92B4970FB75BEED9664_RuntimeMethod_var);
if (L_17)
{
goto IL_0044;
}
}
IL_0066:
{
IL2CPP_LEAVE(0x118, FINALLY_0068);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_0068;
}
FINALLY_0068:
{// begin finally (depth: 1)
Enumerator_Dispose_m75FB25D8B11134C9C4066F72FA6AC6E8A9F2258A((&V_1), Enumerator_Dispose_m75FB25D8B11134C9C4066F72FA6AC6E8A9F2258A_RuntimeMethod_var);
IL2CPP_END_FINALLY(104)
}// end finally (depth: 1)
IL2CPP_CLEANUP(104)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x149, IL_0095)
IL2CPP_JUMP_TBL(0x118, IL_0076)
}
IL_0076:
{
// if (m_UnorderedInteractables.Remove(interactable))
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_18 = __this->___m_UnorderedInteractables_4;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_19 = V_0;
NullCheck(L_18);
bool L_20;
L_20 = HashSet_1_Remove_mF49EBE1351C8F52E2EF711118423B90BD6CD74C5(L_18, L_19, HashSet_1_Remove_mF49EBE1351C8F52E2EF711118423B90BD6CD74C5_RuntimeMethod_var);
if (!L_20)
{
goto IL_0095;
}
}
{
// contactRemoved?.Invoke(interactable);
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_21 = __this->___contactRemoved_1;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_22 = L_21;
G_B14_0 = L_22;
if (L_22)
{
G_B15_0 = L_22;
goto IL_008f;
}
}
{
return;
}
IL_008f:
{
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_23 = V_0;
NullCheck(G_B15_0);
Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC(G_B15_0, L_23, Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC_RuntimeMethod_var);
}
IL_0095:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::ResolveUnassociatedColliders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerContactMonitor_ResolveUnassociatedColliders_m2790DF3456DEC8F2EDC7DF84EA7B64E169E68F87 (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m020DA30FB093D699CEAA4B02CFFC8971106167B5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m2E1BCE0886AD98672E79E03B1DFBCC33E831052C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mD434DF7C6AE02F45F424CB0EB0BA8F955F226687_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m10F66F13C7B3FA8C93CAAF4A0D26B9695EB8F9B9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_GetEnumerator_mEEC525C8B84ED95D0F8FC4BB677A53CFF2117D00_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m5DFAA82D84865660E1D5FA8BBF27AED9A390EF2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_get_Count_m6DCD41ED4CF35B3625B468EF2E8BD97E1E72E2C1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m67ADCB698F31486B35CF5DB4CFB1E97EB807FEFD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m567A0E8ADE485441540D5B46AB6C518558DDA2FE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t5E62D883610A9174D8971F153A9D3DB97CED7B3D V_0;
memset((&V_0), 0, sizeof(V_0));
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* V_1 = NULL;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* V_2 = NULL;
Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A V_3;
memset((&V_3), 0, sizeof(V_3));
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* V_4 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* G_B9_0 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* G_B8_0 = NULL;
{
// if (m_EnteredUnassociatedColliders.Count == 0 || interactionManager == null)
HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* L_0 = __this->___m_EnteredUnassociatedColliders_5;
NullCheck(L_0);
int32_t L_1;
L_1 = HashSet_1_get_Count_m6DCD41ED4CF35B3625B468EF2E8BD97E1E72E2C1_inline(L_0, HashSet_1_get_Count_m6DCD41ED4CF35B3625B468EF2E8BD97E1E72E2C1_RuntimeMethod_var);
if (!L_1)
{
goto IL_001b;
}
}
{
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_2;
L_2 = TriggerContactMonitor_get_interactionManager_m962AC519D6229441CA8EB1F2703A6B653E0B9B1F_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_3)
{
goto IL_001c;
}
}
IL_001b:
{
// return;
return;
}
IL_001c:
{
// s_ScratchColliders.Clear();
il2cpp_codegen_runtime_class_init_inline(TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var);
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* L_4 = ((TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_StaticFields*)il2cpp_codegen_static_fields_for(TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var))->___s_ScratchColliders_6;
NullCheck(L_4);
List_1_Clear_m567A0E8ADE485441540D5B46AB6C518558DDA2FE_inline(L_4, List_1_Clear_m567A0E8ADE485441540D5B46AB6C518558DDA2FE_RuntimeMethod_var);
// foreach (var col in m_EnteredUnassociatedColliders)
HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* L_5 = __this->___m_EnteredUnassociatedColliders_5;
NullCheck(L_5);
Enumerator_t5E62D883610A9174D8971F153A9D3DB97CED7B3D L_6;
L_6 = HashSet_1_GetEnumerator_mEEC525C8B84ED95D0F8FC4BB677A53CFF2117D00(L_5, HashSet_1_GetEnumerator_mEEC525C8B84ED95D0F8FC4BB677A53CFF2117D00_RuntimeMethod_var);
V_0 = L_6;
}
IL_0032:
try
{// begin try (depth: 1)
{
goto IL_008a;
}
IL_0034:
{
// foreach (var col in m_EnteredUnassociatedColliders)
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_7;
L_7 = Enumerator_get_Current_m10F66F13C7B3FA8C93CAAF4A0D26B9695EB8F9B9_inline((&V_0), Enumerator_get_Current_m10F66F13C7B3FA8C93CAAF4A0D26B9695EB8F9B9_RuntimeMethod_var);
V_1 = L_7;
// var interactable = interactionManager.GetInteractableForCollider(col);
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_8;
L_8 = TriggerContactMonitor_get_interactionManager_m962AC519D6229441CA8EB1F2703A6B653E0B9B1F_inline(__this, NULL);
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_9 = V_1;
NullCheck(L_8);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_10;
L_10 = XRInteractionManager_GetInteractableForCollider_m546BE05EAB715F319718D1A173325A8EE87EAD25(L_8, L_9, NULL);
V_2 = L_10;
// if (interactable != null)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_11 = V_2;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_12;
L_12 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_11, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_12)
{
goto IL_008a;
}
}
IL_0052:
{
// s_ScratchColliders.Add(col);
il2cpp_codegen_runtime_class_init_inline(TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var);
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* L_13 = ((TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_StaticFields*)il2cpp_codegen_static_fields_for(TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var))->___s_ScratchColliders_6;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_14 = V_1;
NullCheck(L_13);
List_1_Add_m67ADCB698F31486B35CF5DB4CFB1E97EB807FEFD_inline(L_13, L_14, List_1_Add_m67ADCB698F31486B35CF5DB4CFB1E97EB807FEFD_RuntimeMethod_var);
// m_EnteredColliders[col] = interactable;
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_15 = __this->___m_EnteredColliders_3;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_16 = V_1;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_17 = V_2;
NullCheck(L_15);
Dictionary_2_set_Item_m020DA30FB093D699CEAA4B02CFFC8971106167B5(L_15, L_16, L_17, Dictionary_2_set_Item_m020DA30FB093D699CEAA4B02CFFC8971106167B5_RuntimeMethod_var);
// if (m_UnorderedInteractables.Add(interactable))
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_18 = __this->___m_UnorderedInteractables_4;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_19 = V_2;
NullCheck(L_18);
bool L_20;
L_20 = HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485(L_18, L_19, HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var);
if (!L_20)
{
goto IL_008a;
}
}
IL_0078:
{
// contactAdded?.Invoke(interactable);
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_21 = __this->___contactAdded_0;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_22 = L_21;
G_B8_0 = L_22;
if (L_22)
{
G_B9_0 = L_22;
goto IL_0084;
}
}
IL_0081:
{
goto IL_008a;
}
IL_0084:
{
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_23 = V_2;
NullCheck(G_B9_0);
Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC(G_B9_0, L_23, Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC_RuntimeMethod_var);
}
IL_008a:
{
// foreach (var col in m_EnteredUnassociatedColliders)
bool L_24;
L_24 = Enumerator_MoveNext_mD434DF7C6AE02F45F424CB0EB0BA8F955F226687((&V_0), Enumerator_MoveNext_mD434DF7C6AE02F45F424CB0EB0BA8F955F226687_RuntimeMethod_var);
if (L_24)
{
goto IL_0034;
}
}
IL_0093:
{
IL2CPP_LEAVE(0x163, FINALLY_0095);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_0095;
}
FINALLY_0095:
{// begin finally (depth: 1)
Enumerator_Dispose_m2E1BCE0886AD98672E79E03B1DFBCC33E831052C((&V_0), Enumerator_Dispose_m2E1BCE0886AD98672E79E03B1DFBCC33E831052C_RuntimeMethod_var);
IL2CPP_END_FINALLY(149)
}// end finally (depth: 1)
IL2CPP_CLEANUP(149)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x163, IL_00a3)
}
IL_00a3:
{
// foreach (var col in s_ScratchColliders)
il2cpp_codegen_runtime_class_init_inline(TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var);
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* L_25 = ((TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_StaticFields*)il2cpp_codegen_static_fields_for(TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var))->___s_ScratchColliders_6;
NullCheck(L_25);
Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A L_26;
L_26 = List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420(L_25, List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420_RuntimeMethod_var);
V_3 = L_26;
}
IL_00ae:
try
{// begin try (depth: 1)
{
goto IL_00c7;
}
IL_00b0:
{
// foreach (var col in s_ScratchColliders)
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_27;
L_27 = Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_inline((&V_3), Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_RuntimeMethod_var);
V_4 = L_27;
// m_EnteredUnassociatedColliders.Remove(col);
HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* L_28 = __this->___m_EnteredUnassociatedColliders_5;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_29 = V_4;
NullCheck(L_28);
bool L_30;
L_30 = HashSet_1_Remove_m5DFAA82D84865660E1D5FA8BBF27AED9A390EF2D(L_28, L_29, HashSet_1_Remove_m5DFAA82D84865660E1D5FA8BBF27AED9A390EF2D_RuntimeMethod_var);
}
IL_00c7:
{
// foreach (var col in s_ScratchColliders)
bool L_31;
L_31 = Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1((&V_3), Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1_RuntimeMethod_var);
if (L_31)
{
goto IL_00b0;
}
}
IL_00d0:
{
IL2CPP_LEAVE(0x224, FINALLY_00d2);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_00d2;
}
FINALLY_00d2:
{// begin finally (depth: 1)
Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D((&V_3), Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D_RuntimeMethod_var);
IL2CPP_END_FINALLY(210)
}// end finally (depth: 1)
IL2CPP_CLEANUP(210)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x224, IL_00e0)
}
IL_00e0:
{
// s_ScratchColliders.Clear();
il2cpp_codegen_runtime_class_init_inline(TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var);
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* L_32 = ((TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_StaticFields*)il2cpp_codegen_static_fields_for(TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var))->___s_ScratchColliders_6;
NullCheck(L_32);
List_1_Clear_m567A0E8ADE485441540D5B46AB6C518558DDA2FE_inline(L_32, List_1_Clear_m567A0E8ADE485441540D5B46AB6C518558DDA2FE_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::ResolveUnassociatedColliders(UnityEngine.XR.Interaction.Toolkit.XRBaseInteractable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerContactMonitor_ResolveUnassociatedColliders_m9DE32F9F3F27754BCCAFDDCF9B5BC7FC53B7519A (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___interactable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m020DA30FB093D699CEAA4B02CFFC8971106167B5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m1E6C922FF221537A47E8526FC09741D893BEF324_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m5DFAA82D84865660E1D5FA8BBF27AED9A390EF2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_get_Count_m6DCD41ED4CF35B3625B468EF2E8BD97E1E72E2C1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A V_0;
memset((&V_0), 0, sizeof(V_0));
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* V_1 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* G_B10_0 = NULL;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* G_B9_0 = NULL;
{
// if (m_EnteredUnassociatedColliders.Count == 0 || interactionManager == null)
HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* L_0 = __this->___m_EnteredUnassociatedColliders_5;
NullCheck(L_0);
int32_t L_1;
L_1 = HashSet_1_get_Count_m6DCD41ED4CF35B3625B468EF2E8BD97E1E72E2C1_inline(L_0, HashSet_1_get_Count_m6DCD41ED4CF35B3625B468EF2E8BD97E1E72E2C1_RuntimeMethod_var);
if (!L_1)
{
goto IL_001b;
}
}
{
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_2;
L_2 = TriggerContactMonitor_get_interactionManager_m962AC519D6229441CA8EB1F2703A6B653E0B9B1F_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_3)
{
goto IL_001c;
}
}
IL_001b:
{
// return;
return;
}
IL_001c:
{
// foreach (var col in interactable.colliders)
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_4 = ___interactable0;
NullCheck(L_4);
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* L_5;
L_5 = XRBaseInteractable_get_colliders_m7E5D104638AC4B5E5C77D40094AA52B9ABEB32FB_inline(L_4, NULL);
NullCheck(L_5);
Enumerator_t3411ABDBCC75D9A3CF54484CC49FA3DBF6B2342A L_6;
L_6 = List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420(L_5, List_1_GetEnumerator_m1D5E48528014F2A36980D68EC7CDB6FF03B83420_RuntimeMethod_var);
V_0 = L_6;
}
IL_0028:
try
{// begin try (depth: 1)
{
goto IL_008e;
}
IL_002a:
{
// foreach (var col in interactable.colliders)
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_7;
L_7 = Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_inline((&V_0), Enumerator_get_Current_m9822B326FC4E04A23C53BBB2A7E1F1D89C2E9245_RuntimeMethod_var);
V_1 = L_7;
// if (m_EnteredUnassociatedColliders.Contains(col) && interactionManager.GetInteractableForCollider(col) == interactable)
HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* L_8 = __this->___m_EnteredUnassociatedColliders_5;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_9 = V_1;
NullCheck(L_8);
bool L_10;
L_10 = HashSet_1_Contains_m1E6C922FF221537A47E8526FC09741D893BEF324(L_8, L_9, HashSet_1_Contains_m1E6C922FF221537A47E8526FC09741D893BEF324_RuntimeMethod_var);
if (!L_10)
{
goto IL_008e;
}
}
IL_0040:
{
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_11;
L_11 = TriggerContactMonitor_get_interactionManager_m962AC519D6229441CA8EB1F2703A6B653E0B9B1F_inline(__this, NULL);
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_12 = V_1;
NullCheck(L_11);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_13;
L_13 = XRInteractionManager_GetInteractableForCollider_m546BE05EAB715F319718D1A173325A8EE87EAD25(L_11, L_12, NULL);
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_14 = ___interactable0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_15;
L_15 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_13, L_14, NULL);
if (!L_15)
{
goto IL_008e;
}
}
IL_0054:
{
// m_EnteredUnassociatedColliders.Remove(col);
HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* L_16 = __this->___m_EnteredUnassociatedColliders_5;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_17 = V_1;
NullCheck(L_16);
bool L_18;
L_18 = HashSet_1_Remove_m5DFAA82D84865660E1D5FA8BBF27AED9A390EF2D(L_16, L_17, HashSet_1_Remove_m5DFAA82D84865660E1D5FA8BBF27AED9A390EF2D_RuntimeMethod_var);
// m_EnteredColliders[col] = interactable;
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_19 = __this->___m_EnteredColliders_3;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_20 = V_1;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_21 = ___interactable0;
NullCheck(L_19);
Dictionary_2_set_Item_m020DA30FB093D699CEAA4B02CFFC8971106167B5(L_19, L_20, L_21, Dictionary_2_set_Item_m020DA30FB093D699CEAA4B02CFFC8971106167B5_RuntimeMethod_var);
// if (m_UnorderedInteractables.Add(interactable))
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_22 = __this->___m_UnorderedInteractables_4;
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_23 = ___interactable0;
NullCheck(L_22);
bool L_24;
L_24 = HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485(L_22, L_23, HashSet_1_Add_m854D454FCD93FF2D47ACC704EE10442149CC4485_RuntimeMethod_var);
if (!L_24)
{
goto IL_008e;
}
}
IL_007c:
{
// contactAdded?.Invoke(interactable);
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_25 = __this->___contactAdded_0;
Action_1_tB9F0E5F7549CD8FEA677E8A0496D64DC0E209875* L_26 = L_25;
G_B9_0 = L_26;
if (L_26)
{
G_B10_0 = L_26;
goto IL_0088;
}
}
IL_0085:
{
goto IL_008e;
}
IL_0088:
{
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_27 = ___interactable0;
NullCheck(G_B10_0);
Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC(G_B10_0, L_27, Action_1_Invoke_m5C041E45AEF991AACB4EE8EB17B440679C5D70FC_RuntimeMethod_var);
}
IL_008e:
{
// foreach (var col in interactable.colliders)
bool L_28;
L_28 = Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1((&V_0), Enumerator_MoveNext_m6561DC83C402739651BBB6140E6FCC142CA315E1_RuntimeMethod_var);
if (L_28)
{
goto IL_002a;
}
}
IL_0097:
{
IL2CPP_LEAVE(0x167, FINALLY_0099);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_0099;
}
FINALLY_0099:
{// begin finally (depth: 1)
Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D((&V_0), Enumerator_Dispose_mAF70E9B39A0AD39183DE4B5A7789CE0B0D28BE2D_RuntimeMethod_var);
IL2CPP_END_FINALLY(153)
}// end finally (depth: 1)
IL2CPP_CLEANUP(153)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x167, IL_00a7)
}
IL_00a7:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerContactMonitor__ctor_m1F4312F4BFDBF70D5B3B9434FF5D32A276A1EE7A (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m171CA807CFD9125876994104E2005D04F38AA95C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m67D0471240C68496D5D4CF51915F03455FD5AB4F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_mD2808C0A1FC4A9BC48EDB86348A1FDBDE7F33C11_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// readonly Dictionary<Collider, XRBaseInteractable> m_EnteredColliders = new Dictionary<Collider, XRBaseInteractable>();
Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82* L_0 = (Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82*)il2cpp_codegen_object_new(Dictionary_2_tC8CEE86C9D021FF1FDFBB6CFAD91ECA9FD0CCD82_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m171CA807CFD9125876994104E2005D04F38AA95C(L_0, /*hidden argument*/Dictionary_2__ctor_m171CA807CFD9125876994104E2005D04F38AA95C_RuntimeMethod_var);
__this->___m_EnteredColliders_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EnteredColliders_3), (void*)L_0);
// readonly HashSet<XRBaseInteractable> m_UnorderedInteractables = new HashSet<XRBaseInteractable>();
HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782* L_1 = (HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782*)il2cpp_codegen_object_new(HashSet_1_t8A96B375F0985AE9F89CB0BCB247D2A1ACA01782_il2cpp_TypeInfo_var);
HashSet_1__ctor_m67D0471240C68496D5D4CF51915F03455FD5AB4F(L_1, /*hidden argument*/HashSet_1__ctor_m67D0471240C68496D5D4CF51915F03455FD5AB4F_RuntimeMethod_var);
__this->___m_UnorderedInteractables_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UnorderedInteractables_4), (void*)L_1);
// readonly HashSet<Collider> m_EnteredUnassociatedColliders = new HashSet<Collider>();
HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B* L_2 = (HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B*)il2cpp_codegen_object_new(HashSet_1_t109CCE87260348881F7ED50EEE3FFD003542DC8B_il2cpp_TypeInfo_var);
HashSet_1__ctor_mD2808C0A1FC4A9BC48EDB86348A1FDBDE7F33C11(L_2, /*hidden argument*/HashSet_1__ctor_mD2808C0A1FC4A9BC48EDB86348A1FDBDE7F33C11_RuntimeMethod_var);
__this->___m_EnteredUnassociatedColliders_5 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EnteredUnassociatedColliders_5), (void*)L_2);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.Utilities.TriggerContactMonitor::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerContactMonitor__cctor_m1B2BD458E5A92A64C930FECE6203F8BB05A7FE18 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m0CDD6F02F45026B4267E7117C5DDC188F87EE7BE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static readonly List<Collider> s_ScratchColliders = new List<Collider>();
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* L_0 = (List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252*)il2cpp_codegen_object_new(List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252_il2cpp_TypeInfo_var);
List_1__ctor_m0CDD6F02F45026B4267E7117C5DDC188F87EE7BE(L_0, /*hidden argument*/List_1__ctor_m0CDD6F02F45026B4267E7117C5DDC188F87EE7BE_RuntimeMethod_var);
((TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_StaticFields*)il2cpp_codegen_static_fields_for(TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var))->___s_ScratchColliders_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_StaticFields*)il2cpp_codegen_static_fields_for(TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2_il2cpp_TypeInfo_var))->___s_ScratchColliders_6), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel
IL2CPP_EXTERN_C void JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshal_pinvoke(const JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017& unmarshaled, JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshaled_pinvoke& marshaled)
{
marshaled.___U3CmoveU3Ek__BackingField_0 = unmarshaled.___U3CmoveU3Ek__BackingField_0;
marshaled.___U3CsubmitButtonDeltaU3Ek__BackingField_1 = unmarshaled.___U3CsubmitButtonDeltaU3Ek__BackingField_1;
marshaled.___U3CcancelButtonDeltaU3Ek__BackingField_2 = unmarshaled.___U3CcancelButtonDeltaU3Ek__BackingField_2;
marshaled.___U3CimplementationDataU3Ek__BackingField_3 = unmarshaled.___U3CimplementationDataU3Ek__BackingField_3;
marshaled.___m_SubmitButtonDown_4 = static_cast<int32_t>(unmarshaled.___m_SubmitButtonDown_4);
marshaled.___m_CancelButtonDown_5 = static_cast<int32_t>(unmarshaled.___m_CancelButtonDown_5);
}
IL2CPP_EXTERN_C void JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshal_pinvoke_back(const JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshaled_pinvoke& marshaled, JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017& unmarshaled)
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 unmarshaled_U3CmoveU3Ek__BackingField_temp_0;
memset((&unmarshaled_U3CmoveU3Ek__BackingField_temp_0), 0, sizeof(unmarshaled_U3CmoveU3Ek__BackingField_temp_0));
unmarshaled_U3CmoveU3Ek__BackingField_temp_0 = marshaled.___U3CmoveU3Ek__BackingField_0;
unmarshaled.___U3CmoveU3Ek__BackingField_0 = unmarshaled_U3CmoveU3Ek__BackingField_temp_0;
int32_t unmarshaled_U3CsubmitButtonDeltaU3Ek__BackingField_temp_1 = 0;
unmarshaled_U3CsubmitButtonDeltaU3Ek__BackingField_temp_1 = marshaled.___U3CsubmitButtonDeltaU3Ek__BackingField_1;
unmarshaled.___U3CsubmitButtonDeltaU3Ek__BackingField_1 = unmarshaled_U3CsubmitButtonDeltaU3Ek__BackingField_temp_1;
int32_t unmarshaled_U3CcancelButtonDeltaU3Ek__BackingField_temp_2 = 0;
unmarshaled_U3CcancelButtonDeltaU3Ek__BackingField_temp_2 = marshaled.___U3CcancelButtonDeltaU3Ek__BackingField_2;
unmarshaled.___U3CcancelButtonDeltaU3Ek__BackingField_2 = unmarshaled_U3CcancelButtonDeltaU3Ek__BackingField_temp_2;
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A unmarshaled_U3CimplementationDataU3Ek__BackingField_temp_3;
memset((&unmarshaled_U3CimplementationDataU3Ek__BackingField_temp_3), 0, sizeof(unmarshaled_U3CimplementationDataU3Ek__BackingField_temp_3));
unmarshaled_U3CimplementationDataU3Ek__BackingField_temp_3 = marshaled.___U3CimplementationDataU3Ek__BackingField_3;
unmarshaled.___U3CimplementationDataU3Ek__BackingField_3 = unmarshaled_U3CimplementationDataU3Ek__BackingField_temp_3;
bool unmarshaled_m_SubmitButtonDown_temp_4 = false;
unmarshaled_m_SubmitButtonDown_temp_4 = static_cast<bool>(marshaled.___m_SubmitButtonDown_4);
unmarshaled.___m_SubmitButtonDown_4 = unmarshaled_m_SubmitButtonDown_temp_4;
bool unmarshaled_m_CancelButtonDown_temp_5 = false;
unmarshaled_m_CancelButtonDown_temp_5 = static_cast<bool>(marshaled.___m_CancelButtonDown_5);
unmarshaled.___m_CancelButtonDown_5 = unmarshaled_m_CancelButtonDown_temp_5;
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel
IL2CPP_EXTERN_C void JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshal_pinvoke_cleanup(JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel
IL2CPP_EXTERN_C void JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshal_com(const JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017& unmarshaled, JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshaled_com& marshaled)
{
marshaled.___U3CmoveU3Ek__BackingField_0 = unmarshaled.___U3CmoveU3Ek__BackingField_0;
marshaled.___U3CsubmitButtonDeltaU3Ek__BackingField_1 = unmarshaled.___U3CsubmitButtonDeltaU3Ek__BackingField_1;
marshaled.___U3CcancelButtonDeltaU3Ek__BackingField_2 = unmarshaled.___U3CcancelButtonDeltaU3Ek__BackingField_2;
marshaled.___U3CimplementationDataU3Ek__BackingField_3 = unmarshaled.___U3CimplementationDataU3Ek__BackingField_3;
marshaled.___m_SubmitButtonDown_4 = static_cast<int32_t>(unmarshaled.___m_SubmitButtonDown_4);
marshaled.___m_CancelButtonDown_5 = static_cast<int32_t>(unmarshaled.___m_CancelButtonDown_5);
}
IL2CPP_EXTERN_C void JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshal_com_back(const JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshaled_com& marshaled, JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017& unmarshaled)
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 unmarshaled_U3CmoveU3Ek__BackingField_temp_0;
memset((&unmarshaled_U3CmoveU3Ek__BackingField_temp_0), 0, sizeof(unmarshaled_U3CmoveU3Ek__BackingField_temp_0));
unmarshaled_U3CmoveU3Ek__BackingField_temp_0 = marshaled.___U3CmoveU3Ek__BackingField_0;
unmarshaled.___U3CmoveU3Ek__BackingField_0 = unmarshaled_U3CmoveU3Ek__BackingField_temp_0;
int32_t unmarshaled_U3CsubmitButtonDeltaU3Ek__BackingField_temp_1 = 0;
unmarshaled_U3CsubmitButtonDeltaU3Ek__BackingField_temp_1 = marshaled.___U3CsubmitButtonDeltaU3Ek__BackingField_1;
unmarshaled.___U3CsubmitButtonDeltaU3Ek__BackingField_1 = unmarshaled_U3CsubmitButtonDeltaU3Ek__BackingField_temp_1;
int32_t unmarshaled_U3CcancelButtonDeltaU3Ek__BackingField_temp_2 = 0;
unmarshaled_U3CcancelButtonDeltaU3Ek__BackingField_temp_2 = marshaled.___U3CcancelButtonDeltaU3Ek__BackingField_2;
unmarshaled.___U3CcancelButtonDeltaU3Ek__BackingField_2 = unmarshaled_U3CcancelButtonDeltaU3Ek__BackingField_temp_2;
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A unmarshaled_U3CimplementationDataU3Ek__BackingField_temp_3;
memset((&unmarshaled_U3CimplementationDataU3Ek__BackingField_temp_3), 0, sizeof(unmarshaled_U3CimplementationDataU3Ek__BackingField_temp_3));
unmarshaled_U3CimplementationDataU3Ek__BackingField_temp_3 = marshaled.___U3CimplementationDataU3Ek__BackingField_3;
unmarshaled.___U3CimplementationDataU3Ek__BackingField_3 = unmarshaled_U3CimplementationDataU3Ek__BackingField_temp_3;
bool unmarshaled_m_SubmitButtonDown_temp_4 = false;
unmarshaled_m_SubmitButtonDown_temp_4 = static_cast<bool>(marshaled.___m_SubmitButtonDown_4);
unmarshaled.___m_SubmitButtonDown_4 = unmarshaled_m_SubmitButtonDown_temp_4;
bool unmarshaled_m_CancelButtonDown_temp_5 = false;
unmarshaled_m_CancelButtonDown_temp_5 = static_cast<bool>(marshaled.___m_CancelButtonDown_5);
unmarshaled.___m_CancelButtonDown_5 = unmarshaled_m_CancelButtonDown_temp_5;
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel
IL2CPP_EXTERN_C void JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshal_com_cleanup(JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017_marshaled_com& marshaled)
{
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_move()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 JoystickModel_get_move_mB60103AA953140276E6BDBFF9E2674048B666B81 (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// public Vector2 move { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CmoveU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 JoystickModel_get_move_mB60103AA953140276E6BDBFF9E2674048B666B81_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = JoystickModel_get_move_mB60103AA953140276E6BDBFF9E2674048B666B81_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_move(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_set_move_m84DB43EE4C57318CE0B7FFC8416A6E9DC7DEDEFD (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 move { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CmoveU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_EXTERN_C void JoystickModel_set_move_m84DB43EE4C57318CE0B7FFC8416A6E9DC7DEDEFD_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
JoystickModel_set_move_m84DB43EE4C57318CE0B7FFC8416A6E9DC7DEDEFD_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_submitButtonDown()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JoystickModel_get_submitButtonDown_m2C594CD060FC1467793EB7D04F3A356D3FF5215F (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// get => m_SubmitButtonDown;
bool L_0 = __this->___m_SubmitButtonDown_4;
return L_0;
}
}
IL2CPP_EXTERN_C bool JoystickModel_get_submitButtonDown_m2C594CD060FC1467793EB7D04F3A356D3FF5215F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
bool _returnValue;
_returnValue = JoystickModel_get_submitButtonDown_m2C594CD060FC1467793EB7D04F3A356D3FF5215F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_submitButtonDown(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_set_submitButtonDown_m972C04699F6CF1AE3EF76B94B9F303D508345596 (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, bool ___value0, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* G_B3_0 = NULL;
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* G_B2_0 = NULL;
int32_t G_B4_0 = 0;
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* G_B4_1 = NULL;
{
// if (m_SubmitButtonDown != value)
bool L_0 = __this->___m_SubmitButtonDown_4;
bool L_1 = ___value0;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_001d;
}
}
{
// submitButtonDelta = value ? ButtonDeltaState.Pressed : ButtonDeltaState.Released;
bool L_2 = ___value0;
G_B2_0 = __this;
if (L_2)
{
G_B3_0 = __this;
goto IL_0010;
}
}
{
G_B4_0 = 2;
G_B4_1 = G_B2_0;
goto IL_0011;
}
IL_0010:
{
G_B4_0 = 1;
G_B4_1 = G_B3_0;
}
IL_0011:
{
JoystickModel_set_submitButtonDelta_mBCE238395763AD138FBF5CAD201B57F4AAF0A838_inline(G_B4_1, G_B4_0, NULL);
// m_SubmitButtonDown = value;
bool L_3 = ___value0;
__this->___m_SubmitButtonDown_4 = L_3;
}
IL_001d:
{
// }
return;
}
}
IL2CPP_EXTERN_C void JoystickModel_set_submitButtonDown_m972C04699F6CF1AE3EF76B94B9F303D508345596_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
JoystickModel_set_submitButtonDown_m972C04699F6CF1AE3EF76B94B9F303D508345596(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_submitButtonDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JoystickModel_get_submitButtonDelta_m012B855F15407CE39563A2465270BFE766488E7A (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState submitButtonDelta { get; private set; }
int32_t L_0 = __this->___U3CsubmitButtonDeltaU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t JoystickModel_get_submitButtonDelta_m012B855F15407CE39563A2465270BFE766488E7A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
int32_t _returnValue;
_returnValue = JoystickModel_get_submitButtonDelta_m012B855F15407CE39563A2465270BFE766488E7A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_submitButtonDelta(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_set_submitButtonDelta_mBCE238395763AD138FBF5CAD201B57F4AAF0A838 (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState submitButtonDelta { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CsubmitButtonDeltaU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_EXTERN_C void JoystickModel_set_submitButtonDelta_mBCE238395763AD138FBF5CAD201B57F4AAF0A838_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
JoystickModel_set_submitButtonDelta_mBCE238395763AD138FBF5CAD201B57F4AAF0A838_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_cancelButtonDown()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JoystickModel_get_cancelButtonDown_m0D382FCC9FD1D913786C962041D034B0A93FABDA (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// get => m_CancelButtonDown;
bool L_0 = __this->___m_CancelButtonDown_5;
return L_0;
}
}
IL2CPP_EXTERN_C bool JoystickModel_get_cancelButtonDown_m0D382FCC9FD1D913786C962041D034B0A93FABDA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
bool _returnValue;
_returnValue = JoystickModel_get_cancelButtonDown_m0D382FCC9FD1D913786C962041D034B0A93FABDA_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_cancelButtonDown(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_set_cancelButtonDown_mF5A043FAAB87DC5964D93A18CF3D643600009BEA (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, bool ___value0, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* G_B3_0 = NULL;
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* G_B2_0 = NULL;
int32_t G_B4_0 = 0;
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* G_B4_1 = NULL;
{
// if (m_CancelButtonDown != value)
bool L_0 = __this->___m_CancelButtonDown_5;
bool L_1 = ___value0;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_001d;
}
}
{
// cancelButtonDelta = value ? ButtonDeltaState.Pressed : ButtonDeltaState.Released;
bool L_2 = ___value0;
G_B2_0 = __this;
if (L_2)
{
G_B3_0 = __this;
goto IL_0010;
}
}
{
G_B4_0 = 2;
G_B4_1 = G_B2_0;
goto IL_0011;
}
IL_0010:
{
G_B4_0 = 1;
G_B4_1 = G_B3_0;
}
IL_0011:
{
JoystickModel_set_cancelButtonDelta_m508A4F611F64F834D6EDB84B6539F80FAD1F98DE_inline(G_B4_1, G_B4_0, NULL);
// m_CancelButtonDown = value;
bool L_3 = ___value0;
__this->___m_CancelButtonDown_5 = L_3;
}
IL_001d:
{
// }
return;
}
}
IL2CPP_EXTERN_C void JoystickModel_set_cancelButtonDown_mF5A043FAAB87DC5964D93A18CF3D643600009BEA_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
JoystickModel_set_cancelButtonDown_mF5A043FAAB87DC5964D93A18CF3D643600009BEA(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_cancelButtonDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JoystickModel_get_cancelButtonDelta_m51F7C586967ECC22CE4DA5F81255F83347A71E9E (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState cancelButtonDelta { get; private set; }
int32_t L_0 = __this->___U3CcancelButtonDeltaU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t JoystickModel_get_cancelButtonDelta_m51F7C586967ECC22CE4DA5F81255F83347A71E9E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
int32_t _returnValue;
_returnValue = JoystickModel_get_cancelButtonDelta_m51F7C586967ECC22CE4DA5F81255F83347A71E9E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_cancelButtonDelta(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_set_cancelButtonDelta_m508A4F611F64F834D6EDB84B6539F80FAD1F98DE (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState cancelButtonDelta { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CcancelButtonDeltaU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_EXTERN_C void JoystickModel_set_cancelButtonDelta_m508A4F611F64F834D6EDB84B6539F80FAD1F98DE_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
JoystickModel_set_cancelButtonDelta_m508A4F611F64F834D6EDB84B6539F80FAD1F98DE_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::get_implementationData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A JoystickModel_get_implementationData_mE5B08F7B50DD4815D1930845A677CB4620467160 (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// internal ImplementationData implementationData { get; set; }
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A L_0 = __this->___U3CimplementationDataU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_EXTERN_C ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A JoystickModel_get_implementationData_mE5B08F7B50DD4815D1930845A677CB4620467160_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A _returnValue;
_returnValue = JoystickModel_get_implementationData_mE5B08F7B50DD4815D1930845A677CB4620467160_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::set_implementationData(UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_set_implementationData_m1654E5AEE33F55136D14F090EC47DF7E5C097C39 (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A ___value0, const RuntimeMethod* method)
{
{
// internal ImplementationData implementationData { get; set; }
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A L_0 = ___value0;
__this->___U3CimplementationDataU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_EXTERN_C void JoystickModel_set_implementationData_m1654E5AEE33F55136D14F090EC47DF7E5C097C39_AdjustorThunk (RuntimeObject* __this, ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A ___value0, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
JoystickModel_set_implementationData_m1654E5AEE33F55136D14F090EC47DF7E5C097C39_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_Reset_mAFDFEBC8EA109267A0A16C62033097C38AB9849E (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A V_2;
memset((&V_2), 0, sizeof(V_2));
{
// move = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
L_0 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
JoystickModel_set_move_m84DB43EE4C57318CE0B7FFC8416A6E9DC7DEDEFD_inline(__this, L_0, NULL);
// m_SubmitButtonDown = m_CancelButtonDown = false;
int32_t L_1 = 0;
V_0 = (bool)L_1;
__this->___m_CancelButtonDown_5 = (bool)L_1;
bool L_2 = V_0;
__this->___m_SubmitButtonDown_4 = L_2;
// submitButtonDelta = cancelButtonDelta = ButtonDeltaState.NoChange;
int32_t L_3 = 0;
V_1 = L_3;
JoystickModel_set_cancelButtonDelta_m508A4F611F64F834D6EDB84B6539F80FAD1F98DE_inline(__this, L_3, NULL);
int32_t L_4 = V_1;
JoystickModel_set_submitButtonDelta_mBCE238395763AD138FBF5CAD201B57F4AAF0A838_inline(__this, L_4, NULL);
// implementationData.Reset();
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A L_5;
L_5 = JoystickModel_get_implementationData_mE5B08F7B50DD4815D1930845A677CB4620467160_inline(__this, NULL);
V_2 = L_5;
ImplementationData_Reset_m140D036D05B8FF021576CAABBCC5DC942AC9C079((&V_2), NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void JoystickModel_Reset_mAFDFEBC8EA109267A0A16C62033097C38AB9849E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
JoystickModel_Reset_mAFDFEBC8EA109267A0A16C62033097C38AB9849E(_thisAdjusted, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel::OnFrameFinished()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoystickModel_OnFrameFinished_mEF369FFD6CC791F3E9EE01510F1B07356D28A804 (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// submitButtonDelta = ButtonDeltaState.NoChange;
JoystickModel_set_submitButtonDelta_mBCE238395763AD138FBF5CAD201B57F4AAF0A838_inline(__this, 0, NULL);
// cancelButtonDelta = ButtonDeltaState.NoChange;
JoystickModel_set_cancelButtonDelta_m508A4F611F64F834D6EDB84B6539F80FAD1F98DE_inline(__this, 0, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void JoystickModel_OnFrameFinished_mEF369FFD6CC791F3E9EE01510F1B07356D28A804_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017*>(__this + _offset);
JoystickModel_OnFrameFinished_mEF369FFD6CC791F3E9EE01510F1B07356D28A804(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::get_consecutiveMoveCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ImplementationData_get_consecutiveMoveCount_mB600F1F6A45941D8114E410D6014964554D7ADEC (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, const RuntimeMethod* method)
{
{
// public int consecutiveMoveCount { get; set; }
int32_t L_0 = __this->___U3CconsecutiveMoveCountU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t ImplementationData_get_consecutiveMoveCount_mB600F1F6A45941D8114E410D6014964554D7ADEC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A*>(__this + _offset);
int32_t _returnValue;
_returnValue = ImplementationData_get_consecutiveMoveCount_mB600F1F6A45941D8114E410D6014964554D7ADEC_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::set_consecutiveMoveCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_consecutiveMoveCount_mE564012624169F567A720A33E73AA649FD164198 (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int consecutiveMoveCount { get; set; }
int32_t L_0 = ___value0;
__this->___U3CconsecutiveMoveCountU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_consecutiveMoveCount_mE564012624169F567A720A33E73AA649FD164198_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A*>(__this + _offset);
ImplementationData_set_consecutiveMoveCount_mE564012624169F567A720A33E73AA649FD164198_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.EventSystems.MoveDirection UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::get_lastMoveDirection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ImplementationData_get_lastMoveDirection_m5795BF4D421FE58497DF6E154592CCC66CA43018 (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, const RuntimeMethod* method)
{
{
// public MoveDirection lastMoveDirection { get; set; }
int32_t L_0 = __this->___U3ClastMoveDirectionU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t ImplementationData_get_lastMoveDirection_m5795BF4D421FE58497DF6E154592CCC66CA43018_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A*>(__this + _offset);
int32_t _returnValue;
_returnValue = ImplementationData_get_lastMoveDirection_m5795BF4D421FE58497DF6E154592CCC66CA43018_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::set_lastMoveDirection(UnityEngine.EventSystems.MoveDirection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_lastMoveDirection_mE7B0C290F1AB9C8C30172606E3B05C9A9EE0B59B (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public MoveDirection lastMoveDirection { get; set; }
int32_t L_0 = ___value0;
__this->___U3ClastMoveDirectionU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_lastMoveDirection_mE7B0C290F1AB9C8C30172606E3B05C9A9EE0B59B_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A*>(__this + _offset);
ImplementationData_set_lastMoveDirection_mE7B0C290F1AB9C8C30172606E3B05C9A9EE0B59B_inline(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::get_lastMoveTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ImplementationData_get_lastMoveTime_mFEE11CE8F3FFDD639707E8064EA99CCD64F5C99F (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, const RuntimeMethod* method)
{
{
// public float lastMoveTime { get; set; }
float L_0 = __this->___U3ClastMoveTimeU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_EXTERN_C float ImplementationData_get_lastMoveTime_mFEE11CE8F3FFDD639707E8064EA99CCD64F5C99F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A*>(__this + _offset);
float _returnValue;
_returnValue = ImplementationData_get_lastMoveTime_mFEE11CE8F3FFDD639707E8064EA99CCD64F5C99F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::set_lastMoveTime(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_lastMoveTime_m008BD50A07C1403D58D895BE67A571FF72C914D4 (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float lastMoveTime { get; set; }
float L_0 = ___value0;
__this->___U3ClastMoveTimeU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_lastMoveTime_m008BD50A07C1403D58D895BE67A571FF72C914D4_AdjustorThunk (RuntimeObject* __this, float ___value0, const RuntimeMethod* method)
{
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A*>(__this + _offset);
ImplementationData_set_lastMoveTime_m008BD50A07C1403D58D895BE67A571FF72C914D4_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel/ImplementationData::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_Reset_m140D036D05B8FF021576CAABBCC5DC942AC9C079 (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, const RuntimeMethod* method)
{
{
// consecutiveMoveCount = 0;
ImplementationData_set_consecutiveMoveCount_mE564012624169F567A720A33E73AA649FD164198_inline(__this, 0, NULL);
// lastMoveTime = 0.0f;
ImplementationData_set_lastMoveTime_m008BD50A07C1403D58D895BE67A571FF72C914D4_inline(__this, (0.0f), NULL);
// lastMoveDirection = MoveDirection.None;
ImplementationData_set_lastMoveDirection_mE7B0C290F1AB9C8C30172606E3B05C9A9EE0B59B_inline(__this, 4, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_Reset_m140D036D05B8FF021576CAABBCC5DC942AC9C079_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A*>(__this + _offset);
ImplementationData_Reset_m140D036D05B8FF021576CAABBCC5DC942AC9C079(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_pinvoke(const MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729& unmarshaled, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_ImplementationData_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'MouseButtonModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_2Exception, NULL);
}
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_pinvoke_back(const MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke& marshaled, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729& unmarshaled)
{
Exception_t* ___m_ImplementationData_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'MouseButtonModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_2Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_pinvoke_cleanup(MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_com(const MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729& unmarshaled, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com& marshaled)
{
Exception_t* ___m_ImplementationData_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'MouseButtonModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_2Exception, NULL);
}
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_com_back(const MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com& marshaled, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729& unmarshaled)
{
Exception_t* ___m_ImplementationData_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'MouseButtonModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_2Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel
IL2CPP_EXTERN_C void MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshal_com_cleanup(MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729_marshaled_com& marshaled)
{
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::get_isDown()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseButtonModel_get_isDown_m6D25D5D7BE9E1781DF3B00F4C0ADD0942F7A0A8C (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, const RuntimeMethod* method)
{
{
// get => m_IsDown;
bool L_0 = __this->___m_IsDown_1;
return L_0;
}
}
IL2CPP_EXTERN_C bool MouseButtonModel_get_isDown_m6D25D5D7BE9E1781DF3B00F4C0ADD0942F7A0A8C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729*>(__this + _offset);
bool _returnValue;
_returnValue = MouseButtonModel_get_isDown_m6D25D5D7BE9E1781DF3B00F4C0ADD0942F7A0A8C_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::set_isDown(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonModel_set_isDown_mF109D7F287B91F942F835520CB7B67EC131A9EC0 (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* G_B3_1 = NULL;
int32_t G_B2_0 = 0;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* G_B2_1 = NULL;
int32_t G_B4_0 = 0;
int32_t G_B4_1 = 0;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* G_B4_2 = NULL;
{
// if (m_IsDown != value)
bool L_0 = __this->___m_IsDown_1;
bool L_1 = ___value0;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0024;
}
}
{
// m_IsDown = value;
bool L_2 = ___value0;
__this->___m_IsDown_1 = L_2;
// lastFrameDelta |= value ? ButtonDeltaState.Pressed : ButtonDeltaState.Released;
int32_t L_3;
L_3 = MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E_inline(__this, NULL);
bool L_4 = ___value0;
G_B2_0 = L_3;
G_B2_1 = __this;
if (L_4)
{
G_B3_0 = L_3;
G_B3_1 = __this;
goto IL_001d;
}
}
{
G_B4_0 = 2;
G_B4_1 = G_B2_0;
G_B4_2 = G_B2_1;
goto IL_001e;
}
IL_001d:
{
G_B4_0 = 1;
G_B4_1 = G_B3_0;
G_B4_2 = G_B3_1;
}
IL_001e:
{
MouseButtonModel_set_lastFrameDelta_m760052CA3C1CA5CE93AA226D9F6D7D46023D5346_inline(G_B4_2, ((int32_t)((int32_t)G_B4_1|(int32_t)G_B4_0)), NULL);
}
IL_0024:
{
// }
return;
}
}
IL2CPP_EXTERN_C void MouseButtonModel_set_isDown_mF109D7F287B91F942F835520CB7B67EC131A9EC0_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729*>(__this + _offset);
MouseButtonModel_set_isDown_mF109D7F287B91F942F835520CB7B67EC131A9EC0(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::get_lastFrameDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState lastFrameDelta { get; private set; }
int32_t L_0 = __this->___U3ClastFrameDeltaU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729*>(__this + _offset);
int32_t _returnValue;
_returnValue = MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::set_lastFrameDelta(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonModel_set_lastFrameDelta_m760052CA3C1CA5CE93AA226D9F6D7D46023D5346 (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState lastFrameDelta { get; private set; }
int32_t L_0 = ___value0;
__this->___U3ClastFrameDeltaU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_EXTERN_C void MouseButtonModel_set_lastFrameDelta_m760052CA3C1CA5CE93AA226D9F6D7D46023D5346_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729*>(__this + _offset);
MouseButtonModel_set_lastFrameDelta_m760052CA3C1CA5CE93AA226D9F6D7D46023D5346_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonModel_Reset_m04966A9974669AFD8314FF5D8DA61B0AA13D8808 (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, const RuntimeMethod* method)
{
{
// lastFrameDelta = ButtonDeltaState.NoChange;
MouseButtonModel_set_lastFrameDelta_m760052CA3C1CA5CE93AA226D9F6D7D46023D5346_inline(__this, 0, NULL);
// m_IsDown = false;
__this->___m_IsDown_1 = (bool)0;
// m_ImplementationData.Reset();
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_0 = (&__this->___m_ImplementationData_2);
ImplementationData_Reset_mE8D9F86E602D177FCA6FEC7F0F8279D9EA08F60F(L_0, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void MouseButtonModel_Reset_m04966A9974669AFD8314FF5D8DA61B0AA13D8808_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729*>(__this + _offset);
MouseButtonModel_Reset_m04966A9974669AFD8314FF5D8DA61B0AA13D8808(_thisAdjusted, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::OnFrameFinished()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonModel_OnFrameFinished_m3AA8EAB2730BD77885C53B5127E65FBADC09DF89 (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, const RuntimeMethod* method)
{
{
// public void OnFrameFinished() => lastFrameDelta = ButtonDeltaState.NoChange;
MouseButtonModel_set_lastFrameDelta_m760052CA3C1CA5CE93AA226D9F6D7D46023D5346_inline(__this, 0, NULL);
return;
}
}
IL2CPP_EXTERN_C void MouseButtonModel_OnFrameFinished_m3AA8EAB2730BD77885C53B5127E65FBADC09DF89_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729*>(__this + _offset);
MouseButtonModel_OnFrameFinished_m3AA8EAB2730BD77885C53B5127E65FBADC09DF89(_thisAdjusted, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::CopyTo(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonModel_CopyTo_mE192240DC4F3852B78A43812C3273BE692F95B04 (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
{
// eventData.dragging = m_ImplementationData.isDragging;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___eventData0;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_1 = (&__this->___m_ImplementationData_2);
bool L_2;
L_2 = ImplementationData_get_isDragging_m4342CE900F2E1C5F378AAF38248795FDB757278A_inline(L_1, NULL);
NullCheck(L_0);
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_0, L_2, NULL);
// eventData.clickTime = m_ImplementationData.pressedTime;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = ___eventData0;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_4 = (&__this->___m_ImplementationData_2);
float L_5;
L_5 = ImplementationData_get_pressedTime_m6BB28908890AC2AA318371062BD0B1825AD011A0_inline(L_4, NULL);
NullCheck(L_3);
PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline(L_3, L_5, NULL);
// eventData.pressPosition = m_ImplementationData.pressedPosition;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = ___eventData0;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_7 = (&__this->___m_ImplementationData_2);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
L_8 = ImplementationData_get_pressedPosition_m68E4FD86C4F9EC5B81D3A15A9ED5776642075218_inline(L_7, NULL);
NullCheck(L_6);
PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline(L_6, L_8, NULL);
// eventData.pointerPressRaycast = m_ImplementationData.pressedRaycast;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_9 = ___eventData0;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_10 = (&__this->___m_ImplementationData_2);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_11;
L_11 = ImplementationData_get_pressedRaycast_mBDF58873A81E64D77396EEDD9BA9FDE899807683_inline(L_10, NULL);
NullCheck(L_9);
PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852_inline(L_9, L_11, NULL);
// eventData.pointerPress = m_ImplementationData.pressedGameObject;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = ___eventData0;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_13 = (&__this->___m_ImplementationData_2);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14;
L_14 = ImplementationData_get_pressedGameObject_mED5188E469B0B53324D43C84CDC4092BFE81802B_inline(L_13, NULL);
NullCheck(L_12);
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_12, L_14, NULL);
// eventData.rawPointerPress = m_ImplementationData.pressedGameObjectRaw;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_15 = ___eventData0;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_16 = (&__this->___m_ImplementationData_2);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_17;
L_17 = ImplementationData_get_pressedGameObjectRaw_mE114B4837644AF9AA92C0AB5952ACC15385A8E35_inline(L_16, NULL);
NullCheck(L_15);
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_15, L_17, NULL);
// eventData.pointerDrag = m_ImplementationData.draggedGameObject;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_18 = ___eventData0;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_19 = (&__this->___m_ImplementationData_2);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_20;
L_20 = ImplementationData_get_draggedGameObject_m5AABEB516101C86E6A8E7243C2E12B3BD2DDE43E_inline(L_19, NULL);
NullCheck(L_18);
PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline(L_18, L_20, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void MouseButtonModel_CopyTo_mE192240DC4F3852B78A43812C3273BE692F95B04_AdjustorThunk (RuntimeObject* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729*>(__this + _offset);
MouseButtonModel_CopyTo_mE192240DC4F3852B78A43812C3273BE692F95B04(_thisAdjusted, ___eventData0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel::CopyFrom(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonModel_CopyFrom_mDB836BEC9F0538CD4C75CC917EA71A474279B1E6 (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
{
// m_ImplementationData.isDragging = eventData.dragging;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_0 = (&__this->___m_ImplementationData_2);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___eventData0;
NullCheck(L_1);
bool L_2;
L_2 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_1, NULL);
ImplementationData_set_isDragging_m23603F83850AE86ED35D0A35EA577A51A5934912_inline(L_0, L_2, NULL);
// m_ImplementationData.pressedTime = eventData.clickTime;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_3 = (&__this->___m_ImplementationData_2);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___eventData0;
NullCheck(L_4);
float L_5;
L_5 = PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline(L_4, NULL);
ImplementationData_set_pressedTime_m08CE027B7019E15F97EC2997A310D2E26B2B688A_inline(L_3, L_5, NULL);
// m_ImplementationData.pressedPosition = eventData.pressPosition;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_6 = (&__this->___m_ImplementationData_2);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = ___eventData0;
NullCheck(L_7);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
L_8 = PointerEventData_get_pressPosition_m8A6788DA6BF81481E4EBCBA2ED1838F786EBAE63_inline(L_7, NULL);
ImplementationData_set_pressedPosition_m1402B47299E1C642D94FAF5AA83750DCBC61FA10_inline(L_6, L_8, NULL);
// m_ImplementationData.pressedRaycast = eventData.pointerPressRaycast;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_9 = (&__this->___m_ImplementationData_2);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = ___eventData0;
NullCheck(L_10);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_11;
L_11 = PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D_inline(L_10, NULL);
ImplementationData_set_pressedRaycast_m3FEA7BEBCA8A181BCBA546A396608AD05E719314_inline(L_9, L_11, NULL);
// m_ImplementationData.pressedGameObject = eventData.pointerPress;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_12 = (&__this->___m_ImplementationData_2);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = ___eventData0;
NullCheck(L_13);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14;
L_14 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_13, NULL);
ImplementationData_set_pressedGameObject_m43A6B848D7254A1A27999F73ACDEAFC53B69A6E5_inline(L_12, L_14, NULL);
// m_ImplementationData.pressedGameObjectRaw = eventData.rawPointerPress;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_15 = (&__this->___m_ImplementationData_2);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_16 = ___eventData0;
NullCheck(L_16);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_17;
L_17 = PointerEventData_get_rawPointerPress_m8B7A6235A116E26EDDBBDB24473BE0F9634C7B71_inline(L_16, NULL);
ImplementationData_set_pressedGameObjectRaw_mBF3547F3629CF684A4151F0EB8EDC49AA6C85D6E_inline(L_15, L_17, NULL);
// m_ImplementationData.draggedGameObject = eventData.pointerDrag;
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* L_18 = (&__this->___m_ImplementationData_2);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = ___eventData0;
NullCheck(L_19);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_20;
L_20 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_19, NULL);
ImplementationData_set_draggedGameObject_m9992F3D5D397185C774C37867A18FED90348B6F6_inline(L_18, L_20, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void MouseButtonModel_CopyFrom_mDB836BEC9F0538CD4C75CC917EA71A474279B1E6_AdjustorThunk (RuntimeObject* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729*>(__this + _offset);
MouseButtonModel_CopyFrom_mDB836BEC9F0538CD4C75CC917EA71A474279B1E6(_thisAdjusted, ___eventData0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_pinvoke(const ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D& unmarshaled, ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CpressedRaycastU3Ek__BackingField_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<pressedRaycast>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CpressedRaycastU3Ek__BackingField_3Exception, NULL);
}
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_pinvoke_back(const ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_pinvoke& marshaled, ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D& unmarshaled)
{
Exception_t* ___U3CpressedRaycastU3Ek__BackingField_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<pressedRaycast>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CpressedRaycastU3Ek__BackingField_3Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_pinvoke_cleanup(ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_com(const ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D& unmarshaled, ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_com& marshaled)
{
Exception_t* ___U3CpressedRaycastU3Ek__BackingField_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<pressedRaycast>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CpressedRaycastU3Ek__BackingField_3Exception, NULL);
}
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_com_back(const ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_com& marshaled, ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D& unmarshaled)
{
Exception_t* ___U3CpressedRaycastU3Ek__BackingField_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<pressedRaycast>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CpressedRaycastU3Ek__BackingField_3Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshal_com_cleanup(ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D_marshaled_com& marshaled)
{
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_isDragging()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImplementationData_get_isDragging_m4342CE900F2E1C5F378AAF38248795FDB757278A (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = __this->___U3CisDraggingU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_EXTERN_C bool ImplementationData_get_isDragging_m4342CE900F2E1C5F378AAF38248795FDB757278A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
bool _returnValue;
_returnValue = ImplementationData_get_isDragging_m4342CE900F2E1C5F378AAF38248795FDB757278A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_isDragging(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_isDragging_m23603F83850AE86ED35D0A35EA577A51A5934912 (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = ___value0;
__this->___U3CisDraggingU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_isDragging_m23603F83850AE86ED35D0A35EA577A51A5934912_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
ImplementationData_set_isDragging_m23603F83850AE86ED35D0A35EA577A51A5934912_inline(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_pressedTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ImplementationData_get_pressedTime_m6BB28908890AC2AA318371062BD0B1825AD011A0 (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = __this->___U3CpressedTimeU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_EXTERN_C float ImplementationData_get_pressedTime_m6BB28908890AC2AA318371062BD0B1825AD011A0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
float _returnValue;
_returnValue = ImplementationData_get_pressedTime_m6BB28908890AC2AA318371062BD0B1825AD011A0_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_pressedTime(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedTime_m08CE027B7019E15F97EC2997A310D2E26B2B688A (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = ___value0;
__this->___U3CpressedTimeU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedTime_m08CE027B7019E15F97EC2997A310D2E26B2B688A_AdjustorThunk (RuntimeObject* __this, float ___value0, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
ImplementationData_set_pressedTime_m08CE027B7019E15F97EC2997A310D2E26B2B688A_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_pressedPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_m68E4FD86C4F9EC5B81D3A15A9ED5776642075218 (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpressedPositionU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_m68E4FD86C4F9EC5B81D3A15A9ED5776642075218_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = ImplementationData_get_pressedPosition_m68E4FD86C4F9EC5B81D3A15A9ED5776642075218_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_pressedPosition(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedPosition_m1402B47299E1C642D94FAF5AA83750DCBC61FA10 (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CpressedPositionU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedPosition_m1402B47299E1C642D94FAF5AA83750DCBC61FA10_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
ImplementationData_set_pressedPosition_m1402B47299E1C642D94FAF5AA83750DCBC61FA10_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_pressedRaycast()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_mBDF58873A81E64D77396EEDD9BA9FDE899807683 (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpressedRaycastU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_EXTERN_C RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_mBDF58873A81E64D77396EEDD9BA9FDE899807683_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 _returnValue;
_returnValue = ImplementationData_get_pressedRaycast_mBDF58873A81E64D77396EEDD9BA9FDE899807683_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_pressedRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedRaycast_m3FEA7BEBCA8A181BCBA546A396608AD05E719314 (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___value0;
__this->___U3CpressedRaycastU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_3))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_3))->___module_1), (void*)NULL);
#endif
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedRaycast_m3FEA7BEBCA8A181BCBA546A396608AD05E719314_AdjustorThunk (RuntimeObject* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
ImplementationData_set_pressedRaycast_m3FEA7BEBCA8A181BCBA546A396608AD05E719314_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_pressedGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_mED5188E469B0B53324D43C84CDC4092BFE81802B (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_mED5188E469B0B53324D43C84CDC4092BFE81802B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = ImplementationData_get_pressedGameObject_mED5188E469B0B53324D43C84CDC4092BFE81802B_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_pressedGameObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObject_m43A6B848D7254A1A27999F73ACDEAFC53B69A6E5 (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectU3Ek__BackingField_4), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedGameObject_m43A6B848D7254A1A27999F73ACDEAFC53B69A6E5_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
ImplementationData_set_pressedGameObject_m43A6B848D7254A1A27999F73ACDEAFC53B69A6E5_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_pressedGameObjectRaw()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_mE114B4837644AF9AA92C0AB5952ACC15385A8E35 (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectRawU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_mE114B4837644AF9AA92C0AB5952ACC15385A8E35_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = ImplementationData_get_pressedGameObjectRaw_mE114B4837644AF9AA92C0AB5952ACC15385A8E35_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_pressedGameObjectRaw(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObjectRaw_mBF3547F3629CF684A4151F0EB8EDC49AA6C85D6E (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectRawU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectRawU3Ek__BackingField_5), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedGameObjectRaw_mBF3547F3629CF684A4151F0EB8EDC49AA6C85D6E_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
ImplementationData_set_pressedGameObjectRaw_mBF3547F3629CF684A4151F0EB8EDC49AA6C85D6E_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::get_draggedGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_m5AABEB516101C86E6A8E7243C2E12B3BD2DDE43E (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CdraggedGameObjectU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_m5AABEB516101C86E6A8E7243C2E12B3BD2DDE43E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = ImplementationData_get_draggedGameObject_m5AABEB516101C86E6A8E7243C2E12B3BD2DDE43E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::set_draggedGameObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_draggedGameObject_m9992F3D5D397185C774C37867A18FED90348B6F6 (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CdraggedGameObjectU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdraggedGameObjectU3Ek__BackingField_6), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_draggedGameObject_m9992F3D5D397185C774C37867A18FED90348B6F6_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
ImplementationData_set_draggedGameObject_m9992F3D5D397185C774C37867A18FED90348B6F6_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel/ImplementationData::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_Reset_mE8D9F86E602D177FCA6FEC7F0F8279D9EA08F60F (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_0;
memset((&V_0), 0, sizeof(V_0));
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_1 = NULL;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_2 = NULL;
{
// isDragging = false;
ImplementationData_set_isDragging_m23603F83850AE86ED35D0A35EA577A51A5934912_inline(__this, (bool)0, NULL);
// pressedTime = 0f;
ImplementationData_set_pressedTime_m08CE027B7019E15F97EC2997A310D2E26B2B688A_inline(__this, (0.0f), NULL);
// pressedPosition = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
L_0 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
ImplementationData_set_pressedPosition_m1402B47299E1C642D94FAF5AA83750DCBC61FA10_inline(__this, L_0, NULL);
// pressedRaycast = new RaycastResult();
il2cpp_codegen_initobj((&V_0), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_1 = V_0;
ImplementationData_set_pressedRaycast_m3FEA7BEBCA8A181BCBA546A396608AD05E719314_inline(__this, L_1, NULL);
// pressedGameObject = pressedGameObjectRaw = draggedGameObject = null;
V_2 = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL;
ImplementationData_set_draggedGameObject_m9992F3D5D397185C774C37867A18FED90348B6F6_inline(__this, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = V_2;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = L_2;
V_1 = L_3;
ImplementationData_set_pressedGameObjectRaw_mBF3547F3629CF684A4151F0EB8EDC49AA6C85D6E_inline(__this, L_3, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = V_1;
ImplementationData_set_pressedGameObject_m43A6B848D7254A1A27999F73ACDEAFC53B69A6E5_inline(__this, L_4, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_Reset_mE8D9F86E602D177FCA6FEC7F0F8279D9EA08F60F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D*>(__this + _offset);
ImplementationData_Reset_mE8D9F86E602D177FCA6FEC7F0F8279D9EA08F60F(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseModel
IL2CPP_EXTERN_C void MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshal_pinvoke(const MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37& unmarshaled, MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_LeftButton_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_LeftButton' of type 'MouseModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_LeftButton_5Exception, NULL);
}
IL2CPP_EXTERN_C void MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshal_pinvoke_back(const MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshaled_pinvoke& marshaled, MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37& unmarshaled)
{
Exception_t* ___m_LeftButton_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_LeftButton' of type 'MouseModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_LeftButton_5Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseModel
IL2CPP_EXTERN_C void MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshal_pinvoke_cleanup(MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseModel
IL2CPP_EXTERN_C void MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshal_com(const MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37& unmarshaled, MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshaled_com& marshaled)
{
Exception_t* ___m_LeftButton_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_LeftButton' of type 'MouseModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_LeftButton_5Exception, NULL);
}
IL2CPP_EXTERN_C void MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshal_com_back(const MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshaled_com& marshaled, MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37& unmarshaled)
{
Exception_t* ___m_LeftButton_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_LeftButton' of type 'MouseModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_LeftButton_5Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseModel
IL2CPP_EXTERN_C void MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshal_com_cleanup(MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37_marshaled_com& marshaled)
{
}
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_pointerId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MouseModel_get_pointerId_m4093B901532AE29AF876BDE011E97CDB75B19A48 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// public int pointerId { get; }
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t MouseModel_get_pointerId_m4093B901532AE29AF876BDE011E97CDB75B19A48_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
int32_t _returnValue;
_returnValue = MouseModel_get_pointerId_m4093B901532AE29AF876BDE011E97CDB75B19A48_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_changedThisFrame()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = __this->___U3CchangedThisFrameU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_EXTERN_C bool MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
bool _returnValue;
_returnValue = MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_changedThisFrame(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = ___value0;
__this->___U3CchangedThisFrameU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_EXTERN_C void MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_position_m7E6304F677CAB4B807B518B947B95AA63A2BE95A (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// get => m_Position;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_Position_2;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_position_m7E6304F677CAB4B807B518B947B95AA63A2BE95A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = MouseModel_get_position_m7E6304F677CAB4B807B518B947B95AA63A2BE95A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_position(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_position_mF52DACDB97F269AEC85646486093D6A135C5E509 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// if (m_Position != value)
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_Position_2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___value0;
bool L_2;
L_2 = Vector2_op_Inequality_mCF3935E28AC7B30B279F07F9321CC56718E1311A_inline(L_0, L_1, NULL);
if (!L_2)
{
goto IL_002e;
}
}
{
// deltaPosition = value - m_Position;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___value0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = __this->___m_Position_2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
L_5 = Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8_inline(L_3, L_4, NULL);
MouseModel_set_deltaPosition_mF4C0644A65E3E98A9A397643D0E006B9187654DA_inline(__this, L_5, NULL);
// m_Position = value;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___value0;
__this->___m_Position_2 = L_6;
// changedThisFrame = true;
MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline(__this, (bool)1, NULL);
}
IL_002e:
{
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel_set_position_mF52DACDB97F269AEC85646486093D6A135C5E509_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_set_position_mF52DACDB97F269AEC85646486093D6A135C5E509(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_deltaPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_deltaPosition_m343DD465AA88D7C5DE2A2E8A48CC3645434F70FF (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// public Vector2 deltaPosition { get; private set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CdeltaPositionU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_deltaPosition_m343DD465AA88D7C5DE2A2E8A48CC3645434F70FF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = MouseModel_get_deltaPosition_m343DD465AA88D7C5DE2A2E8A48CC3645434F70FF_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_deltaPosition(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_deltaPosition_mF4C0644A65E3E98A9A397643D0E006B9187654DA (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 deltaPosition { get; private set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CdeltaPositionU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_EXTERN_C void MouseModel_set_deltaPosition_mF4C0644A65E3E98A9A397643D0E006B9187654DA_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_set_deltaPosition_mF4C0644A65E3E98A9A397643D0E006B9187654DA_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_scrollDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_scrollDelta_mE5D60044DDB3DC20CB2660C371DCF359DE7B19E0 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// get => m_ScrollDelta;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_ScrollDelta_4;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_scrollDelta_mE5D60044DDB3DC20CB2660C371DCF359DE7B19E0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = MouseModel_get_scrollDelta_mE5D60044DDB3DC20CB2660C371DCF359DE7B19E0_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_scrollDelta(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_scrollDelta_m107437C513BD8F66EFDE6160EF224FEC6DA1F7A9 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// if (m_ScrollDelta != value)
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_ScrollDelta_4;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___value0;
bool L_2;
L_2 = Vector2_op_Inequality_mCF3935E28AC7B30B279F07F9321CC56718E1311A_inline(L_0, L_1, NULL);
if (!L_2)
{
goto IL_001c;
}
}
{
// m_ScrollDelta = value;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___value0;
__this->___m_ScrollDelta_4 = L_3;
// changedThisFrame = true;
MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline(__this, (bool)1, NULL);
}
IL_001c:
{
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel_set_scrollDelta_m107437C513BD8F66EFDE6160EF224FEC6DA1F7A9_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_set_scrollDelta_m107437C513BD8F66EFDE6160EF224FEC6DA1F7A9(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_leftButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_leftButton_m4E4FEAA3354E2243FC862B4E1212D8C372B399A0 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// get => m_LeftButton;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_0 = __this->___m_LeftButton_5;
return L_0;
}
}
IL2CPP_EXTERN_C MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_leftButton_m4E4FEAA3354E2243FC862B4E1212D8C372B399A0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 _returnValue;
_returnValue = MouseModel_get_leftButton_m4E4FEAA3354E2243FC862B4E1212D8C372B399A0_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_leftButton(UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_leftButton_mDFA9E10E68EC1E60BDAA76BEC99F128F69B0272A (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___value0, const RuntimeMethod* method)
{
{
// changedThisFrame |= (value.lastFrameDelta != ButtonDeltaState.NoChange);
bool L_0;
L_0 = MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500_inline(__this, NULL);
int32_t L_1;
L_1 = MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E_inline((&___value0), NULL);
MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline(__this, (bool)((int32_t)((int32_t)L_0|(int32_t)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0))), NULL);
// m_LeftButton = value;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_2 = ___value0;
__this->___m_LeftButton_5 = L_2;
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_LeftButton_5))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_LeftButton_5))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_LeftButton_5))->___m_ImplementationData_2))->___U3CpressedGameObjectU3Ek__BackingField_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_LeftButton_5))->___m_ImplementationData_2))->___U3CpressedGameObjectRawU3Ek__BackingField_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_LeftButton_5))->___m_ImplementationData_2))->___U3CdraggedGameObjectU3Ek__BackingField_6), (void*)NULL);
#endif
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel_set_leftButton_mDFA9E10E68EC1E60BDAA76BEC99F128F69B0272A_AdjustorThunk (RuntimeObject* __this, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___value0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_set_leftButton_mDFA9E10E68EC1E60BDAA76BEC99F128F69B0272A(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_leftButtonPressed(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_leftButtonPressed_mF1308166818C7AE8C3083EAE08FF32B24C8DDBF1 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, bool ___value0, const RuntimeMethod* method)
{
{
// changedThisFrame |= m_LeftButton.isDown != value;
bool L_0;
L_0 = MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500_inline(__this, NULL);
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_1 = (&__this->___m_LeftButton_5);
bool L_2;
L_2 = MouseButtonModel_get_isDown_m6D25D5D7BE9E1781DF3B00F4C0ADD0942F7A0A8C_inline(L_1, NULL);
bool L_3 = ___value0;
MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline(__this, (bool)((int32_t)((int32_t)L_0|(int32_t)((((int32_t)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0))), NULL);
// m_LeftButton.isDown = value;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_4 = (&__this->___m_LeftButton_5);
bool L_5 = ___value0;
MouseButtonModel_set_isDown_mF109D7F287B91F942F835520CB7B67EC131A9EC0(L_4, L_5, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel_set_leftButtonPressed_mF1308166818C7AE8C3083EAE08FF32B24C8DDBF1_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_set_leftButtonPressed_mF1308166818C7AE8C3083EAE08FF32B24C8DDBF1(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_rightButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_rightButton_m847C28E359189D4A2D4E39F0F5D3CC9943D5E624 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// get => m_RightButton;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_0 = __this->___m_RightButton_6;
return L_0;
}
}
IL2CPP_EXTERN_C MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_rightButton_m847C28E359189D4A2D4E39F0F5D3CC9943D5E624_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 _returnValue;
_returnValue = MouseModel_get_rightButton_m847C28E359189D4A2D4E39F0F5D3CC9943D5E624_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_rightButton(UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_rightButton_m41EB3062E8E1FD0F92D648F5591DBCE675E81FDF (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___value0, const RuntimeMethod* method)
{
{
// changedThisFrame |= (value.lastFrameDelta != ButtonDeltaState.NoChange);
bool L_0;
L_0 = MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500_inline(__this, NULL);
int32_t L_1;
L_1 = MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E_inline((&___value0), NULL);
MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline(__this, (bool)((int32_t)((int32_t)L_0|(int32_t)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0))), NULL);
// m_RightButton = value;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_2 = ___value0;
__this->___m_RightButton_6 = L_2;
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_RightButton_6))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_RightButton_6))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_RightButton_6))->___m_ImplementationData_2))->___U3CpressedGameObjectU3Ek__BackingField_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_RightButton_6))->___m_ImplementationData_2))->___U3CpressedGameObjectRawU3Ek__BackingField_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_RightButton_6))->___m_ImplementationData_2))->___U3CdraggedGameObjectU3Ek__BackingField_6), (void*)NULL);
#endif
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel_set_rightButton_m41EB3062E8E1FD0F92D648F5591DBCE675E81FDF_AdjustorThunk (RuntimeObject* __this, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___value0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_set_rightButton_m41EB3062E8E1FD0F92D648F5591DBCE675E81FDF(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_rightButtonPressed(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_rightButtonPressed_m87EF490742E8A801BBAB04A32A4B868C7E6031AE (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, bool ___value0, const RuntimeMethod* method)
{
{
// changedThisFrame |= m_RightButton.isDown != value;
bool L_0;
L_0 = MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500_inline(__this, NULL);
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_1 = (&__this->___m_RightButton_6);
bool L_2;
L_2 = MouseButtonModel_get_isDown_m6D25D5D7BE9E1781DF3B00F4C0ADD0942F7A0A8C_inline(L_1, NULL);
bool L_3 = ___value0;
MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline(__this, (bool)((int32_t)((int32_t)L_0|(int32_t)((((int32_t)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0))), NULL);
// m_RightButton.isDown = value;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_4 = (&__this->___m_RightButton_6);
bool L_5 = ___value0;
MouseButtonModel_set_isDown_mF109D7F287B91F942F835520CB7B67EC131A9EC0(L_4, L_5, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel_set_rightButtonPressed_m87EF490742E8A801BBAB04A32A4B868C7E6031AE_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_set_rightButtonPressed_m87EF490742E8A801BBAB04A32A4B868C7E6031AE(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::get_middleButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_middleButton_m8997BE389494AA17D6BF696BDF1E4889A68EA3C1 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// get => m_MiddleButton;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_0 = __this->___m_MiddleButton_7;
return L_0;
}
}
IL2CPP_EXTERN_C MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_middleButton_m8997BE389494AA17D6BF696BDF1E4889A68EA3C1_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 _returnValue;
_returnValue = MouseModel_get_middleButton_m8997BE389494AA17D6BF696BDF1E4889A68EA3C1_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_middleButton(UnityEngine.XR.Interaction.Toolkit.UI.MouseButtonModel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_middleButton_m528B124FF921B92CD25CD2EE623D97B8DE01C318 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___value0, const RuntimeMethod* method)
{
{
// changedThisFrame |= (value.lastFrameDelta != ButtonDeltaState.NoChange);
bool L_0;
L_0 = MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500_inline(__this, NULL);
int32_t L_1;
L_1 = MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E_inline((&___value0), NULL);
MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline(__this, (bool)((int32_t)((int32_t)L_0|(int32_t)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0))), NULL);
// m_MiddleButton = value;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_2 = ___value0;
__this->___m_MiddleButton_7 = L_2;
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_MiddleButton_7))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_MiddleButton_7))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_MiddleButton_7))->___m_ImplementationData_2))->___U3CpressedGameObjectU3Ek__BackingField_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_MiddleButton_7))->___m_ImplementationData_2))->___U3CpressedGameObjectRawU3Ek__BackingField_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_MiddleButton_7))->___m_ImplementationData_2))->___U3CdraggedGameObjectU3Ek__BackingField_6), (void*)NULL);
#endif
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel_set_middleButton_m528B124FF921B92CD25CD2EE623D97B8DE01C318_AdjustorThunk (RuntimeObject* __this, MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 ___value0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_set_middleButton_m528B124FF921B92CD25CD2EE623D97B8DE01C318(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::set_middleButtonPressed(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_set_middleButtonPressed_mF1E5EA114314006CDD15F484FCE7450F3D3B0A39 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, bool ___value0, const RuntimeMethod* method)
{
{
// changedThisFrame |= m_MiddleButton.isDown != value;
bool L_0;
L_0 = MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500_inline(__this, NULL);
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_1 = (&__this->___m_MiddleButton_7);
bool L_2;
L_2 = MouseButtonModel_get_isDown_m6D25D5D7BE9E1781DF3B00F4C0ADD0942F7A0A8C_inline(L_1, NULL);
bool L_3 = ___value0;
MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline(__this, (bool)((int32_t)((int32_t)L_0|(int32_t)((((int32_t)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0))), NULL);
// m_MiddleButton.isDown = value;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_4 = (&__this->___m_MiddleButton_7);
bool L_5 = ___value0;
MouseButtonModel_set_isDown_mF109D7F287B91F942F835520CB7B67EC131A9EC0(L_4, L_5, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel_set_middleButtonPressed_mF1E5EA114314006CDD15F484FCE7450F3D3B0A39_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_set_middleButtonPressed_mF1E5EA114314006CDD15F484FCE7450F3D3B0A39(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel__ctor_m63009692E802DED0663F43C9C8C5190FF33C8573 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, int32_t ___pointerId0, const RuntimeMethod* method)
{
{
// this.pointerId = pointerId;
int32_t L_0 = ___pointerId0;
__this->___U3CpointerIdU3Ek__BackingField_0 = L_0;
// changedThisFrame = false;
MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline(__this, (bool)0, NULL);
// m_Position = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
L_1 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
__this->___m_Position_2 = L_1;
// deltaPosition = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
L_2 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
MouseModel_set_deltaPosition_mF4C0644A65E3E98A9A397643D0E006B9187654DA_inline(__this, L_2, NULL);
// m_ScrollDelta = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
L_3 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
__this->___m_ScrollDelta_4 = L_3;
// m_LeftButton = new MouseButtonModel();
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_4 = (&__this->___m_LeftButton_5);
il2cpp_codegen_initobj(L_4, sizeof(MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729));
// m_RightButton = new MouseButtonModel();
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_5 = (&__this->___m_RightButton_6);
il2cpp_codegen_initobj(L_5, sizeof(MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729));
// m_MiddleButton = new MouseButtonModel();
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_6 = (&__this->___m_MiddleButton_7);
il2cpp_codegen_initobj(L_6, sizeof(MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729));
// m_LeftButton.Reset();
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_7 = (&__this->___m_LeftButton_5);
MouseButtonModel_Reset_m04966A9974669AFD8314FF5D8DA61B0AA13D8808(L_7, NULL);
// m_RightButton.Reset();
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_8 = (&__this->___m_RightButton_6);
MouseButtonModel_Reset_m04966A9974669AFD8314FF5D8DA61B0AA13D8808(L_8, NULL);
// m_MiddleButton.Reset();
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_9 = (&__this->___m_MiddleButton_7);
MouseButtonModel_Reset_m04966A9974669AFD8314FF5D8DA61B0AA13D8808(L_9, NULL);
// m_InternalData = new InternalData();
InternalData_t7100B940380492C19774536244433DFD434CEB1F* L_10 = (&__this->___m_InternalData_8);
il2cpp_codegen_initobj(L_10, sizeof(InternalData_t7100B940380492C19774536244433DFD434CEB1F));
// m_InternalData.Reset();
InternalData_t7100B940380492C19774536244433DFD434CEB1F* L_11 = (&__this->___m_InternalData_8);
InternalData_Reset_m285105197FFE5EC122647161C449132D50E4472F(L_11, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel__ctor_m63009692E802DED0663F43C9C8C5190FF33C8573_AdjustorThunk (RuntimeObject* __this, int32_t ___pointerId0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel__ctor_m63009692E802DED0663F43C9C8C5190FF33C8573(_thisAdjusted, ___pointerId0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::OnFrameFinished()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_OnFrameFinished_m3C72244B03A8536965118B81CB098E355CCAE12D (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// changedThisFrame = false;
MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline(__this, (bool)0, NULL);
// deltaPosition = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
L_0 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
MouseModel_set_deltaPosition_mF4C0644A65E3E98A9A397643D0E006B9187654DA_inline(__this, L_0, NULL);
// m_ScrollDelta = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
L_1 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
__this->___m_ScrollDelta_4 = L_1;
// m_LeftButton.OnFrameFinished();
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_2 = (&__this->___m_LeftButton_5);
MouseButtonModel_OnFrameFinished_m3AA8EAB2730BD77885C53B5127E65FBADC09DF89(L_2, NULL);
// m_RightButton.OnFrameFinished();
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_3 = (&__this->___m_RightButton_6);
MouseButtonModel_OnFrameFinished_m3AA8EAB2730BD77885C53B5127E65FBADC09DF89(L_3, NULL);
// m_MiddleButton.OnFrameFinished();
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* L_4 = (&__this->___m_MiddleButton_7);
MouseButtonModel_OnFrameFinished_m3AA8EAB2730BD77885C53B5127E65FBADC09DF89(L_4, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel_OnFrameFinished_m3C72244B03A8536965118B81CB098E355CCAE12D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_OnFrameFinished_m3C72244B03A8536965118B81CB098E355CCAE12D(_thisAdjusted, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::CopyTo(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_CopyTo_m783AAB4CDC5D0569D63B7DCDFFDD13E6219AA8BA (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// eventData.pointerId = pointerId;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___eventData0;
int32_t L_1;
L_1 = MouseModel_get_pointerId_m4093B901532AE29AF876BDE011E97CDB75B19A48_inline(__this, NULL);
NullCheck(L_0);
PointerEventData_set_pointerId_m5B5FF54AB1DE7BD4454022A7C0535C618049BD9B_inline(L_0, L_1, NULL);
// eventData.position = position;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = ___eventData0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
L_3 = MouseModel_get_position_m7E6304F677CAB4B807B518B947B95AA63A2BE95A_inline(__this, NULL);
NullCheck(L_2);
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_2, L_3, NULL);
// eventData.delta = deltaPosition;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___eventData0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
L_5 = MouseModel_get_deltaPosition_m343DD465AA88D7C5DE2A2E8A48CC3645434F70FF_inline(__this, NULL);
NullCheck(L_4);
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_4, L_5, NULL);
// eventData.scrollDelta = scrollDelta;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = ___eventData0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
L_7 = MouseModel_get_scrollDelta_mE5D60044DDB3DC20CB2660C371DCF359DE7B19E0_inline(__this, NULL);
NullCheck(L_6);
PointerEventData_set_scrollDelta_m58007CAE9A9B333B82C36B9E5431FBD926CB556C_inline(L_6, L_7, NULL);
// eventData.pointerEnter = m_InternalData.pointerTarget;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = ___eventData0;
InternalData_t7100B940380492C19774536244433DFD434CEB1F* L_9 = (&__this->___m_InternalData_8);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_10;
L_10 = InternalData_get_pointerTarget_m4C93CAD2F36BD7E897463C1C3DE6BD07B741BF06_inline(L_9, NULL);
NullCheck(L_8);
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_8, L_10, NULL);
// eventData.hovered.Clear();
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_11 = ___eventData0;
NullCheck(L_11);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_12 = L_11->___hovered_10;
NullCheck(L_12);
List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline(L_12, List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
// eventData.hovered.AddRange(m_InternalData.hoverTargets);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = ___eventData0;
NullCheck(L_13);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_14 = L_13->___hovered_10;
InternalData_t7100B940380492C19774536244433DFD434CEB1F* L_15 = (&__this->___m_InternalData_8);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_16;
L_16 = InternalData_get_hoverTargets_m7B27E64A82CB4C34D900E18D81B2BDCE8336EA4C_inline(L_15, NULL);
NullCheck(L_14);
List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C(L_14, L_16, List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
// eventData.useDragThreshold = true;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = ___eventData0;
NullCheck(L_17);
PointerEventData_set_useDragThreshold_m63FE2034E4B240F1A0A902B1EB893B3DBA2D848B_inline(L_17, (bool)1, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel_CopyTo_m783AAB4CDC5D0569D63B7DCDFFDD13E6219AA8BA_AdjustorThunk (RuntimeObject* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_CopyTo_m783AAB4CDC5D0569D63B7DCDFFDD13E6219AA8BA(_thisAdjusted, ___eventData0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel::CopyFrom(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseModel_CopyFrom_m7B8817A31CE42B0A96A5FAD2B93DEF906E4E1055 (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* V_0 = NULL;
{
// var hoverTargets = m_InternalData.hoverTargets;
InternalData_t7100B940380492C19774536244433DFD434CEB1F* L_0 = (&__this->___m_InternalData_8);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_1;
L_1 = InternalData_get_hoverTargets_m7B27E64A82CB4C34D900E18D81B2BDCE8336EA4C_inline(L_0, NULL);
V_0 = L_1;
// m_InternalData.hoverTargets.Clear();
InternalData_t7100B940380492C19774536244433DFD434CEB1F* L_2 = (&__this->___m_InternalData_8);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_3;
L_3 = InternalData_get_hoverTargets_m7B27E64A82CB4C34D900E18D81B2BDCE8336EA4C_inline(L_2, NULL);
NullCheck(L_3);
List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline(L_3, List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
// m_InternalData.hoverTargets.AddRange(eventData.hovered);
InternalData_t7100B940380492C19774536244433DFD434CEB1F* L_4 = (&__this->___m_InternalData_8);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_5;
L_5 = InternalData_get_hoverTargets_m7B27E64A82CB4C34D900E18D81B2BDCE8336EA4C_inline(L_4, NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = ___eventData0;
NullCheck(L_6);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_7 = L_6->___hovered_10;
NullCheck(L_5);
List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C(L_5, L_7, List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
// m_InternalData.hoverTargets = hoverTargets;
InternalData_t7100B940380492C19774536244433DFD434CEB1F* L_8 = (&__this->___m_InternalData_8);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_9 = V_0;
InternalData_set_hoverTargets_m0EBDF30E6181C88E401E66EF7241F8C206B88360_inline(L_8, L_9, NULL);
// m_InternalData.pointerTarget = eventData.pointerEnter;
InternalData_t7100B940380492C19774536244433DFD434CEB1F* L_10 = (&__this->___m_InternalData_8);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_11 = ___eventData0;
NullCheck(L_11);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_12;
L_12 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_11, NULL);
InternalData_set_pointerTarget_mC6341AA6C2995C1E180BA15AE61884C000F6D89C_inline(L_10, L_12, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void MouseModel_CopyFrom_m7B8817A31CE42B0A96A5FAD2B93DEF906E4E1055_AdjustorThunk (RuntimeObject* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37*>(__this + _offset);
MouseModel_CopyFrom_m7B8817A31CE42B0A96A5FAD2B93DEF906E4E1055(_thisAdjusted, ___eventData0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_pinvoke(const InternalData_t7100B940380492C19774536244433DFD434CEB1F& unmarshaled, InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'InternalData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_pinvoke_back(const InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_pinvoke& marshaled, InternalData_t7100B940380492C19774536244433DFD434CEB1F& unmarshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'InternalData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_pinvoke_cleanup(InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_com(const InternalData_t7100B940380492C19774536244433DFD434CEB1F& unmarshaled, InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_com& marshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'InternalData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_com_back(const InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_com& marshaled, InternalData_t7100B940380492C19774536244433DFD434CEB1F& unmarshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'InternalData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData
IL2CPP_EXTERN_C void InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshal_com_cleanup(InternalData_t7100B940380492C19774536244433DFD434CEB1F_marshaled_com& marshaled)
{
}
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::get_hoverTargets()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* InternalData_get_hoverTargets_m7B27E64A82CB4C34D900E18D81B2BDCE8336EA4C (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = __this->___U3ChoverTargetsU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_EXTERN_C List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* InternalData_get_hoverTargets_m7B27E64A82CB4C34D900E18D81B2BDCE8336EA4C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InternalData_t7100B940380492C19774536244433DFD434CEB1F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InternalData_t7100B940380492C19774536244433DFD434CEB1F*>(__this + _offset);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* _returnValue;
_returnValue = InternalData_get_hoverTargets_m7B27E64A82CB4C34D900E18D81B2BDCE8336EA4C_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::set_hoverTargets(System.Collections.Generic.List`1<UnityEngine.GameObject>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalData_set_hoverTargets_m0EBDF30E6181C88E401E66EF7241F8C206B88360 (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = ___value0;
__this->___U3ChoverTargetsU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ChoverTargetsU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void InternalData_set_hoverTargets_m0EBDF30E6181C88E401E66EF7241F8C206B88360_AdjustorThunk (RuntimeObject* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method)
{
InternalData_t7100B940380492C19774536244433DFD434CEB1F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InternalData_t7100B940380492C19774536244433DFD434CEB1F*>(__this + _offset);
InternalData_set_hoverTargets_m0EBDF30E6181C88E401E66EF7241F8C206B88360_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::get_pointerTarget()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* InternalData_get_pointerTarget_m4C93CAD2F36BD7E897463C1C3DE6BD07B741BF06 (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerTargetU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* InternalData_get_pointerTarget_m4C93CAD2F36BD7E897463C1C3DE6BD07B741BF06_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InternalData_t7100B940380492C19774536244433DFD434CEB1F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InternalData_t7100B940380492C19774536244433DFD434CEB1F*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = InternalData_get_pointerTarget_m4C93CAD2F36BD7E897463C1C3DE6BD07B741BF06_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::set_pointerTarget(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalData_set_pointerTarget_mC6341AA6C2995C1E180BA15AE61884C000F6D89C (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpointerTargetU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerTargetU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void InternalData_set_pointerTarget_mC6341AA6C2995C1E180BA15AE61884C000F6D89C_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
InternalData_t7100B940380492C19774536244433DFD434CEB1F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InternalData_t7100B940380492C19774536244433DFD434CEB1F*>(__this + _offset);
InternalData_set_pointerTarget_mC6341AA6C2995C1E180BA15AE61884C000F6D89C_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.MouseModel/InternalData::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalData_Reset_m285105197FFE5EC122647161C449132D50E4472F (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// pointerTarget = null;
InternalData_set_pointerTarget_mC6341AA6C2995C1E180BA15AE61884C000F6D89C_inline(__this, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
// if (hoverTargets == null)
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0;
L_0 = InternalData_get_hoverTargets_m7B27E64A82CB4C34D900E18D81B2BDCE8336EA4C_inline(__this, NULL);
if (L_0)
{
goto IL_001b;
}
}
{
// hoverTargets = new List<GameObject>();
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_1 = (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*)il2cpp_codegen_object_new(List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_il2cpp_TypeInfo_var);
List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC(L_1, /*hidden argument*/List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC_RuntimeMethod_var);
InternalData_set_hoverTargets_m0EBDF30E6181C88E401E66EF7241F8C206B88360_inline(__this, L_1, NULL);
return;
}
IL_001b:
{
// hoverTargets.Clear();
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_2;
L_2 = InternalData_get_hoverTargets_m7B27E64A82CB4C34D900E18D81B2BDCE8336EA4C_inline(__this, NULL);
NullCheck(L_2);
List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline(L_2, List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void InternalData_Reset_m285105197FFE5EC122647161C449132D50E4472F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
InternalData_t7100B940380492C19774536244433DFD434CEB1F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<InternalData_t7100B940380492C19774536244433DFD434CEB1F*>(__this + _offset);
InternalData_Reset_m285105197FFE5EC122647161C449132D50E4472F(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TouchModel
IL2CPP_EXTERN_C void TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshal_pinvoke(const TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F& unmarshaled, TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_ImplementationData_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'TouchModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_6Exception, NULL);
}
IL2CPP_EXTERN_C void TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshal_pinvoke_back(const TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshaled_pinvoke& marshaled, TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F& unmarshaled)
{
Exception_t* ___m_ImplementationData_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'TouchModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_6Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TouchModel
IL2CPP_EXTERN_C void TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshal_pinvoke_cleanup(TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TouchModel
IL2CPP_EXTERN_C void TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshal_com(const TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F& unmarshaled, TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshaled_com& marshaled)
{
Exception_t* ___m_ImplementationData_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'TouchModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_6Exception, NULL);
}
IL2CPP_EXTERN_C void TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshal_com_back(const TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshaled_com& marshaled, TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F& unmarshaled)
{
Exception_t* ___m_ImplementationData_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'TouchModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_6Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TouchModel
IL2CPP_EXTERN_C void TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshal_com_cleanup(TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F_marshaled_com& marshaled)
{
}
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_pointerId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TouchModel_get_pointerId_mEF567A1F3619C12F6519E4A6335E47BEC45F3D6A (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// public int pointerId { get; }
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t TouchModel_get_pointerId_mEF567A1F3619C12F6519E4A6335E47BEC45F3D6A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
int32_t _returnValue;
_returnValue = TouchModel_get_pointerId_mEF567A1F3619C12F6519E4A6335E47BEC45F3D6A_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.TouchPhase UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_selectPhase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TouchModel_get_selectPhase_m8EF259C3B4DE6A8B17699E796E4294405E07450D (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// get => m_SelectPhase;
int32_t L_0 = __this->___m_SelectPhase_4;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t TouchModel_get_selectPhase_m8EF259C3B4DE6A8B17699E796E4294405E07450D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
int32_t _returnValue;
_returnValue = TouchModel_get_selectPhase_m8EF259C3B4DE6A8B17699E796E4294405E07450D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::set_selectPhase(UnityEngine.TouchPhase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_set_selectPhase_m20B064E217FF3B1FC1D408A613E37D482B7ABFE7 (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// if (m_SelectPhase != value)
int32_t L_0 = __this->___m_SelectPhase_4;
int32_t L_1 = ___value0;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_003e;
}
}
{
// if (value == TouchPhase.Began)
int32_t L_2 = ___value0;
if (L_2)
{
goto IL_001a;
}
}
{
// selectDelta |= ButtonDeltaState.Pressed;
int32_t L_3;
L_3 = TouchModel_get_selectDelta_mE61F993C8533C9E3BBEB2BDBDC65DB68D19C15C5_inline(__this, NULL);
TouchModel_set_selectDelta_m78599CB986783C0797E2C4DFF21B3C41062E29BD_inline(__this, ((int32_t)((int32_t)L_3|(int32_t)1)), NULL);
}
IL_001a:
{
// if (value == TouchPhase.Ended || value == TouchPhase.Canceled)
int32_t L_4 = ___value0;
if ((((int32_t)L_4) == ((int32_t)3)))
{
goto IL_0022;
}
}
{
int32_t L_5 = ___value0;
if ((!(((uint32_t)L_5) == ((uint32_t)4))))
{
goto IL_0030;
}
}
IL_0022:
{
// selectDelta |= ButtonDeltaState.Released;
int32_t L_6;
L_6 = TouchModel_get_selectDelta_mE61F993C8533C9E3BBEB2BDBDC65DB68D19C15C5_inline(__this, NULL);
TouchModel_set_selectDelta_m78599CB986783C0797E2C4DFF21B3C41062E29BD_inline(__this, ((int32_t)((int32_t)L_6|(int32_t)2)), NULL);
}
IL_0030:
{
// m_SelectPhase = value;
int32_t L_7 = ___value0;
__this->___m_SelectPhase_4 = L_7;
// changedThisFrame = true;
TouchModel_set_changedThisFrame_m6F51A89025E6D541FAD0C743D409CA10F0981ECF_inline(__this, (bool)1, NULL);
}
IL_003e:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TouchModel_set_selectPhase_m20B064E217FF3B1FC1D408A613E37D482B7ABFE7_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
TouchModel_set_selectPhase_m20B064E217FF3B1FC1D408A613E37D482B7ABFE7(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_selectDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TouchModel_get_selectDelta_mE61F993C8533C9E3BBEB2BDBDC65DB68D19C15C5 (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// public ButtonDeltaState selectDelta { get; private set; }
int32_t L_0 = __this->___U3CselectDeltaU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t TouchModel_get_selectDelta_mE61F993C8533C9E3BBEB2BDBDC65DB68D19C15C5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
int32_t _returnValue;
_returnValue = TouchModel_get_selectDelta_mE61F993C8533C9E3BBEB2BDBDC65DB68D19C15C5_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::set_selectDelta(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_set_selectDelta_m78599CB986783C0797E2C4DFF21B3C41062E29BD (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public ButtonDeltaState selectDelta { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CselectDeltaU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_EXTERN_C void TouchModel_set_selectDelta_m78599CB986783C0797E2C4DFF21B3C41062E29BD_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
TouchModel_set_selectDelta_m78599CB986783C0797E2C4DFF21B3C41062E29BD_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_changedThisFrame()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchModel_get_changedThisFrame_mAF76A9DB5F6F80A8BE56ADB2BDD35E55A5BE717B (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = __this->___U3CchangedThisFrameU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_EXTERN_C bool TouchModel_get_changedThisFrame_mAF76A9DB5F6F80A8BE56ADB2BDD35E55A5BE717B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
bool _returnValue;
_returnValue = TouchModel_get_changedThisFrame_mAF76A9DB5F6F80A8BE56ADB2BDD35E55A5BE717B_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::set_changedThisFrame(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_set_changedThisFrame_m6F51A89025E6D541FAD0C743D409CA10F0981ECF (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = ___value0;
__this->___U3CchangedThisFrameU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_EXTERN_C void TouchModel_set_changedThisFrame_m6F51A89025E6D541FAD0C743D409CA10F0981ECF_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
TouchModel_set_changedThisFrame_m6F51A89025E6D541FAD0C743D409CA10F0981ECF_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TouchModel_get_position_m6D3991EE4E0BD3CF7D530F9BDCB34804A21C431F (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// get => m_Position;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_Position_5;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TouchModel_get_position_m6D3991EE4E0BD3CF7D530F9BDCB34804A21C431F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = TouchModel_get_position_m6D3991EE4E0BD3CF7D530F9BDCB34804A21C431F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::set_position(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_set_position_mCC5A8772603B39F6EB6440B5592AA3FCB813D908 (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// if (m_Position != value)
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_Position_5;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___value0;
bool L_2;
L_2 = Vector2_op_Inequality_mCF3935E28AC7B30B279F07F9321CC56718E1311A_inline(L_0, L_1, NULL);
if (!L_2)
{
goto IL_002e;
}
}
{
// deltaPosition = value - m_Position;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___value0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = __this->___m_Position_5;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
L_5 = Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8_inline(L_3, L_4, NULL);
TouchModel_set_deltaPosition_m347C7275855704F7257AADD47BCABBBEA82F5499_inline(__this, L_5, NULL);
// m_Position = value;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___value0;
__this->___m_Position_5 = L_6;
// changedThisFrame = true;
TouchModel_set_changedThisFrame_m6F51A89025E6D541FAD0C743D409CA10F0981ECF_inline(__this, (bool)1, NULL);
}
IL_002e:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TouchModel_set_position_mCC5A8772603B39F6EB6440B5592AA3FCB813D908_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
TouchModel_set_position_mCC5A8772603B39F6EB6440B5592AA3FCB813D908(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::get_deltaPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TouchModel_get_deltaPosition_m8F1A9044D3FFE83FA0E82B3D6268829F6DD2A5CD (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// public Vector2 deltaPosition { get; private set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CdeltaPositionU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TouchModel_get_deltaPosition_m8F1A9044D3FFE83FA0E82B3D6268829F6DD2A5CD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = TouchModel_get_deltaPosition_m8F1A9044D3FFE83FA0E82B3D6268829F6DD2A5CD_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::set_deltaPosition(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_set_deltaPosition_m347C7275855704F7257AADD47BCABBBEA82F5499 (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 deltaPosition { get; private set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CdeltaPositionU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_EXTERN_C void TouchModel_set_deltaPosition_m347C7275855704F7257AADD47BCABBBEA82F5499_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
TouchModel_set_deltaPosition_m347C7275855704F7257AADD47BCABBBEA82F5499_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel__ctor_m7DCCF8284C173C8BD0BE01B0CD15F912C15FEF4B (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, int32_t ___pointerId0, const RuntimeMethod* method)
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// this.pointerId = pointerId;
int32_t L_0 = ___pointerId0;
__this->___U3CpointerIdU3Ek__BackingField_0 = L_0;
// m_Position = deltaPosition = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
L_1 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = L_1;
V_0 = L_2;
TouchModel_set_deltaPosition_m347C7275855704F7257AADD47BCABBBEA82F5499_inline(__this, L_2, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = V_0;
__this->___m_Position_5 = L_3;
// m_SelectPhase = TouchPhase.Canceled;
__this->___m_SelectPhase_4 = 4;
// changedThisFrame = false;
TouchModel_set_changedThisFrame_m6F51A89025E6D541FAD0C743D409CA10F0981ECF_inline(__this, (bool)0, NULL);
// selectDelta = ButtonDeltaState.NoChange;
TouchModel_set_selectDelta_m78599CB986783C0797E2C4DFF21B3C41062E29BD_inline(__this, 0, NULL);
// m_ImplementationData = new ImplementationData();
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_4 = (&__this->___m_ImplementationData_6);
il2cpp_codegen_initobj(L_4, sizeof(ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3));
// m_ImplementationData.Reset();
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_5 = (&__this->___m_ImplementationData_6);
ImplementationData_Reset_mCC0BA6F7121A295E5A12ED99C63C2A644C4CBD2D(L_5, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void TouchModel__ctor_m7DCCF8284C173C8BD0BE01B0CD15F912C15FEF4B_AdjustorThunk (RuntimeObject* __this, int32_t ___pointerId0, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
TouchModel__ctor_m7DCCF8284C173C8BD0BE01B0CD15F912C15FEF4B(_thisAdjusted, ___pointerId0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_Reset_m23AF647E5BDA070B4FAF70877E2A5932D5235454 (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// m_Position = deltaPosition = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
L_0 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0;
V_0 = L_1;
TouchModel_set_deltaPosition_m347C7275855704F7257AADD47BCABBBEA82F5499_inline(__this, L_1, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = V_0;
__this->___m_Position_5 = L_2;
// changedThisFrame = false;
TouchModel_set_changedThisFrame_m6F51A89025E6D541FAD0C743D409CA10F0981ECF_inline(__this, (bool)0, NULL);
// selectDelta = ButtonDeltaState.NoChange;
TouchModel_set_selectDelta_m78599CB986783C0797E2C4DFF21B3C41062E29BD_inline(__this, 0, NULL);
// m_ImplementationData.Reset();
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_3 = (&__this->___m_ImplementationData_6);
ImplementationData_Reset_mCC0BA6F7121A295E5A12ED99C63C2A644C4CBD2D(L_3, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void TouchModel_Reset_m23AF647E5BDA070B4FAF70877E2A5932D5235454_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
TouchModel_Reset_m23AF647E5BDA070B4FAF70877E2A5932D5235454(_thisAdjusted, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::OnFrameFinished()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_OnFrameFinished_m4FD14ED5AF9964A444CD372A80B81ED55671FEF2 (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// deltaPosition = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
L_0 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
TouchModel_set_deltaPosition_m347C7275855704F7257AADD47BCABBBEA82F5499_inline(__this, L_0, NULL);
// selectDelta = ButtonDeltaState.NoChange;
TouchModel_set_selectDelta_m78599CB986783C0797E2C4DFF21B3C41062E29BD_inline(__this, 0, NULL);
// changedThisFrame = false;
TouchModel_set_changedThisFrame_m6F51A89025E6D541FAD0C743D409CA10F0981ECF_inline(__this, (bool)0, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void TouchModel_OnFrameFinished_m4FD14ED5AF9964A444CD372A80B81ED55671FEF2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
TouchModel_OnFrameFinished_m4FD14ED5AF9964A444CD372A80B81ED55671FEF2(_thisAdjusted, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::CopyTo(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_CopyTo_mDDC9DCAA045380589E0325B4D8D272E419D4A75C (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B2_0 = NULL;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B1_0 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B3_0;
memset((&G_B3_0), 0, sizeof(G_B3_0));
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B3_1 = NULL;
{
// eventData.pointerId = pointerId;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___eventData0;
int32_t L_1;
L_1 = TouchModel_get_pointerId_mEF567A1F3619C12F6519E4A6335E47BEC45F3D6A_inline(__this, NULL);
NullCheck(L_0);
PointerEventData_set_pointerId_m5B5FF54AB1DE7BD4454022A7C0535C618049BD9B_inline(L_0, L_1, NULL);
// eventData.position = position;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = ___eventData0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
L_3 = TouchModel_get_position_m6D3991EE4E0BD3CF7D530F9BDCB34804A21C431F_inline(__this, NULL);
NullCheck(L_2);
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_2, L_3, NULL);
// eventData.delta = ((selectDelta & ButtonDeltaState.Pressed) != 0) ? Vector2.zero : deltaPosition;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___eventData0;
int32_t L_5;
L_5 = TouchModel_get_selectDelta_mE61F993C8533C9E3BBEB2BDBDC65DB68D19C15C5_inline(__this, NULL);
G_B1_0 = L_4;
if (((int32_t)((int32_t)L_5&(int32_t)1)))
{
G_B2_0 = L_4;
goto IL_002b;
}
}
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
L_6 = TouchModel_get_deltaPosition_m8F1A9044D3FFE83FA0E82B3D6268829F6DD2A5CD_inline(__this, NULL);
G_B3_0 = L_6;
G_B3_1 = G_B1_0;
goto IL_0030;
}
IL_002b:
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
L_7 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
G_B3_0 = L_7;
G_B3_1 = G_B2_0;
}
IL_0030:
{
NullCheck(G_B3_1);
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(G_B3_1, G_B3_0, NULL);
// eventData.pointerEnter = m_ImplementationData.pointerTarget;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = ___eventData0;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_9 = (&__this->___m_ImplementationData_6);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_10;
L_10 = ImplementationData_get_pointerTarget_m1B2B7AB756D7AB58E4DDD61724B28C5BEA7ED45F_inline(L_9, NULL);
NullCheck(L_8);
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_8, L_10, NULL);
// eventData.dragging = m_ImplementationData.isDragging;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_11 = ___eventData0;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_12 = (&__this->___m_ImplementationData_6);
bool L_13;
L_13 = ImplementationData_get_isDragging_mA2CDC9BC26BCAE431DC2D5556C26C4081C0120EC_inline(L_12, NULL);
NullCheck(L_11);
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_11, L_13, NULL);
// eventData.clickTime = m_ImplementationData.pressedTime;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_14 = ___eventData0;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_15 = (&__this->___m_ImplementationData_6);
float L_16;
L_16 = ImplementationData_get_pressedTime_m72D41F1D9D6D5374145B9EA73D48DD514DF57FD8_inline(L_15, NULL);
NullCheck(L_14);
PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline(L_14, L_16, NULL);
// eventData.pressPosition = m_ImplementationData.pressedPosition;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = ___eventData0;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_18 = (&__this->___m_ImplementationData_6);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19;
L_19 = ImplementationData_get_pressedPosition_m521F6BF90F71F5364A9D3C9A7DBEC1B3263C2410_inline(L_18, NULL);
NullCheck(L_17);
PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline(L_17, L_19, NULL);
// eventData.pointerPressRaycast = m_ImplementationData.pressedRaycast;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_20 = ___eventData0;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_21 = (&__this->___m_ImplementationData_6);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_22;
L_22 = ImplementationData_get_pressedRaycast_m449154600AFBECB2454BE161E4F2D8E1C64E2725_inline(L_21, NULL);
NullCheck(L_20);
PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852_inline(L_20, L_22, NULL);
// eventData.pointerPress = m_ImplementationData.pressedGameObject;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_23 = ___eventData0;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_24 = (&__this->___m_ImplementationData_6);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_25;
L_25 = ImplementationData_get_pressedGameObject_m1C35ACFE7671A98B1BE4C9E63F99DE6F26F5A701_inline(L_24, NULL);
NullCheck(L_23);
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_23, L_25, NULL);
// eventData.rawPointerPress = m_ImplementationData.pressedGameObjectRaw;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_26 = ___eventData0;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_27 = (&__this->___m_ImplementationData_6);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_28;
L_28 = ImplementationData_get_pressedGameObjectRaw_m9ACBBB249DE666C8A4FC22EF9D2738F7769ABC26_inline(L_27, NULL);
NullCheck(L_26);
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_26, L_28, NULL);
// eventData.pointerDrag = m_ImplementationData.draggedGameObject;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_29 = ___eventData0;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_30 = (&__this->___m_ImplementationData_6);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_31;
L_31 = ImplementationData_get_draggedGameObject_mE3FA41A9E5B1A53CE2D810ECB6F70E931C8C24D2_inline(L_30, NULL);
NullCheck(L_29);
PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline(L_29, L_31, NULL);
// eventData.hovered.Clear();
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_32 = ___eventData0;
NullCheck(L_32);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_33 = L_32->___hovered_10;
NullCheck(L_33);
List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline(L_33, List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
// eventData.hovered.AddRange(m_ImplementationData.hoverTargets);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_34 = ___eventData0;
NullCheck(L_34);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_35 = L_34->___hovered_10;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_36 = (&__this->___m_ImplementationData_6);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_37;
L_37 = ImplementationData_get_hoverTargets_m4291FA348576902BD6421C43CEF21005B42DDEA2_inline(L_36, NULL);
NullCheck(L_35);
List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C(L_35, L_37, List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void TouchModel_CopyTo_mDDC9DCAA045380589E0325B4D8D272E419D4A75C_AdjustorThunk (RuntimeObject* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
TouchModel_CopyTo_mDDC9DCAA045380589E0325B4D8D272E419D4A75C(_thisAdjusted, ___eventData0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel::CopyFrom(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchModel_CopyFrom_m6727074A88A573B3B5A696C9BAC2EE03F1FD70FF (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// m_ImplementationData.pointerTarget = eventData.pointerEnter;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_0 = (&__this->___m_ImplementationData_6);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___eventData0;
NullCheck(L_1);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
L_2 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_1, NULL);
ImplementationData_set_pointerTarget_m0D4C6DE0126FB9B434079FB0191701AE39D11CFA_inline(L_0, L_2, NULL);
// m_ImplementationData.isDragging = eventData.dragging;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_3 = (&__this->___m_ImplementationData_6);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___eventData0;
NullCheck(L_4);
bool L_5;
L_5 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_4, NULL);
ImplementationData_set_isDragging_mF4D332D1A15D3A25CA9DCD01FA66D1DD3509053A_inline(L_3, L_5, NULL);
// m_ImplementationData.pressedTime = eventData.clickTime;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_6 = (&__this->___m_ImplementationData_6);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = ___eventData0;
NullCheck(L_7);
float L_8;
L_8 = PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline(L_7, NULL);
ImplementationData_set_pressedTime_m1DD37E6DF363A9D52AAB0DF5D41FA85D480412AB_inline(L_6, L_8, NULL);
// m_ImplementationData.pressedPosition = eventData.pressPosition;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_9 = (&__this->___m_ImplementationData_6);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = ___eventData0;
NullCheck(L_10);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
L_11 = PointerEventData_get_pressPosition_m8A6788DA6BF81481E4EBCBA2ED1838F786EBAE63_inline(L_10, NULL);
ImplementationData_set_pressedPosition_mE0AE62062AD3BB0B3F91FC5A0A72C984838BB6A8_inline(L_9, L_11, NULL);
// m_ImplementationData.pressedRaycast = eventData.pointerPressRaycast;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_12 = (&__this->___m_ImplementationData_6);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = ___eventData0;
NullCheck(L_13);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_14;
L_14 = PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D_inline(L_13, NULL);
ImplementationData_set_pressedRaycast_mD8206A598973DF87B20BDBBEC8E6E470D7EDC8FB_inline(L_12, L_14, NULL);
// m_ImplementationData.pressedGameObject = eventData.pointerPress;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_15 = (&__this->___m_ImplementationData_6);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_16 = ___eventData0;
NullCheck(L_16);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_17;
L_17 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_16, NULL);
ImplementationData_set_pressedGameObject_m0B1B3517DF2991D515A6EE42D9A4E1EEB0F3D1A8_inline(L_15, L_17, NULL);
// m_ImplementationData.pressedGameObjectRaw = eventData.rawPointerPress;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_18 = (&__this->___m_ImplementationData_6);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = ___eventData0;
NullCheck(L_19);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_20;
L_20 = PointerEventData_get_rawPointerPress_m8B7A6235A116E26EDDBBDB24473BE0F9634C7B71_inline(L_19, NULL);
ImplementationData_set_pressedGameObjectRaw_m53BFBDBF206350007C3B16570C0D1D1017B4478F_inline(L_18, L_20, NULL);
// m_ImplementationData.draggedGameObject = eventData.pointerDrag;
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_21 = (&__this->___m_ImplementationData_6);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_22 = ___eventData0;
NullCheck(L_22);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_23;
L_23 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_22, NULL);
ImplementationData_set_draggedGameObject_m6E44F10143BEC035EA6D122100AE0E331D40EF45_inline(L_21, L_23, NULL);
// m_ImplementationData.hoverTargets.Clear();
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_24 = (&__this->___m_ImplementationData_6);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_25;
L_25 = ImplementationData_get_hoverTargets_m4291FA348576902BD6421C43CEF21005B42DDEA2_inline(L_24, NULL);
NullCheck(L_25);
List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline(L_25, List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
// m_ImplementationData.hoverTargets.AddRange(eventData.hovered);
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* L_26 = (&__this->___m_ImplementationData_6);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_27;
L_27 = ImplementationData_get_hoverTargets_m4291FA348576902BD6421C43CEF21005B42DDEA2_inline(L_26, NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_28 = ___eventData0;
NullCheck(L_28);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_29 = L_28->___hovered_10;
NullCheck(L_27);
List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C(L_27, L_29, List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void TouchModel_CopyFrom_m6727074A88A573B3B5A696C9BAC2EE03F1FD70FF_AdjustorThunk (RuntimeObject* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F*>(__this + _offset);
TouchModel_CopyFrom_m6727074A88A573B3B5A696C9BAC2EE03F1FD70FF(_thisAdjusted, ___eventData0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_pinvoke(const ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3& unmarshaled, ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_pinvoke_back(const ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_pinvoke& marshaled, ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3& unmarshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_pinvoke_cleanup(ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_com(const ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3& unmarshaled, ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_com& marshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_com_back(const ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_com& marshaled, ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3& unmarshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshal_com_cleanup(ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3_marshaled_com& marshaled)
{
}
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_hoverTargets()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ImplementationData_get_hoverTargets_m4291FA348576902BD6421C43CEF21005B42DDEA2 (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = __this->___U3ChoverTargetsU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_EXTERN_C List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ImplementationData_get_hoverTargets_m4291FA348576902BD6421C43CEF21005B42DDEA2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* _returnValue;
_returnValue = ImplementationData_get_hoverTargets_m4291FA348576902BD6421C43CEF21005B42DDEA2_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_hoverTargets(System.Collections.Generic.List`1<UnityEngine.GameObject>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_hoverTargets_mA2493C8E719D7734B4B52E0224B269C9265795FE (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = ___value0;
__this->___U3ChoverTargetsU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ChoverTargetsU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_hoverTargets_mA2493C8E719D7734B4B52E0224B269C9265795FE_AdjustorThunk (RuntimeObject* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
ImplementationData_set_hoverTargets_mA2493C8E719D7734B4B52E0224B269C9265795FE_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pointerTarget()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pointerTarget_m1B2B7AB756D7AB58E4DDD61724B28C5BEA7ED45F (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerTargetU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pointerTarget_m1B2B7AB756D7AB58E4DDD61724B28C5BEA7ED45F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = ImplementationData_get_pointerTarget_m1B2B7AB756D7AB58E4DDD61724B28C5BEA7ED45F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pointerTarget(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pointerTarget_m0D4C6DE0126FB9B434079FB0191701AE39D11CFA (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpointerTargetU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerTargetU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pointerTarget_m0D4C6DE0126FB9B434079FB0191701AE39D11CFA_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
ImplementationData_set_pointerTarget_m0D4C6DE0126FB9B434079FB0191701AE39D11CFA_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_isDragging()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImplementationData_get_isDragging_mA2CDC9BC26BCAE431DC2D5556C26C4081C0120EC (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = __this->___U3CisDraggingU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_EXTERN_C bool ImplementationData_get_isDragging_mA2CDC9BC26BCAE431DC2D5556C26C4081C0120EC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
bool _returnValue;
_returnValue = ImplementationData_get_isDragging_mA2CDC9BC26BCAE431DC2D5556C26C4081C0120EC_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_isDragging(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_isDragging_mF4D332D1A15D3A25CA9DCD01FA66D1DD3509053A (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = ___value0;
__this->___U3CisDraggingU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_isDragging_mF4D332D1A15D3A25CA9DCD01FA66D1DD3509053A_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
ImplementationData_set_isDragging_mF4D332D1A15D3A25CA9DCD01FA66D1DD3509053A_inline(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pressedTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ImplementationData_get_pressedTime_m72D41F1D9D6D5374145B9EA73D48DD514DF57FD8 (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = __this->___U3CpressedTimeU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_EXTERN_C float ImplementationData_get_pressedTime_m72D41F1D9D6D5374145B9EA73D48DD514DF57FD8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
float _returnValue;
_returnValue = ImplementationData_get_pressedTime_m72D41F1D9D6D5374145B9EA73D48DD514DF57FD8_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pressedTime(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedTime_m1DD37E6DF363A9D52AAB0DF5D41FA85D480412AB (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = ___value0;
__this->___U3CpressedTimeU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedTime_m1DD37E6DF363A9D52AAB0DF5D41FA85D480412AB_AdjustorThunk (RuntimeObject* __this, float ___value0, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
ImplementationData_set_pressedTime_m1DD37E6DF363A9D52AAB0DF5D41FA85D480412AB_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pressedPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_m521F6BF90F71F5364A9D3C9A7DBEC1B3263C2410 (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpressedPositionU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_m521F6BF90F71F5364A9D3C9A7DBEC1B3263C2410_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = ImplementationData_get_pressedPosition_m521F6BF90F71F5364A9D3C9A7DBEC1B3263C2410_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pressedPosition(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedPosition_mE0AE62062AD3BB0B3F91FC5A0A72C984838BB6A8 (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CpressedPositionU3Ek__BackingField_4 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedPosition_mE0AE62062AD3BB0B3F91FC5A0A72C984838BB6A8_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
ImplementationData_set_pressedPosition_mE0AE62062AD3BB0B3F91FC5A0A72C984838BB6A8_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pressedRaycast()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_m449154600AFBECB2454BE161E4F2D8E1C64E2725 (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpressedRaycastU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_EXTERN_C RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_m449154600AFBECB2454BE161E4F2D8E1C64E2725_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 _returnValue;
_returnValue = ImplementationData_get_pressedRaycast_m449154600AFBECB2454BE161E4F2D8E1C64E2725_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pressedRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedRaycast_mD8206A598973DF87B20BDBBEC8E6E470D7EDC8FB (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___value0;
__this->___U3CpressedRaycastU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_5))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_5))->___module_1), (void*)NULL);
#endif
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedRaycast_mD8206A598973DF87B20BDBBEC8E6E470D7EDC8FB_AdjustorThunk (RuntimeObject* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
ImplementationData_set_pressedRaycast_mD8206A598973DF87B20BDBBEC8E6E470D7EDC8FB_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pressedGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_m1C35ACFE7671A98B1BE4C9E63F99DE6F26F5A701 (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_m1C35ACFE7671A98B1BE4C9E63F99DE6F26F5A701_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = ImplementationData_get_pressedGameObject_m1C35ACFE7671A98B1BE4C9E63F99DE6F26F5A701_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pressedGameObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObject_m0B1B3517DF2991D515A6EE42D9A4E1EEB0F3D1A8 (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectU3Ek__BackingField_6), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedGameObject_m0B1B3517DF2991D515A6EE42D9A4E1EEB0F3D1A8_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
ImplementationData_set_pressedGameObject_m0B1B3517DF2991D515A6EE42D9A4E1EEB0F3D1A8_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_pressedGameObjectRaw()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_m9ACBBB249DE666C8A4FC22EF9D2738F7769ABC26 (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectRawU3Ek__BackingField_7;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_m9ACBBB249DE666C8A4FC22EF9D2738F7769ABC26_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = ImplementationData_get_pressedGameObjectRaw_m9ACBBB249DE666C8A4FC22EF9D2738F7769ABC26_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_pressedGameObjectRaw(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObjectRaw_m53BFBDBF206350007C3B16570C0D1D1017B4478F (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectRawU3Ek__BackingField_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectRawU3Ek__BackingField_7), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedGameObjectRaw_m53BFBDBF206350007C3B16570C0D1D1017B4478F_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
ImplementationData_set_pressedGameObjectRaw_m53BFBDBF206350007C3B16570C0D1D1017B4478F_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::get_draggedGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_mE3FA41A9E5B1A53CE2D810ECB6F70E931C8C24D2 (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CdraggedGameObjectU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_mE3FA41A9E5B1A53CE2D810ECB6F70E931C8C24D2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = ImplementationData_get_draggedGameObject_mE3FA41A9E5B1A53CE2D810ECB6F70E931C8C24D2_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::set_draggedGameObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_draggedGameObject_m6E44F10143BEC035EA6D122100AE0E331D40EF45 (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CdraggedGameObjectU3Ek__BackingField_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdraggedGameObjectU3Ek__BackingField_8), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_draggedGameObject_m6E44F10143BEC035EA6D122100AE0E331D40EF45_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
ImplementationData_set_draggedGameObject_m6E44F10143BEC035EA6D122100AE0E331D40EF45_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TouchModel/ImplementationData::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_Reset_mCC0BA6F7121A295E5A12ED99C63C2A644C4CBD2D (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_0;
memset((&V_0), 0, sizeof(V_0));
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_1 = NULL;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_2 = NULL;
{
// isDragging = false;
ImplementationData_set_isDragging_mF4D332D1A15D3A25CA9DCD01FA66D1DD3509053A_inline(__this, (bool)0, NULL);
// pressedTime = 0f;
ImplementationData_set_pressedTime_m1DD37E6DF363A9D52AAB0DF5D41FA85D480412AB_inline(__this, (0.0f), NULL);
// pressedPosition = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
L_0 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
ImplementationData_set_pressedPosition_mE0AE62062AD3BB0B3F91FC5A0A72C984838BB6A8_inline(__this, L_0, NULL);
// pressedRaycast = new RaycastResult();
il2cpp_codegen_initobj((&V_0), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_1 = V_0;
ImplementationData_set_pressedRaycast_mD8206A598973DF87B20BDBBEC8E6E470D7EDC8FB_inline(__this, L_1, NULL);
// pressedGameObject = pressedGameObjectRaw = draggedGameObject = null;
V_2 = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL;
ImplementationData_set_draggedGameObject_m6E44F10143BEC035EA6D122100AE0E331D40EF45_inline(__this, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = V_2;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = L_2;
V_1 = L_3;
ImplementationData_set_pressedGameObjectRaw_m53BFBDBF206350007C3B16570C0D1D1017B4478F_inline(__this, L_3, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = V_1;
ImplementationData_set_pressedGameObject_m0B1B3517DF2991D515A6EE42D9A4E1EEB0F3D1A8_inline(__this, L_4, NULL);
// if (hoverTargets == null)
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_5;
L_5 = ImplementationData_get_hoverTargets_m4291FA348576902BD6421C43CEF21005B42DDEA2_inline(__this, NULL);
if (L_5)
{
goto IL_0059;
}
}
{
// hoverTargets = new List<GameObject>();
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_6 = (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*)il2cpp_codegen_object_new(List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_il2cpp_TypeInfo_var);
List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC(L_6, /*hidden argument*/List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC_RuntimeMethod_var);
ImplementationData_set_hoverTargets_mA2493C8E719D7734B4B52E0224B269C9265795FE_inline(__this, L_6, NULL);
return;
}
IL_0059:
{
// hoverTargets.Clear();
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_7;
L_7 = ImplementationData_get_hoverTargets_m4291FA348576902BD6421C43CEF21005B42DDEA2_inline(__this, NULL);
NullCheck(L_7);
List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline(L_7, List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_Reset_mCC0BA6F7121A295E5A12ED99C63C2A644C4CBD2D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3*>(__this + _offset);
ImplementationData_Reset_mCC0BA6F7121A295E5A12ED99C63C2A644C4CBD2D(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::.ctor(UnityEngine.EventSystems.EventSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceEventData__ctor_m84DA911667F1B78CAA3C828871BA1C0E6B472513 (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___eventSystem0, const RuntimeMethod* method)
{
{
// : base(eventSystem)
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = ___eventSystem0;
PointerEventData__ctor_m63837790B68893F0022CCEFEF26ADD55A975F71C(__this, L_0, NULL);
// }
return;
}
}
// System.Collections.Generic.List`1<UnityEngine.Vector3> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::get_rayPoints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* TrackedDeviceEventData_get_rayPoints_m634507CA62EF8BCFC3A5F1B7F1DE107480FBFE7D (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, const RuntimeMethod* method)
{
{
// public List<Vector3> rayPoints { get; set; }
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_0 = __this->___U3CrayPointsU3Ek__BackingField_31;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::set_rayPoints(System.Collections.Generic.List`1<UnityEngine.Vector3>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceEventData_set_rayPoints_m50DE65136BB92487876DC7FA3E8FD98AB95CDE04 (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___value0, const RuntimeMethod* method)
{
{
// public List<Vector3> rayPoints { get; set; }
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_0 = ___value0;
__this->___U3CrayPointsU3Ek__BackingField_31 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CrayPointsU3Ek__BackingField_31), (void*)L_0);
return;
}
}
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::get_rayHitIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackedDeviceEventData_get_rayHitIndex_mF78EEEBC65BFB650372F8AE3736CC747A852D857 (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, const RuntimeMethod* method)
{
{
// public int rayHitIndex { get; set; }
int32_t L_0 = __this->___U3CrayHitIndexU3Ek__BackingField_32;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::set_rayHitIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceEventData_set_rayHitIndex_m1DBE5C18ABAC0E5B241D10DB6164A391F37D5AF7 (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int rayHitIndex { get; set; }
int32_t L_0 = ___value0;
__this->___U3CrayHitIndexU3Ek__BackingField_32 = L_0;
return;
}
}
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::get_layerMask()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB TrackedDeviceEventData_get_layerMask_m4A2A83C58E6B60DC4ED886236CCB760E70D610DD (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, const RuntimeMethod* method)
{
{
// public LayerMask layerMask { get; set; }
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = __this->___U3ClayerMaskU3Ek__BackingField_33;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::set_layerMask(UnityEngine.LayerMask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceEventData_set_layerMask_mE98A92C0797C746EE0692EA41121D862C279D76F (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___value0, const RuntimeMethod* method)
{
{
// public LayerMask layerMask { get; set; }
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = ___value0;
__this->___U3ClayerMaskU3Ek__BackingField_33 = L_0;
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.UI.IUIInteractor UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData::get_interactor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TrackedDeviceEventData_get_interactor_mAB97D54909C335DE1C55CE0DA071DB1B078320EC (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* V_0 = NULL;
{
// var xrInputModule = currentInputModule as XRUIInputModule;
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_0;
L_0 = BaseEventData_get_currentInputModule_mA46B583FC6DAA697F2DAA91A73D14B3E914AF1A5(__this, NULL);
V_0 = ((XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0*)IsInstClass((RuntimeObject*)L_0, XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0_il2cpp_TypeInfo_var));
// if (xrInputModule != null)
XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* L_1 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_2;
L_2 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_2)
{
goto IL_0022;
}
}
{
// return xrInputModule.GetInteractor(pointerId);
XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* L_3 = V_0;
int32_t L_4;
L_4 = PointerEventData_get_pointerId_m81DDB468147FE75C1474C9C6C35753BB53A21275_inline(__this, NULL);
NullCheck(L_3);
RuntimeObject* L_5;
L_5 = XRUIInputModule_GetInteractor_mBBAF268AB57CAB8CB6390D339B7D5A5893CEF747(L_3, L_4, NULL);
return L_5;
}
IL_0022:
{
// return null;
return (RuntimeObject*)NULL;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::get_ignoreReversedGraphics()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackedDeviceGraphicRaycaster_get_ignoreReversedGraphics_m67397D0EDB5E58DAC62754B97DCBBFD8006F6217 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, const RuntimeMethod* method)
{
{
// get => m_IgnoreReversedGraphics;
bool L_0 = __this->___m_IgnoreReversedGraphics_6;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::set_ignoreReversedGraphics(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster_set_ignoreReversedGraphics_mEDEF9B517AC5D2C807DBAEA30B38A45631AF4244 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, bool ___value0, const RuntimeMethod* method)
{
{
// set => m_IgnoreReversedGraphics = value;
bool L_0 = ___value0;
__this->___m_IgnoreReversedGraphics_6 = L_0;
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::get_checkFor2DOcclusion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackedDeviceGraphicRaycaster_get_checkFor2DOcclusion_m4A896F3482512E5F84E842FD81344FD376F16483 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, const RuntimeMethod* method)
{
{
// get => m_CheckFor2DOcclusion;
bool L_0 = __this->___m_CheckFor2DOcclusion_7;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::set_checkFor2DOcclusion(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster_set_checkFor2DOcclusion_m090F9DC270B6D82514EAA8D3EFE270A342CE8959 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, bool ___value0, const RuntimeMethod* method)
{
{
// set => m_CheckFor2DOcclusion = value;
bool L_0 = ___value0;
__this->___m_CheckFor2DOcclusion_7 = L_0;
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::get_checkFor3DOcclusion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackedDeviceGraphicRaycaster_get_checkFor3DOcclusion_m81B936C36E3939FE427C0F83828AB40F25DCDE46 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, const RuntimeMethod* method)
{
{
// get => m_CheckFor3DOcclusion;
bool L_0 = __this->___m_CheckFor3DOcclusion_8;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::set_checkFor3DOcclusion(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster_set_checkFor3DOcclusion_m9B197AC3C42575A001DC499159F4B012BA4B80B1 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, bool ___value0, const RuntimeMethod* method)
{
{
// set => m_CheckFor3DOcclusion = value;
bool L_0 = ___value0;
__this->___m_CheckFor3DOcclusion_8 = L_0;
return;
}
}
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::get_blockingMask()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB TrackedDeviceGraphicRaycaster_get_blockingMask_m04A970E664E86282B4FA8F768E3FD57CECAE22B9 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, const RuntimeMethod* method)
{
{
// get => m_BlockingMask;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = __this->___m_BlockingMask_9;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::set_blockingMask(UnityEngine.LayerMask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster_set_blockingMask_m7D7EC827BFCFAC1C8FEDC12D8B7FD47A596A758E (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___value0, const RuntimeMethod* method)
{
{
// set => m_BlockingMask = value;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = ___value0;
__this->___m_BlockingMask_9 = L_0;
return;
}
}
// UnityEngine.QueryTriggerInteraction UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::get_raycastTriggerInteraction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackedDeviceGraphicRaycaster_get_raycastTriggerInteraction_m5B3AE66C78F898828750D70E7C248E3DD314B2FF (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, const RuntimeMethod* method)
{
{
// get => m_RaycastTriggerInteraction;
int32_t L_0 = __this->___m_RaycastTriggerInteraction_10;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::set_raycastTriggerInteraction(UnityEngine.QueryTriggerInteraction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster_set_raycastTriggerInteraction_m59A653ECE711A18DD756571637443BBC14CE9C44 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_RaycastTriggerInteraction = value;
int32_t L_0 = ___value0;
__this->___m_RaycastTriggerInteraction_10 = L_0;
return;
}
}
// UnityEngine.Camera UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::get_eventCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* TrackedDeviceGraphicRaycaster_get_eventCamera_m8B52EB17FFC37F45CF8145AB861936BA6466FB73 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override Camera eventCamera => canvas != null && canvas.worldCamera != null ? canvas.worldCamera : Camera.main;
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_0;
L_0 = TrackedDeviceGraphicRaycaster_get_canvas_mAD7A34E53FB188AC4DA28255C022DAFCBBA5613D(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0021;
}
}
{
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_2;
L_2 = TrackedDeviceGraphicRaycaster_get_canvas_mAD7A34E53FB188AC4DA28255C022DAFCBBA5613D(__this, NULL);
NullCheck(L_2);
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_3;
L_3 = Canvas_get_worldCamera_mD2FDE13B61A5213F4E64B40008EB0A8D2D07B853(L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_4)
{
goto IL_0027;
}
}
IL_0021:
{
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5;
L_5 = Camera_get_main_mF222B707D3BF8CC9C7544609EFC71CFB62E81D43(NULL);
return L_5;
}
IL_0027:
{
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_6;
L_6 = TrackedDeviceGraphicRaycaster_get_canvas_mAD7A34E53FB188AC4DA28255C022DAFCBBA5613D(__this, NULL);
NullCheck(L_6);
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_7;
L_7 = Canvas_get_worldCamera_mD2FDE13B61A5213F4E64B40008EB0A8D2D07B853(L_6, NULL);
return L_7;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::Raycast(UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster_Raycast_m67913B9B94A5A1B9077CC201F6EB3963F1C5D819 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___resultAppendList1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* V_0 = NULL;
{
// if (eventData is TrackedDeviceEventData trackedEventData)
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___eventData0;
V_0 = ((TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9*)IsInstClass((RuntimeObject*)L_0, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9_il2cpp_TypeInfo_var));
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
// PerformRaycasts(trackedEventData, resultAppendList);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_2 = V_0;
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_3 = ___resultAppendList1;
TrackedDeviceGraphicRaycaster_PerformRaycasts_mFCEEBBF50B3116C9783A46D8A99F138FB7C788A2(__this, L_2, L_3, NULL);
}
IL_0012:
{
// }
return;
}
}
// UnityEngine.Canvas UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::get_canvas()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* TrackedDeviceGraphicRaycaster_get_canvas_mAD7A34E53FB188AC4DA28255C022DAFCBBA5613D (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisCanvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26_m209BA4F663AB98A4504995B5BD3EADEDEFB92BF2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Canvas != null)
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_0 = __this->___m_Canvas_11;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_0015;
}
}
{
// return m_Canvas;
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_2 = __this->___m_Canvas_11;
return L_2;
}
IL_0015:
{
// m_Canvas = GetComponent<Canvas>();
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_3;
L_3 = Component_GetComponent_TisCanvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26_m209BA4F663AB98A4504995B5BD3EADEDEFB92BF2(__this, Component_GetComponent_TisCanvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26_m209BA4F663AB98A4504995B5BD3EADEDEFB92BF2_RuntimeMethod_var);
__this->___m_Canvas_11 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Canvas_11), (void*)L_3);
// return m_Canvas;
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_4 = __this->___m_Canvas_11;
return L_4;
}
}
// UnityEngine.RaycastHit UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::FindClosestHit(UnityEngine.RaycastHit[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 TrackedDeviceGraphicRaycaster_FindClosestHit_m90A61B47165A9C072BB7879FE72753C87EF62497 (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___hits0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
float V_1 = 0.0f;
int32_t V_2 = 0;
{
// var index = 0;
V_0 = 0;
// var distance = float.MaxValue;
V_1 = ((std::numeric_limits<float>::max)());
// for (var i = 0; i < count; i++)
V_2 = 0;
goto IL_002e;
}
IL_000c:
{
// if (hits[i].distance < distance)
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_0 = ___hits0;
int32_t L_1 = V_2;
NullCheck(L_0);
float L_2;
L_2 = RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78(((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1))), NULL);
float L_3 = V_1;
if ((!(((float)L_2) < ((float)L_3))))
{
goto IL_002a;
}
}
{
// distance = hits[i].distance;
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_4 = ___hits0;
int32_t L_5 = V_2;
NullCheck(L_4);
float L_6;
L_6 = RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78(((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5))), NULL);
V_1 = L_6;
// index = i;
int32_t L_7 = V_2;
V_0 = L_7;
}
IL_002a:
{
// for (var i = 0; i < count; i++)
int32_t L_8 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002e:
{
// for (var i = 0; i < count; i++)
int32_t L_9 = V_2;
int32_t L_10 = ___count1;
if ((((int32_t)L_9) < ((int32_t)L_10)))
{
goto IL_000c;
}
}
{
// return hits[index];
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_11 = ___hits0;
int32_t L_12 = V_0;
NullCheck(L_11);
int32_t L_13 = L_12;
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
return L_14;
}
}
// UnityEngine.RaycastHit2D UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::FindClosestHit(UnityEngine.RaycastHit2D[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA TrackedDeviceGraphicRaycaster_FindClosestHit_mFDC5F6850B9AE7BE705AC95267570FF2F4344467 (RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* ___hits0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
float V_1 = 0.0f;
int32_t V_2 = 0;
{
// var index = 0;
V_0 = 0;
// var distance = float.MaxValue;
V_1 = ((std::numeric_limits<float>::max)());
// for (var i = 0; i < count; i++)
V_2 = 0;
goto IL_002e;
}
IL_000c:
{
// if (hits[i].distance < distance)
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_0 = ___hits0;
int32_t L_1 = V_2;
NullCheck(L_0);
float L_2;
L_2 = RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613(((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1))), NULL);
float L_3 = V_1;
if ((!(((float)L_2) < ((float)L_3))))
{
goto IL_002a;
}
}
{
// distance = hits[i].distance;
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_4 = ___hits0;
int32_t L_5 = V_2;
NullCheck(L_4);
float L_6;
L_6 = RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613(((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5))), NULL);
V_1 = L_6;
// index = i;
int32_t L_7 = V_2;
V_0 = L_7;
}
IL_002a:
{
// for (var i = 0; i < count; i++)
int32_t L_8 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002e:
{
// for (var i = 0; i < count; i++)
int32_t L_9 = V_2;
int32_t L_10 = ___count1;
if ((((int32_t)L_9) < ((int32_t)L_10)))
{
goto IL_000c;
}
}
{
// return hits[index];
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_11 = ___hits0;
int32_t L_12 = V_0;
NullCheck(L_11);
int32_t L_13 = L_12;
RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
return L_14;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::PerformRaycasts(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster_PerformRaycasts_mFCEEBBF50B3116C9783A46D8A99F138FB7C788A2 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* ___eventData0, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___resultAppendList1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral123021283C86F7442C90B6534FA522D911ED52F0);
s_Il2CppMethodInitialized = true;
}
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_0 = NULL;
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* V_1 = NULL;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB V_2;
memset((&V_2), 0, sizeof(V_2));
int32_t V_3 = 0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_4;
memset((&V_4), 0, sizeof(V_4));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_5;
memset((&V_5), 0, sizeof(V_5));
{
// if (canvas == null)
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_0;
L_0 = TrackedDeviceGraphicRaycaster_get_canvas_mAD7A34E53FB188AC4DA28255C022DAFCBBA5613D(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_000f;
}
}
{
// return;
return;
}
IL_000f:
{
// var currentEventCamera = eventCamera;
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_2;
L_2 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
V_0 = L_2;
// if (currentEventCamera == null)
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_3 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_4)
{
goto IL_003a;
}
}
{
// if (!m_HasWarnedEventCameraNull)
bool L_5 = __this->___m_HasWarnedEventCameraNull_12;
if (L_5)
{
goto IL_0039;
}
}
{
// Debug.LogWarning("Event Camera must be set on World Space Canvas to perform raycasts with tracked device." +
// " UI events will not function correctly until it is set.",
// this);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_LogWarning_m5C8299150E64600CBF5C92706AD610C21D0C0DC5(_stringLiteral123021283C86F7442C90B6534FA522D911ED52F0, __this, NULL);
// m_HasWarnedEventCameraNull = true;
__this->___m_HasWarnedEventCameraNull_12 = (bool)1;
}
IL_0039:
{
// return;
return;
}
IL_003a:
{
// var rayPoints = eventData.rayPoints;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_6 = ___eventData0;
NullCheck(L_6);
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_7;
L_7 = TrackedDeviceEventData_get_rayPoints_m634507CA62EF8BCFC3A5F1B7F1DE107480FBFE7D_inline(L_6, NULL);
V_1 = L_7;
// var layerMask = eventData.layerMask;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_8 = ___eventData0;
NullCheck(L_8);
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_9;
L_9 = TrackedDeviceEventData_get_layerMask_m4A2A83C58E6B60DC4ED886236CCB760E70D610DD_inline(L_8, NULL);
V_2 = L_9;
// for (var i = 1; i < rayPoints.Count; i++)
V_3 = 1;
goto IL_007b;
}
IL_004c:
{
// var from = rayPoints[i - 1];
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_10 = V_1;
int32_t L_11 = V_3;
NullCheck(L_10);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
L_12 = List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810(L_10, ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)), List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810_RuntimeMethod_var);
V_4 = L_12;
// var to = rayPoints[i];
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_13 = V_1;
int32_t L_14 = V_3;
NullCheck(L_13);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_15;
L_15 = List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810(L_13, L_14, List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810_RuntimeMethod_var);
V_5 = L_15;
// if (PerformRaycast(from, to, layerMask, currentEventCamera, resultAppendList))
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16 = V_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17 = V_5;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_18 = V_2;
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_19 = V_0;
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_20 = ___resultAppendList1;
bool L_21;
L_21 = TrackedDeviceGraphicRaycaster_PerformRaycast_mF146A36CF05B6428122C843316097970AD82732C(__this, L_16, L_17, L_18, L_19, L_20, NULL);
if (!L_21)
{
goto IL_0077;
}
}
{
// eventData.rayHitIndex = i;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_22 = ___eventData0;
int32_t L_23 = V_3;
NullCheck(L_22);
TrackedDeviceEventData_set_rayHitIndex_m1DBE5C18ABAC0E5B241D10DB6164A391F37D5AF7_inline(L_22, L_23, NULL);
// break;
return;
}
IL_0077:
{
// for (var i = 1; i < rayPoints.Count; i++)
int32_t L_24 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_007b:
{
// for (var i = 1; i < rayPoints.Count; i++)
int32_t L_25 = V_3;
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_26 = V_1;
NullCheck(L_26);
int32_t L_27;
L_27 = List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_inline(L_26, List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_RuntimeMethod_var);
if ((((int32_t)L_25) < ((int32_t)L_27)))
{
goto IL_004c;
}
}
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::PerformRaycast(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.LayerMask,UnityEngine.Camera,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackedDeviceGraphicRaycaster_PerformRaycast_mF146A36CF05B6428122C843316097970AD82732C (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___from0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___to1, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___layerMask2, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___currentEventCamera3, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___resultAppendList4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mFBDA2B2BB848674E3458E8F995047979D6A956F2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m8813B70B0648CF6A6D0FBFAC93417D0BF62C140E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m4EB063F639AF28B245521BD522C30F593726BBB7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mEF6F24F9B19B3360DC8CAAD446C7696B33FC39B8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m98886FC8DF151AF831AD3B47051966D509D484E2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t64C0DB5246067DAC2E83A52558A0AC68AF3BE94D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
float V_1 = 0.0f;
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 V_2;
memset((&V_2), 0, sizeof(V_2));
float V_3 = 0.0f;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_4;
memset((&V_4), 0, sizeof(V_4));
int32_t V_5 = 0;
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 V_6;
memset((&V_6), 0, sizeof(V_6));
int32_t V_7 = 0;
RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA V_8;
memset((&V_8), 0, sizeof(V_8));
Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63 V_9;
memset((&V_9), 0, sizeof(V_9));
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD V_10;
memset((&V_10), 0, sizeof(V_10));
bool V_11 = false;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_12 = NULL;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_13;
memset((&V_13), 0, sizeof(V_13));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_14;
memset((&V_14), 0, sizeof(V_14));
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_15;
memset((&V_15), 0, sizeof(V_15));
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_16;
memset((&V_16), 0, sizeof(V_16));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
float G_B8_0 = 0.0f;
{
// var hitSomething = false;
V_0 = (bool)0;
// var rayDistance = Vector3.Distance(to, from);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___to1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___from0;
float L_2;
L_2 = Vector3_Distance_m99C722723EDD875852EF854AD7B7C4F8AC4F84AB_inline(L_0, L_1, NULL);
V_1 = L_2;
// var ray = new Ray(from, (to - from).normalized * rayDistance);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___from0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___to1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___from0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
L_6 = Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline(L_4, L_5, NULL);
V_4 = L_6;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7;
L_7 = Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline((&V_4), NULL);
float L_8 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
L_9 = Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline(L_7, L_8, NULL);
Ray__ctor_mE298992FD10A3894C38373198385F345C58BD64C((&V_2), L_3, L_9, NULL);
// var hitDistance = rayDistance;
float L_10 = V_1;
V_3 = L_10;
// if (m_CheckFor3DOcclusion)
bool L_11 = __this->___m_CheckFor3DOcclusion_8;
if (!L_11)
{
goto IL_0070;
}
}
{
// var hitCount = Physics.RaycastNonAlloc(ray, m_OcclusionHits3D, hitDistance, m_BlockingMask, m_RaycastTriggerInteraction);
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_12 = V_2;
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_13 = __this->___m_OcclusionHits3D_13;
float L_14 = V_3;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_15 = __this->___m_BlockingMask_9;
int32_t L_16;
L_16 = LayerMask_op_Implicit_m5D697E103A7CB05CADCED9F90FD4F6BAE955E763(L_15, NULL);
int32_t L_17 = __this->___m_RaycastTriggerInteraction_10;
int32_t L_18;
L_18 = Physics_RaycastNonAlloc_mDFA9A2E36F048930570165C0BDDF4AE342ACF767(L_12, L_13, L_14, L_16, L_17, NULL);
V_5 = L_18;
// if (hitCount > 0)
int32_t L_19 = V_5;
if ((((int32_t)L_19) <= ((int32_t)0)))
{
goto IL_0070;
}
}
{
// var hit = FindClosestHit(m_OcclusionHits3D, hitCount);
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_20 = __this->___m_OcclusionHits3D_13;
int32_t L_21 = V_5;
il2cpp_codegen_runtime_class_init_inline(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 L_22;
L_22 = TrackedDeviceGraphicRaycaster_FindClosestHit_m90A61B47165A9C072BB7879FE72753C87EF62497(L_20, L_21, NULL);
V_6 = L_22;
// hitDistance = hit.distance;
float L_23;
L_23 = RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78((&V_6), NULL);
V_3 = L_23;
// hitSomething = true;
V_0 = (bool)1;
}
IL_0070:
{
// if (m_CheckFor2DOcclusion)
bool L_24 = __this->___m_CheckFor2DOcclusion_7;
if (!L_24)
{
goto IL_00d4;
}
}
{
// var hitCount = Physics2D.RaycastNonAlloc(ray.origin, ray.direction, m_OcclusionHits2D, hitDistance, m_BlockingMask);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_25;
L_25 = Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6((&V_2), NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_26;
L_26 = Vector2_op_Implicit_m8F73B300CB4E6F9B4EB5FB6130363D76CEAA230B_inline(L_25, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_27;
L_27 = Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086((&V_2), NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_28;
L_28 = Vector2_op_Implicit_m8F73B300CB4E6F9B4EB5FB6130363D76CEAA230B_inline(L_27, NULL);
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_29 = __this->___m_OcclusionHits2D_14;
float L_30 = V_3;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_31 = __this->___m_BlockingMask_9;
int32_t L_32;
L_32 = LayerMask_op_Implicit_m5D697E103A7CB05CADCED9F90FD4F6BAE955E763(L_31, NULL);
il2cpp_codegen_runtime_class_init_inline(Physics2D_t64C0DB5246067DAC2E83A52558A0AC68AF3BE94D_il2cpp_TypeInfo_var);
int32_t L_33;
L_33 = Physics2D_RaycastNonAlloc_mA6FFB21AB7C60872B57CF07BE6CF1A9F1341211B(L_26, L_28, L_29, L_30, L_32, NULL);
V_7 = L_33;
// if (hitCount > 0)
int32_t L_34 = V_7;
if ((((int32_t)L_34) <= ((int32_t)0)))
{
goto IL_00d4;
}
}
{
// var hit = FindClosestHit(m_OcclusionHits2D, hitCount);
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_35 = __this->___m_OcclusionHits2D_14;
int32_t L_36 = V_7;
il2cpp_codegen_runtime_class_init_inline(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA L_37;
L_37 = TrackedDeviceGraphicRaycaster_FindClosestHit_mFDC5F6850B9AE7BE705AC95267570FF2F4344467(L_35, L_36, NULL);
V_8 = L_37;
// hitDistance = hit.distance > hitDistance ? hitDistance : hit.distance;
float L_38;
L_38 = RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613((&V_8), NULL);
float L_39 = V_3;
if ((((float)L_38) > ((float)L_39)))
{
goto IL_00d0;
}
}
{
float L_40;
L_40 = RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613((&V_8), NULL);
G_B8_0 = L_40;
goto IL_00d1;
}
IL_00d0:
{
float L_41 = V_3;
G_B8_0 = L_41;
}
IL_00d1:
{
V_3 = G_B8_0;
// hitSomething = true;
V_0 = (bool)1;
}
IL_00d4:
{
// m_RaycastResultsCache.Clear();
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* L_42 = __this->___m_RaycastResultsCache_17;
NullCheck(L_42);
List_1_Clear_mEF6F24F9B19B3360DC8CAAD446C7696B33FC39B8_inline(L_42, List_1_Clear_mEF6F24F9B19B3360DC8CAAD446C7696B33FC39B8_RuntimeMethod_var);
// SortedRaycastGraphics(canvas, ray, hitDistance, layerMask, currentEventCamera, m_RaycastResultsCache);
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_43;
L_43 = TrackedDeviceGraphicRaycaster_get_canvas_mAD7A34E53FB188AC4DA28255C022DAFCBBA5613D(__this, NULL);
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_44 = V_2;
float L_45 = V_3;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_46 = ___layerMask2;
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_47 = ___currentEventCamera3;
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* L_48 = __this->___m_RaycastResultsCache_17;
il2cpp_codegen_runtime_class_init_inline(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
TrackedDeviceGraphicRaycaster_SortedRaycastGraphics_m5C36293D866172FE0B49DFADCFDF0A5391525803(L_43, L_44, L_45, L_46, L_47, L_48, NULL);
// foreach (var hitData in m_RaycastResultsCache)
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* L_49 = __this->___m_RaycastResultsCache_17;
NullCheck(L_49);
Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63 L_50;
L_50 = List_1_GetEnumerator_m98886FC8DF151AF831AD3B47051966D509D484E2(L_49, List_1_GetEnumerator_m98886FC8DF151AF831AD3B47051966D509D484E2_RuntimeMethod_var);
V_9 = L_50;
}
IL_0102:
try
{// begin try (depth: 1)
{
goto IL_0230;
}
IL_0107:
{
// foreach (var hitData in m_RaycastResultsCache)
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD L_51;
L_51 = Enumerator_get_Current_m4EB063F639AF28B245521BD522C30F593726BBB7_inline((&V_9), Enumerator_get_Current_m4EB063F639AF28B245521BD522C30F593726BBB7_RuntimeMethod_var);
V_10 = L_51;
// var validHit = true;
V_11 = (bool)1;
// var go = hitData.graphic.gameObject;
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_52;
L_52 = RaycastHitData_get_graphic_mD7D675E65B6B19526DEC71B273334796C44D7B88_inline((&V_10), NULL);
NullCheck(L_52);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_53;
L_53 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_52, NULL);
V_12 = L_53;
// if (m_IgnoreReversedGraphics)
bool L_54 = __this->___m_IgnoreReversedGraphics_6;
if (!L_54)
{
goto IL_0158;
}
}
IL_0129:
{
// var forward = ray.direction;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_55;
L_55 = Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086((&V_2), NULL);
// var goDirection = go.transform.rotation * Vector3.forward;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_56 = V_12;
NullCheck(L_56);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_57;
L_57 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_56, NULL);
NullCheck(L_57);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_58;
L_58 = Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C(L_57, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_59;
L_59 = Vector3_get_forward_mEBAB24D77FC02FC88ED880738C3B1D47C758B3EB_inline(NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_60;
L_60 = Quaternion_op_Multiply_mF1348668A6CCD46FBFF98D39182F89358ED74AC0(L_58, L_59, NULL);
V_13 = L_60;
// validHit = Vector3.Dot(forward, goDirection) > 0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_61 = V_13;
float L_62;
L_62 = Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8_inline(L_55, L_61, NULL);
V_11 = (bool)((((float)L_62) > ((float)(0.0f)))? 1 : 0);
}
IL_0158:
{
// validHit &= hitData.distance < hitDistance;
bool L_63 = V_11;
float L_64;
L_64 = RaycastHitData_get_distance_mC2299A0A61CCB9C17D93D532D8DE4109C8291EC0_inline((&V_10), NULL);
float L_65 = V_3;
V_11 = (bool)((int32_t)((int32_t)L_63&(int32_t)((((float)L_64) < ((float)L_65))? 1 : 0)));
// if (validHit)
bool L_66 = V_11;
if (!L_66)
{
goto IL_0230;
}
}
IL_016e:
{
// var trans = go.transform;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_67 = V_12;
NullCheck(L_67);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_68;
L_68 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_67, NULL);
// var transForward = trans.forward;
NullCheck(L_68);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_69;
L_69 = Transform_get_forward_mFCFACF7165FDAB21E80E384C494DF278386CEE2F(L_68, NULL);
V_14 = L_69;
// var castResult = new RaycastResult
// {
// gameObject = go,
// module = this,
// distance = hitData.distance,
// index = resultAppendList.Count,
// depth = hitData.graphic.depth,
// sortingLayer = canvas.sortingLayerID,
// sortingOrder = canvas.sortingOrder,
// worldPosition = hitData.worldHitPosition,
// worldNormal = -transForward,
// screenPosition = hitData.screenPosition,
// displayIndex = hitData.displayIndex,
// };
il2cpp_codegen_initobj((&V_16), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_70 = V_12;
RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline((&V_16), L_70, NULL);
(&V_16)->___module_1 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_16)->___module_1), (void*)__this);
float L_71;
L_71 = RaycastHitData_get_distance_mC2299A0A61CCB9C17D93D532D8DE4109C8291EC0_inline((&V_10), NULL);
(&V_16)->___distance_2 = L_71;
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_72 = ___resultAppendList4;
NullCheck(L_72);
int32_t L_73;
L_73 = List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_inline(L_72, List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var);
(&V_16)->___index_3 = ((float)((float)L_73));
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_74;
L_74 = RaycastHitData_get_graphic_mD7D675E65B6B19526DEC71B273334796C44D7B88_inline((&V_10), NULL);
NullCheck(L_74);
int32_t L_75;
L_75 = Graphic_get_depth_m16A82C751AE0497941048A3715D48A1066939460(L_74, NULL);
(&V_16)->___depth_4 = L_75;
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_76;
L_76 = TrackedDeviceGraphicRaycaster_get_canvas_mAD7A34E53FB188AC4DA28255C022DAFCBBA5613D(__this, NULL);
NullCheck(L_76);
int32_t L_77;
L_77 = Canvas_get_sortingLayerID_m38FE23D0D6A2001F62CA24676298E95BEE968AB6(L_76, NULL);
(&V_16)->___sortingLayer_5 = L_77;
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_78;
L_78 = TrackedDeviceGraphicRaycaster_get_canvas_mAD7A34E53FB188AC4DA28255C022DAFCBBA5613D(__this, NULL);
NullCheck(L_78);
int32_t L_79;
L_79 = Canvas_get_sortingOrder_mFA9AC878A11BBEE1716CF7E7DF52E0AAC570C451(L_78, NULL);
(&V_16)->___sortingOrder_6 = L_79;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_80;
L_80 = RaycastHitData_get_worldHitPosition_mA36CED27016B4C803EE9129A379C1052152D15F2_inline((&V_10), NULL);
(&V_16)->___worldPosition_7 = L_80;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_81 = V_14;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_82;
L_82 = Vector3_op_UnaryNegation_m3AC523A7BED6E843165BDF598690F0560D8CAA63_inline(L_81, NULL);
(&V_16)->___worldNormal_8 = L_82;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_83;
L_83 = RaycastHitData_get_screenPosition_mAAA69CF11624FC7EA8667F228C640DEFCD6FB2AB_inline((&V_10), NULL);
(&V_16)->___screenPosition_9 = L_83;
int32_t L_84;
L_84 = RaycastHitData_get_displayIndex_mA3B5A6BD21766DBCE8EA33251BF23FDE7DFE0C50_inline((&V_10), NULL);
(&V_16)->___displayIndex_10 = L_84;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_85 = V_16;
V_15 = L_85;
// resultAppendList.Add(castResult);
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_86 = ___resultAppendList4;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_87 = V_15;
NullCheck(L_86);
List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_inline(L_86, L_87, List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
// hitSomething = true;
V_0 = (bool)1;
}
IL_0230:
{
// foreach (var hitData in m_RaycastResultsCache)
bool L_88;
L_88 = Enumerator_MoveNext_m8813B70B0648CF6A6D0FBFAC93417D0BF62C140E((&V_9), Enumerator_MoveNext_m8813B70B0648CF6A6D0FBFAC93417D0BF62C140E_RuntimeMethod_var);
if (L_88)
{
goto IL_0107;
}
}
IL_023c:
{
IL2CPP_LEAVE(0x588, FINALLY_023e);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_023e;
}
FINALLY_023e:
{// begin finally (depth: 1)
Enumerator_Dispose_mFBDA2B2BB848674E3458E8F995047979D6A956F2((&V_9), Enumerator_Dispose_mFBDA2B2BB848674E3458E8F995047979D6A956F2_RuntimeMethod_var);
IL2CPP_END_FINALLY(574)
}// end finally (depth: 1)
IL2CPP_CLEANUP(574)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x588, IL_024c)
}
IL_024c:
{
// return hitSomething;
bool L_89 = V_0;
return L_89;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::SortedRaycastGraphics(UnityEngine.Canvas,UnityEngine.Ray,System.Single,UnityEngine.LayerMask,UnityEngine.Camera,System.Collections.Generic.List`1<UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster_SortedRaycastGraphics_m5C36293D866172FE0B49DFADCFDF0A5391525803 (Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* ___canvas0, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___ray1, float ___maxDistance2, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___layerMask3, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___eventCamera4, List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* ___results5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GraphicRegistry_t374118CCD6DBB47209C783A4BF2F4EF9EA78A326_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tD07C4C2285E515DD62CEE90036AB7E2AB1493329_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t2238CF6AA19EFAD01A7B41136DDC843E17449487_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_m8E9878CB260E91008DF9EBD16392E9B92D08093E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mE6C474BBCAFBE5F68FF0E6FF95C034FE7AD19956_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mEF6F24F9B19B3360DC8CAAD446C7696B33FC39B8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortingHelpers_Sort_TisRaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_mF080C3925716C90E9068635B64500AB651DD46D1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* V_2 = NULL;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_3;
memset((&V_3), 0, sizeof(V_3));
float V_4 = 0.0f;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_5;
memset((&V_5), 0, sizeof(V_5));
{
// var graphics = GraphicRegistry.GetGraphicsForCanvas(canvas);
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* L_0 = ___canvas0;
il2cpp_codegen_runtime_class_init_inline(GraphicRegistry_t374118CCD6DBB47209C783A4BF2F4EF9EA78A326_il2cpp_TypeInfo_var);
RuntimeObject* L_1;
L_1 = GraphicRegistry_GetGraphicsForCanvas_m14232DD9431F5D6093757D5DCC48EBF1BB0128EE(L_0, NULL);
V_0 = L_1;
// s_SortedGraphics.Clear();
il2cpp_codegen_runtime_class_init_inline(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* L_2 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_SortedGraphics_18;
NullCheck(L_2);
List_1_Clear_mEF6F24F9B19B3360DC8CAAD446C7696B33FC39B8_inline(L_2, List_1_Clear_mEF6F24F9B19B3360DC8CAAD446C7696B33FC39B8_RuntimeMethod_var);
// for (int i = 0; i < graphics.Count; ++i)
V_1 = 0;
goto IL_00a9;
}
IL_0018:
{
// var graphic = graphics[i];
RuntimeObject* L_3 = V_0;
int32_t L_4 = V_1;
NullCheck(L_3);
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_5;
L_5 = InterfaceFuncInvoker1< Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<UnityEngine.UI.Graphic>::get_Item(System.Int32) */, IList_1_t2238CF6AA19EFAD01A7B41136DDC843E17449487_il2cpp_TypeInfo_var, L_3, L_4);
V_2 = L_5;
// if (graphic.depth == -1 || !graphic.raycastTarget || graphic.canvasRenderer.cull)
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_6 = V_2;
NullCheck(L_6);
int32_t L_7;
L_7 = Graphic_get_depth_m16A82C751AE0497941048A3715D48A1066939460(L_6, NULL);
if ((((int32_t)L_7) == ((int32_t)(-1))))
{
goto IL_00a5;
}
}
{
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_8 = V_2;
NullCheck(L_8);
bool L_9;
L_9 = VirtualFuncInvoker0< bool >::Invoke(24 /* System.Boolean UnityEngine.UI.Graphic::get_raycastTarget() */, L_8);
if (!L_9)
{
goto IL_00a5;
}
}
{
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_10 = V_2;
NullCheck(L_10);
CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860* L_11;
L_11 = Graphic_get_canvasRenderer_m62AB727277A28728264860232642DA6EC20DEAB1(L_10, NULL);
NullCheck(L_11);
bool L_12;
L_12 = CanvasRenderer_get_cull_m48007D7CB40B3C0EC29F0CB316AFAC88748EF3D7(L_11, NULL);
if (L_12)
{
goto IL_00a5;
}
}
{
// if (((1 << graphic.gameObject.layer) & layerMask) == 0)
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_13 = V_2;
NullCheck(L_13);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14;
L_14 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_13, NULL);
NullCheck(L_14);
int32_t L_15;
L_15 = GameObject_get_layer_m108902B9C89E9F837CE06B9942AA42307450FEAF(L_14, NULL);
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_16 = ___layerMask3;
int32_t L_17;
L_17 = LayerMask_op_Implicit_m5D697E103A7CB05CADCED9F90FD4F6BAE955E763(L_16, NULL);
if (!((int32_t)((int32_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)L_15&(int32_t)((int32_t)31)))))&(int32_t)L_17)))
{
goto IL_00a5;
}
}
{
// if (RayIntersectsRectTransform(graphic.rectTransform, ray, out var worldPos, out var distance))
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_18 = V_2;
NullCheck(L_18);
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_19;
L_19 = Graphic_get_rectTransform_mF4752E8934267D630810E84CE02CDFB81EB1FD6D(L_18, NULL);
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_20 = ___ray1;
il2cpp_codegen_runtime_class_init_inline(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
bool L_21;
L_21 = TrackedDeviceGraphicRaycaster_RayIntersectsRectTransform_m350FD64F586049EB34A5326AD0EFA3F37189A978(L_19, L_20, (&V_3), (&V_4), NULL);
if (!L_21)
{
goto IL_00a5;
}
}
{
// if (distance <= maxDistance)
float L_22 = V_4;
float L_23 = ___maxDistance2;
if ((!(((float)L_22) <= ((float)L_23))))
{
goto IL_00a5;
}
}
{
// Vector2 screenPos = eventCamera.WorldToScreenPoint(worldPos);
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_24 = ___eventCamera4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_25 = V_3;
NullCheck(L_24);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_26;
L_26 = Camera_WorldToScreenPoint_m26B4C8945C3B5731F1CC5944CFD96BF17126BAA3(L_24, L_25, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_27;
L_27 = Vector2_op_Implicit_m8F73B300CB4E6F9B4EB5FB6130363D76CEAA230B_inline(L_26, NULL);
V_5 = L_27;
// if (graphic.Raycast(screenPos, eventCamera))
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_28 = V_2;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_29 = V_5;
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_30 = ___eventCamera4;
NullCheck(L_28);
bool L_31;
L_31 = VirtualFuncInvoker2< bool, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(46 /* System.Boolean UnityEngine.UI.Graphic::Raycast(UnityEngine.Vector2,UnityEngine.Camera) */, L_28, L_29, L_30);
if (!L_31)
{
goto IL_00a5;
}
}
{
// s_SortedGraphics.Add(new RaycastHitData(graphic, worldPos, screenPos, distance, eventCamera.targetDisplay));
il2cpp_codegen_runtime_class_init_inline(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* L_32 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_SortedGraphics_18;
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_33 = V_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_34 = V_3;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_35 = V_5;
float L_36 = V_4;
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_37 = ___eventCamera4;
NullCheck(L_37);
int32_t L_38;
L_38 = Camera_get_targetDisplay_m204A169C94EEABDB491FA5A77CC684146B10DF80(L_37, NULL);
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD L_39;
memset((&L_39), 0, sizeof(L_39));
RaycastHitData__ctor_m46C10CA0C3686A7DFC808CC5E995563E3E6E0900((&L_39), L_33, L_34, L_35, L_36, L_38, /*hidden argument*/NULL);
NullCheck(L_32);
List_1_Add_mE6C474BBCAFBE5F68FF0E6FF95C034FE7AD19956_inline(L_32, L_39, List_1_Add_mE6C474BBCAFBE5F68FF0E6FF95C034FE7AD19956_RuntimeMethod_var);
}
IL_00a5:
{
// for (int i = 0; i < graphics.Count; ++i)
int32_t L_40 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1));
}
IL_00a9:
{
// for (int i = 0; i < graphics.Count; ++i)
int32_t L_41 = V_1;
RuntimeObject* L_42 = V_0;
NullCheck(L_42);
int32_t L_43;
L_43 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<UnityEngine.UI.Graphic>::get_Count() */, ICollection_1_tD07C4C2285E515DD62CEE90036AB7E2AB1493329_il2cpp_TypeInfo_var, L_42);
if ((((int32_t)L_41) < ((int32_t)L_43)))
{
goto IL_0018;
}
}
{
// SortingHelpers.Sort(s_SortedGraphics, s_RaycastHitComparer);
il2cpp_codegen_runtime_class_init_inline(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* L_44 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_SortedGraphics_18;
RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F* L_45 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_RaycastHitComparer_15;
il2cpp_codegen_runtime_class_init_inline(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var);
SortingHelpers_Sort_TisRaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_mF080C3925716C90E9068635B64500AB651DD46D1(L_44, L_45, SortingHelpers_Sort_TisRaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_mF080C3925716C90E9068635B64500AB651DD46D1_RuntimeMethod_var);
// results.AddRange(s_SortedGraphics);
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* L_46 = ___results5;
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* L_47 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_SortedGraphics_18;
NullCheck(L_46);
List_1_AddRange_m8E9878CB260E91008DF9EBD16392E9B92D08093E(L_46, L_47, List_1_AddRange_m8E9878CB260E91008DF9EBD16392E9B92D08093E_RuntimeMethod_var);
// }
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::RayIntersectsRectTransform(UnityEngine.RectTransform,UnityEngine.Ray,UnityEngine.Vector3&,System.Single&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackedDeviceGraphicRaycaster_RayIntersectsRectTransform_m350FD64F586049EB34A5326AD0EFA3F37189A978 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___transform0, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___ray1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* ___worldPosition2, float* ___distance3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C V_0;
memset((&V_0), 0, sizeof(V_0));
float V_1 = 0.0f;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
memset((&V_2), 0, sizeof(V_2));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_3;
memset((&V_3), 0, sizeof(V_3));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_4;
memset((&V_4), 0, sizeof(V_4));
float V_5 = 0.0f;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_6;
memset((&V_6), 0, sizeof(V_6));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_7;
memset((&V_7), 0, sizeof(V_7));
float V_8 = 0.0f;
{
// transform.GetWorldCorners(s_Corners);
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = ___transform0;
il2cpp_codegen_runtime_class_init_inline(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_1 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_0);
RectTransform_GetWorldCorners_m6E15303C3B065B2F65E0A7F0E0217695564C2E09(L_0, L_1, NULL);
// var plane = new Plane(s_Corners[0], s_Corners[1], s_Corners[2]);
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_2 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_2);
int32_t L_3 = 0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_5 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_5);
int32_t L_6 = 1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_8 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_8);
int32_t L_9 = 2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
Plane__ctor_mBF36EDC369DE0EC29502B4C655CDBAFFB17BD863((&V_0), L_4, L_7, L_10, NULL);
// if (plane.Raycast(ray, out var enter))
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_11 = ___ray1;
bool L_12;
L_12 = Plane_Raycast_mC6D25A732413A2694A75CB0F2F9E75DEDDA117F0((&V_0), L_11, (&V_1), NULL);
if (!L_12)
{
goto IL_0153;
}
}
{
// var intersection = ray.GetPoint(enter);
float L_13 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_14;
L_14 = Ray_GetPoint_mAF4E1D38026156E6434EF2BED2420ED5236392AF((&___ray1), L_13, NULL);
V_2 = L_14;
// var bottomEdge = s_Corners[3] - s_Corners[0];
il2cpp_codegen_runtime_class_init_inline(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_15 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_15);
int32_t L_16 = 3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_18 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_18);
int32_t L_19 = 0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21;
L_21 = Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline(L_17, L_20, NULL);
V_3 = L_21;
// var leftEdge = s_Corners[1] - s_Corners[0];
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_22 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_22);
int32_t L_23 = 1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_25 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_25);
int32_t L_26 = 0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_27 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_28;
L_28 = Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline(L_24, L_27, NULL);
V_4 = L_28;
// var bottomDot = Vector3.Dot(intersection - s_Corners[0], bottomEdge);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_29 = V_2;
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_30 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_30);
int32_t L_31 = 0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_32 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_33;
L_33 = Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline(L_29, L_32, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_34 = V_3;
float L_35;
L_35 = Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8_inline(L_33, L_34, NULL);
V_5 = L_35;
// var leftDot = Vector3.Dot(intersection - s_Corners[0], leftEdge);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_36 = V_2;
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_37 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_37);
int32_t L_38 = 0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_39 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_40;
L_40 = Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline(L_36, L_39, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_41 = V_4;
float L_42;
L_42 = Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8_inline(L_40, L_41, NULL);
// if (leftDot >= 0f && bottomDot >= 0f)
if ((!(((float)L_42) >= ((float)(0.0f)))))
{
goto IL_0153;
}
}
{
float L_43 = V_5;
if ((!(((float)L_43) >= ((float)(0.0f)))))
{
goto IL_0153;
}
}
{
// var topEdge = s_Corners[1] - s_Corners[2];
il2cpp_codegen_runtime_class_init_inline(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_44 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_44);
int32_t L_45 = 1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_46 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_45));
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_47 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_47);
int32_t L_48 = 2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_49 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_48));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_50;
L_50 = Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline(L_46, L_49, NULL);
V_6 = L_50;
// var rightEdge = s_Corners[3] - s_Corners[2];
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_51 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_51);
int32_t L_52 = 3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_53 = (L_51)->GetAt(static_cast<il2cpp_array_size_t>(L_52));
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_54 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_54);
int32_t L_55 = 2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_56 = (L_54)->GetAt(static_cast<il2cpp_array_size_t>(L_55));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_57;
L_57 = Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline(L_53, L_56, NULL);
V_7 = L_57;
// var topDot = Vector3.Dot(intersection - s_Corners[2], topEdge);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_58 = V_2;
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_59 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_59);
int32_t L_60 = 2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_61 = (L_59)->GetAt(static_cast<il2cpp_array_size_t>(L_60));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_62;
L_62 = Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline(L_58, L_61, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_63 = V_6;
float L_64;
L_64 = Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8_inline(L_62, L_63, NULL);
// var rightDot = Vector3.Dot(intersection - s_Corners[2], rightEdge);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_65 = V_2;
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_66 = ((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16;
NullCheck(L_66);
int32_t L_67 = 2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_68 = (L_66)->GetAt(static_cast<il2cpp_array_size_t>(L_67));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_69;
L_69 = Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline(L_65, L_68, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_70 = V_7;
float L_71;
L_71 = Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8_inline(L_69, L_70, NULL);
V_8 = L_71;
// if (topDot >= 0f && rightDot >= 0f)
if ((!(((float)L_64) >= ((float)(0.0f)))))
{
goto IL_0153;
}
}
{
float L_72 = V_8;
if ((!(((float)L_72) >= ((float)(0.0f)))))
{
goto IL_0153;
}
}
{
// worldPosition = intersection;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_73 = ___worldPosition2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_74 = V_2;
*(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)L_73 = L_74;
// distance = enter;
float* L_75 = ___distance3;
float L_76 = V_1;
*((float*)L_75) = (float)L_76;
// return true;
return (bool)1;
}
IL_0153:
{
// worldPosition = Vector3.zero;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_77 = ___worldPosition2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_78;
L_78 = Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83_inline(NULL);
*(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)L_77 = L_78;
// distance = 0f;
float* L_79 = ___distance3;
*((float*)L_79) = (float)(0.0f);
// return false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster__ctor_m171C45F821562D30B97D90B0258CC906FD837972 (TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mF6CAC69CE096CD58F1DC4EDEB0927A8A83524BCB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// LayerMask m_BlockingMask = -1;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0;
L_0 = LayerMask_op_Implicit_mDC9C22C4477684D460FCF25B1BFE6B54419FB922((-1), NULL);
__this->___m_BlockingMask_9 = L_0;
// QueryTriggerInteraction m_RaycastTriggerInteraction = QueryTriggerInteraction.Ignore;
__this->___m_RaycastTriggerInteraction_10 = 1;
// readonly RaycastHit[] m_OcclusionHits3D = new RaycastHit[k_MaxRaycastHits];
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_1 = (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8*)(RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8*)SZArrayNew(RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
__this->___m_OcclusionHits3D_13 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OcclusionHits3D_13), (void*)L_1);
// readonly RaycastHit2D[] m_OcclusionHits2D = new RaycastHit2D[k_MaxRaycastHits];
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_2 = (RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7*)(RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7*)SZArrayNew(RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
__this->___m_OcclusionHits2D_14 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OcclusionHits2D_14), (void*)L_2);
// readonly List<RaycastHitData> m_RaycastResultsCache = new List<RaycastHitData>();
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* L_3 = (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F*)il2cpp_codegen_object_new(List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F_il2cpp_TypeInfo_var);
List_1__ctor_mF6CAC69CE096CD58F1DC4EDEB0927A8A83524BCB(L_3, /*hidden argument*/List_1__ctor_mF6CAC69CE096CD58F1DC4EDEB0927A8A83524BCB_RuntimeMethod_var);
__this->___m_RaycastResultsCache_17 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RaycastResultsCache_17), (void*)L_3);
BaseRaycaster__ctor_m1B6A963368E54C1E450BE15FAF1AE082142A1683(__this, NULL);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceGraphicRaycaster__cctor_m47A6ED8F4ADEBAC44E2F35E923D467EB7D23FBCF (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mF6CAC69CE096CD58F1DC4EDEB0927A8A83524BCB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static readonly RaycastHitComparer s_RaycastHitComparer = new RaycastHitComparer();
RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F* L_0 = (RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F*)il2cpp_codegen_object_new(RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F_il2cpp_TypeInfo_var);
RaycastHitComparer__ctor_m3738852194278662207000E744F68BCA0B6C5C59(L_0, /*hidden argument*/NULL);
((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_RaycastHitComparer_15 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_RaycastHitComparer_15), (void*)L_0);
// static readonly Vector3[] s_Corners = new Vector3[4];
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_1 = (Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C*)(Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C*)SZArrayNew(Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C_il2cpp_TypeInfo_var, (uint32_t)4);
((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_Corners_16), (void*)L_1);
// static readonly List<RaycastHitData> s_SortedGraphics = new List<RaycastHitData>();
List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* L_2 = (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F*)il2cpp_codegen_object_new(List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F_il2cpp_TypeInfo_var);
List_1__ctor_mF6CAC69CE096CD58F1DC4EDEB0927A8A83524BCB(L_2, /*hidden argument*/List_1__ctor_mF6CAC69CE096CD58F1DC4EDEB0927A8A83524BCB_RuntimeMethod_var);
((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_SortedGraphics_18 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_StaticFields*)il2cpp_codegen_static_fields_for(TrackedDeviceGraphicRaycaster_t10211666BB4A468E839EEFBDFEC7D5AAB4555149_il2cpp_TypeInfo_var))->___s_SortedGraphics_18), (void*)L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData
IL2CPP_EXTERN_C void RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshal_pinvoke(const RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD& unmarshaled, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CgraphicU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<graphic>k__BackingField' of type 'RaycastHitData': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CgraphicU3Ek__BackingField_0Exception, NULL);
}
IL2CPP_EXTERN_C void RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshal_pinvoke_back(const RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshaled_pinvoke& marshaled, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD& unmarshaled)
{
Exception_t* ___U3CgraphicU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<graphic>k__BackingField' of type 'RaycastHitData': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CgraphicU3Ek__BackingField_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData
IL2CPP_EXTERN_C void RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshal_pinvoke_cleanup(RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData
IL2CPP_EXTERN_C void RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshal_com(const RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD& unmarshaled, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshaled_com& marshaled)
{
Exception_t* ___U3CgraphicU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<graphic>k__BackingField' of type 'RaycastHitData': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CgraphicU3Ek__BackingField_0Exception, NULL);
}
IL2CPP_EXTERN_C void RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshal_com_back(const RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshaled_com& marshaled, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD& unmarshaled)
{
Exception_t* ___U3CgraphicU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<graphic>k__BackingField' of type 'RaycastHitData': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CgraphicU3Ek__BackingField_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData
IL2CPP_EXTERN_C void RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshal_com_cleanup(RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::.ctor(UnityEngine.UI.Graphic,UnityEngine.Vector3,UnityEngine.Vector2,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitData__ctor_m46C10CA0C3686A7DFC808CC5E995563E3E6E0900 (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* ___graphic0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldHitPosition1, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition2, float ___distance3, int32_t ___displayIndex4, const RuntimeMethod* method)
{
{
// this.graphic = graphic;
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_0 = ___graphic0;
__this->___U3CgraphicU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CgraphicU3Ek__BackingField_0), (void*)L_0);
// this.worldHitPosition = worldHitPosition;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___worldHitPosition1;
__this->___U3CworldHitPositionU3Ek__BackingField_1 = L_1;
// this.screenPosition = screenPosition;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___screenPosition2;
__this->___U3CscreenPositionU3Ek__BackingField_2 = L_2;
// this.distance = distance;
float L_3 = ___distance3;
__this->___U3CdistanceU3Ek__BackingField_3 = L_3;
// this.displayIndex = displayIndex;
int32_t L_4 = ___displayIndex4;
__this->___U3CdisplayIndexU3Ek__BackingField_4 = L_4;
// }
return;
}
}
IL2CPP_EXTERN_C void RaycastHitData__ctor_m46C10CA0C3686A7DFC808CC5E995563E3E6E0900_AdjustorThunk (RuntimeObject* __this, Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* ___graphic0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldHitPosition1, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition2, float ___distance3, int32_t ___displayIndex4, const RuntimeMethod* method)
{
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD*>(__this + _offset);
RaycastHitData__ctor_m46C10CA0C3686A7DFC808CC5E995563E3E6E0900(_thisAdjusted, ___graphic0, ___worldHitPosition1, ___screenPosition2, ___distance3, ___displayIndex4, method);
}
// UnityEngine.UI.Graphic UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::get_graphic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* RaycastHitData_get_graphic_mD7D675E65B6B19526DEC71B273334796C44D7B88 (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method)
{
{
// public Graphic graphic { get; }
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_0 = __this->___U3CgraphicU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_EXTERN_C Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* RaycastHitData_get_graphic_mD7D675E65B6B19526DEC71B273334796C44D7B88_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD*>(__this + _offset);
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* _returnValue;
_returnValue = RaycastHitData_get_graphic_mD7D675E65B6B19526DEC71B273334796C44D7B88_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::get_worldHitPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 RaycastHitData_get_worldHitPosition_mA36CED27016B4C803EE9129A379C1052152D15F2 (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method)
{
{
// public Vector3 worldHitPosition { get; }
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CworldHitPositionU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_EXTERN_C Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 RaycastHitData_get_worldHitPosition_mA36CED27016B4C803EE9129A379C1052152D15F2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD*>(__this + _offset);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 _returnValue;
_returnValue = RaycastHitData_get_worldHitPosition_mA36CED27016B4C803EE9129A379C1052152D15F2_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::get_screenPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHitData_get_screenPosition_mAAA69CF11624FC7EA8667F228C640DEFCD6FB2AB (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method)
{
{
// public Vector2 screenPosition { get; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CscreenPositionU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHitData_get_screenPosition_mAAA69CF11624FC7EA8667F228C640DEFCD6FB2AB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = RaycastHitData_get_screenPosition_mAAA69CF11624FC7EA8667F228C640DEFCD6FB2AB_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::get_distance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHitData_get_distance_mC2299A0A61CCB9C17D93D532D8DE4109C8291EC0 (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method)
{
{
// public float distance { get; }
float L_0 = __this->___U3CdistanceU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_EXTERN_C float RaycastHitData_get_distance_mC2299A0A61CCB9C17D93D532D8DE4109C8291EC0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD*>(__this + _offset);
float _returnValue;
_returnValue = RaycastHitData_get_distance_mC2299A0A61CCB9C17D93D532D8DE4109C8291EC0_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData::get_displayIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RaycastHitData_get_displayIndex_mA3B5A6BD21766DBCE8EA33251BF23FDE7DFE0C50 (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method)
{
{
// public int displayIndex { get; }
int32_t L_0 = __this->___U3CdisplayIndexU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t RaycastHitData_get_displayIndex_mA3B5A6BD21766DBCE8EA33251BF23FDE7DFE0C50_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD*>(__this + _offset);
int32_t _returnValue;
_returnValue = RaycastHitData_get_displayIndex_mA3B5A6BD21766DBCE8EA33251BF23FDE7DFE0C50_inline(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitComparer::Compare(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData,UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RaycastHitComparer_Compare_mCC40F8BCA5482E5FB84B5F53618FE0885B8B8A31 (RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F* __this, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD ___a0, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD ___b1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// => b.graphic.depth.CompareTo(a.graphic.depth);
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_0;
L_0 = RaycastHitData_get_graphic_mD7D675E65B6B19526DEC71B273334796C44D7B88_inline((&___b1), NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = Graphic_get_depth_m16A82C751AE0497941048A3715D48A1066939460(L_0, NULL);
V_0 = L_1;
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_2;
L_2 = RaycastHitData_get_graphic_mD7D675E65B6B19526DEC71B273334796C44D7B88_inline((&___a0), NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = Graphic_get_depth_m16A82C751AE0497941048A3715D48A1066939460(L_2, NULL);
int32_t L_4;
L_4 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_0), L_3, NULL);
return L_4;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceGraphicRaycaster/RaycastHitComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitComparer__ctor_m3738852194278662207000E744F68BCA0B6C5C59 (RaycastHitComparer_tEB1BB66D92D6C7722C052F9F77D771620A40FA8F* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel
IL2CPP_EXTERN_C void TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshal_pinvoke(const TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8& unmarshaled, TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_ImplementationData_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'TrackedDeviceModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_1Exception, NULL);
}
IL2CPP_EXTERN_C void TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshal_pinvoke_back(const TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshaled_pinvoke& marshaled, TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8& unmarshaled)
{
Exception_t* ___m_ImplementationData_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'TrackedDeviceModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel
IL2CPP_EXTERN_C void TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshal_pinvoke_cleanup(TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel
IL2CPP_EXTERN_C void TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshal_com(const TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8& unmarshaled, TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshaled_com& marshaled)
{
Exception_t* ___m_ImplementationData_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'TrackedDeviceModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_1Exception, NULL);
}
IL2CPP_EXTERN_C void TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshal_com_back(const TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshaled_com& marshaled, TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8& unmarshaled)
{
Exception_t* ___m_ImplementationData_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ImplementationData' of type 'TrackedDeviceModel'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ImplementationData_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel
IL2CPP_EXTERN_C void TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshal_com_cleanup(TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8_marshaled_com& marshaled)
{
}
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_implementationData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC TrackedDeviceModel_get_implementationData_m95202DC252DDE53560803CED892DDD834686B749 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// internal ImplementationData implementationData => m_ImplementationData;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC L_0 = __this->___m_ImplementationData_1;
return L_0;
}
}
IL2CPP_EXTERN_C ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC TrackedDeviceModel_get_implementationData_m95202DC252DDE53560803CED892DDD834686B749_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC _returnValue;
_returnValue = TrackedDeviceModel_get_implementationData_m95202DC252DDE53560803CED892DDD834686B749_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_pointerId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackedDeviceModel_get_pointerId_m7AEFEA8657A653D0968500004E01A9B8672464DD (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public int pointerId { get; }
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t TrackedDeviceModel_get_pointerId_m7AEFEA8657A653D0968500004E01A9B8672464DD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
int32_t _returnValue;
_returnValue = TrackedDeviceModel_get_pointerId_m7AEFEA8657A653D0968500004E01A9B8672464DD_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_maxRaycastDistance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TrackedDeviceModel_get_maxRaycastDistance_m7D59D0EB9A5D126EB753972241962421E4A41E7A (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public float maxRaycastDistance { get; set; }
float L_0 = __this->___U3CmaxRaycastDistanceU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_EXTERN_C float TrackedDeviceModel_get_maxRaycastDistance_m7D59D0EB9A5D126EB753972241962421E4A41E7A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
float _returnValue;
_returnValue = TrackedDeviceModel_get_maxRaycastDistance_m7D59D0EB9A5D126EB753972241962421E4A41E7A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_maxRaycastDistance(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_maxRaycastDistance_m6EC3C19F85D167D4BFC03883616522D37BFB2648 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float maxRaycastDistance { get; set; }
float L_0 = ___value0;
__this->___U3CmaxRaycastDistanceU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_set_maxRaycastDistance_m6EC3C19F85D167D4BFC03883616522D37BFB2648_AdjustorThunk (RuntimeObject* __this, float ___value0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_set_maxRaycastDistance_m6EC3C19F85D167D4BFC03883616522D37BFB2648_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_select()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackedDeviceModel_get_select_mF73B603383F4D45021CD0AAFC29324A54AC8D55D (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_SelectDown;
bool L_0 = __this->___m_SelectDown_4;
return L_0;
}
}
IL2CPP_EXTERN_C bool TrackedDeviceModel_get_select_mF73B603383F4D45021CD0AAFC29324A54AC8D55D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
bool _returnValue;
_returnValue = TrackedDeviceModel_get_select_mF73B603383F4D45021CD0AAFC29324A54AC8D55D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_select(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_select_m9513F69D1C9E4B312EC23820BFC81CA7030E6F02 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* G_B3_1 = NULL;
int32_t G_B2_0 = 0;
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* G_B2_1 = NULL;
int32_t G_B4_0 = 0;
int32_t G_B4_1 = 0;
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* G_B4_2 = NULL;
{
// if (m_SelectDown != value)
bool L_0 = __this->___m_SelectDown_4;
bool L_1 = ___value0;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_002b;
}
}
{
// m_SelectDown = value;
bool L_2 = ___value0;
__this->___m_SelectDown_4 = L_2;
// selectDelta |= value ? ButtonDeltaState.Pressed : ButtonDeltaState.Released;
int32_t L_3;
L_3 = TrackedDeviceModel_get_selectDelta_m3F6B5717A4F6C2DC505EA92A11846820A14B35FC_inline(__this, NULL);
bool L_4 = ___value0;
G_B2_0 = L_3;
G_B2_1 = __this;
if (L_4)
{
G_B3_0 = L_3;
G_B3_1 = __this;
goto IL_001d;
}
}
{
G_B4_0 = 2;
G_B4_1 = G_B2_0;
G_B4_2 = G_B2_1;
goto IL_001e;
}
IL_001d:
{
G_B4_0 = 1;
G_B4_1 = G_B3_0;
G_B4_2 = G_B3_1;
}
IL_001e:
{
TrackedDeviceModel_set_selectDelta_m61649F57176681CCBD64C07F4A4F0F3974DECE4C_inline(G_B4_2, ((int32_t)((int32_t)G_B4_1|(int32_t)G_B4_0)), NULL);
// changedThisFrame = true;
TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_inline(__this, (bool)1, NULL);
}
IL_002b:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_set_select_m9513F69D1C9E4B312EC23820BFC81CA7030E6F02_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_set_select_m9513F69D1C9E4B312EC23820BFC81CA7030E6F02(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_selectDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackedDeviceModel_get_selectDelta_m3F6B5717A4F6C2DC505EA92A11846820A14B35FC (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public ButtonDeltaState selectDelta { get; private set; }
int32_t L_0 = __this->___U3CselectDeltaU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t TrackedDeviceModel_get_selectDelta_m3F6B5717A4F6C2DC505EA92A11846820A14B35FC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
int32_t _returnValue;
_returnValue = TrackedDeviceModel_get_selectDelta_m3F6B5717A4F6C2DC505EA92A11846820A14B35FC_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_selectDelta(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_selectDelta_m61649F57176681CCBD64C07F4A4F0F3974DECE4C (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public ButtonDeltaState selectDelta { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CselectDeltaU3Ek__BackingField_5 = L_0;
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_set_selectDelta_m61649F57176681CCBD64C07F4A4F0F3974DECE4C_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_set_selectDelta_m61649F57176681CCBD64C07F4A4F0F3974DECE4C_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_changedThisFrame()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackedDeviceModel_get_changedThisFrame_m4C3C35C841B822ABB3D5DEE90F26FA74D8EE9FE1 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = __this->___U3CchangedThisFrameU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_EXTERN_C bool TrackedDeviceModel_get_changedThisFrame_m4C3C35C841B822ABB3D5DEE90F26FA74D8EE9FE1_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
bool _returnValue;
_returnValue = TrackedDeviceModel_get_changedThisFrame_m4C3C35C841B822ABB3D5DEE90F26FA74D8EE9FE1_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_changedThisFrame(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = ___value0;
__this->___U3CchangedThisFrameU3Ek__BackingField_6 = L_0;
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector3 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 TrackedDeviceModel_get_position_mA1B101753B4DE6F7142EE4DB49487104019DF4BE (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_Position;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___m_Position_7;
return L_0;
}
}
IL2CPP_EXTERN_C Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 TrackedDeviceModel_get_position_mA1B101753B4DE6F7142EE4DB49487104019DF4BE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 _returnValue;
_returnValue = TrackedDeviceModel_get_position_mA1B101753B4DE6F7142EE4DB49487104019DF4BE_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_position(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_position_mDB462484180081FA49D38E28ACAE1772E8F11442 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___value0, const RuntimeMethod* method)
{
{
// if (m_Position != value)
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___m_Position_7;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___value0;
bool L_2;
L_2 = Vector3_op_Inequality_m6A7FB1C9E9DE194708997BFA24C6E238D92D908E_inline(L_0, L_1, NULL);
if (!L_2)
{
goto IL_001c;
}
}
{
// m_Position = value;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___value0;
__this->___m_Position_7 = L_3;
// changedThisFrame = true;
TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_inline(__this, (bool)1, NULL);
}
IL_001c:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_set_position_mDB462484180081FA49D38E28ACAE1772E8F11442_AdjustorThunk (RuntimeObject* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___value0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_set_position_mDB462484180081FA49D38E28ACAE1772E8F11442(_thisAdjusted, ___value0, method);
}
// UnityEngine.Quaternion UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_orientation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 TrackedDeviceModel_get_orientation_m870C73AC6F4686930F729F7BDBF5812D7BB0CBCA (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_Orientation;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0 = __this->___m_Orientation_8;
return L_0;
}
}
IL2CPP_EXTERN_C Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 TrackedDeviceModel_get_orientation_m870C73AC6F4686930F729F7BDBF5812D7BB0CBCA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 _returnValue;
_returnValue = TrackedDeviceModel_get_orientation_m870C73AC6F4686930F729F7BDBF5812D7BB0CBCA_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_orientation(UnityEngine.Quaternion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_orientation_m1A0A17586D375B499F224DECEC2BB19721EF05FA (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___value0, const RuntimeMethod* method)
{
{
// if (m_Orientation != value)
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0 = __this->___m_Orientation_8;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_1 = ___value0;
bool L_2;
L_2 = Quaternion_op_Inequality_mC1922F160B14F6F404E46FFCC10B282D913BE354_inline(L_0, L_1, NULL);
if (!L_2)
{
goto IL_001c;
}
}
{
// m_Orientation = value;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_3 = ___value0;
__this->___m_Orientation_8 = L_3;
// changedThisFrame = true;
TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_inline(__this, (bool)1, NULL);
}
IL_001c:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_set_orientation_m1A0A17586D375B499F224DECEC2BB19721EF05FA_AdjustorThunk (RuntimeObject* __this, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___value0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_set_orientation_m1A0A17586D375B499F224DECEC2BB19721EF05FA(_thisAdjusted, ___value0, method);
}
// System.Collections.Generic.List`1<UnityEngine.Vector3> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_raycastPoints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* TrackedDeviceModel_get_raycastPoints_m3087C3A9A899CDA89FABE930AB7CD63A9856E07B (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_RaycastPoints;
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_0 = __this->___m_RaycastPoints_9;
return L_0;
}
}
IL2CPP_EXTERN_C List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* TrackedDeviceModel_get_raycastPoints_m3087C3A9A899CDA89FABE930AB7CD63A9856E07B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* _returnValue;
_returnValue = TrackedDeviceModel_get_raycastPoints_m3087C3A9A899CDA89FABE930AB7CD63A9856E07B_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_raycastPoints(System.Collections.Generic.List`1<UnityEngine.Vector3>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_raycastPoints_m582BE854A82211D8DC757CF5A79445D1DC464C3A (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// changedThisFrame |= m_RaycastPoints.Count != value.Count;
bool L_0;
L_0 = TrackedDeviceModel_get_changedThisFrame_m4C3C35C841B822ABB3D5DEE90F26FA74D8EE9FE1_inline(__this, NULL);
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_1 = __this->___m_RaycastPoints_9;
NullCheck(L_1);
int32_t L_2;
L_2 = List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_inline(L_1, List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_RuntimeMethod_var);
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_3 = ___value0;
NullCheck(L_3);
int32_t L_4;
L_4 = List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_inline(L_3, List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_RuntimeMethod_var);
TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_inline(__this, (bool)((int32_t)((int32_t)L_0|(int32_t)((((int32_t)((((int32_t)L_2) == ((int32_t)L_4))? 1 : 0)) == ((int32_t)0))? 1 : 0))), NULL);
// m_RaycastPoints = value;
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_5 = ___value0;
__this->___m_RaycastPoints_9 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RaycastPoints_9), (void*)L_5);
// }
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_set_raycastPoints_m582BE854A82211D8DC757CF5A79445D1DC464C3A_AdjustorThunk (RuntimeObject* __this, List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___value0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_set_raycastPoints_m582BE854A82211D8DC757CF5A79445D1DC464C3A(_thisAdjusted, ___value0, method);
}
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_currentRaycast()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 TrackedDeviceModel_get_currentRaycast_mAF58714250F6AB9E34888B19F2449EF2D0FA94E4 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public RaycastResult currentRaycast { get; private set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CcurrentRaycastU3Ek__BackingField_10;
return L_0;
}
}
IL2CPP_EXTERN_C RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 TrackedDeviceModel_get_currentRaycast_mAF58714250F6AB9E34888B19F2449EF2D0FA94E4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 _returnValue;
_returnValue = TrackedDeviceModel_get_currentRaycast_mAF58714250F6AB9E34888B19F2449EF2D0FA94E4_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_currentRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_currentRaycast_mB605A8C85EFDAEDC5D8A39468CD0933E54F50C73 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult currentRaycast { get; private set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___value0;
__this->___U3CcurrentRaycastU3Ek__BackingField_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CcurrentRaycastU3Ek__BackingField_10))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CcurrentRaycastU3Ek__BackingField_10))->___module_1), (void*)NULL);
#endif
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_set_currentRaycast_mB605A8C85EFDAEDC5D8A39468CD0933E54F50C73_AdjustorThunk (RuntimeObject* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_set_currentRaycast_mB605A8C85EFDAEDC5D8A39468CD0933E54F50C73_inline(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_currentRaycastEndpointIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackedDeviceModel_get_currentRaycastEndpointIndex_m2CF4F264EBDDE6EAE7285ED58636F55FB1FCAA9C (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public int currentRaycastEndpointIndex { get; private set; }
int32_t L_0 = __this->___U3CcurrentRaycastEndpointIndexU3Ek__BackingField_11;
return L_0;
}
}
IL2CPP_EXTERN_C int32_t TrackedDeviceModel_get_currentRaycastEndpointIndex_m2CF4F264EBDDE6EAE7285ED58636F55FB1FCAA9C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
int32_t _returnValue;
_returnValue = TrackedDeviceModel_get_currentRaycastEndpointIndex_m2CF4F264EBDDE6EAE7285ED58636F55FB1FCAA9C_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_currentRaycastEndpointIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_currentRaycastEndpointIndex_m590E66F5A9635363FE8E140E0F9CC28328AEC2E1 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int currentRaycastEndpointIndex { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CcurrentRaycastEndpointIndexU3Ek__BackingField_11 = L_0;
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_set_currentRaycastEndpointIndex_m590E66F5A9635363FE8E140E0F9CC28328AEC2E1_AdjustorThunk (RuntimeObject* __this, int32_t ___value0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_set_currentRaycastEndpointIndex_m590E66F5A9635363FE8E140E0F9CC28328AEC2E1_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_raycastLayerMask()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB TrackedDeviceModel_get_raycastLayerMask_mB1E60DDB72A91FD2A65B00356D485513174C60AF (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_RaycastLayerMask;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = __this->___m_RaycastLayerMask_12;
return L_0;
}
}
IL2CPP_EXTERN_C LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB TrackedDeviceModel_get_raycastLayerMask_mB1E60DDB72A91FD2A65B00356D485513174C60AF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB _returnValue;
_returnValue = TrackedDeviceModel_get_raycastLayerMask_mB1E60DDB72A91FD2A65B00356D485513174C60AF_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_raycastLayerMask(UnityEngine.LayerMask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_raycastLayerMask_m15984C257F236CA50C3131EE3A6AA7814BAB715B (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___value0, const RuntimeMethod* method)
{
{
// if (m_RaycastLayerMask != value)
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = __this->___m_RaycastLayerMask_12;
int32_t L_1;
L_1 = LayerMask_op_Implicit_m5D697E103A7CB05CADCED9F90FD4F6BAE955E763(L_0, NULL);
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_2 = ___value0;
int32_t L_3;
L_3 = LayerMask_op_Implicit_m5D697E103A7CB05CADCED9F90FD4F6BAE955E763(L_2, NULL);
if ((((int32_t)L_1) == ((int32_t)L_3)))
{
goto IL_0021;
}
}
{
// changedThisFrame = true;
TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_inline(__this, (bool)1, NULL);
// m_RaycastLayerMask = value;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_4 = ___value0;
__this->___m_RaycastLayerMask_12 = L_4;
}
IL_0021:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_set_raycastLayerMask_m15984C257F236CA50C3131EE3A6AA7814BAB715B_AdjustorThunk (RuntimeObject* __this, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___value0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_set_raycastLayerMask_m15984C257F236CA50C3131EE3A6AA7814BAB715B(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::get_scrollDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TrackedDeviceModel_get_scrollDelta_mCADE5E90334C1EE03593B0BCB7E21D55D2098E87 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_ScrollDelta;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_ScrollDelta_13;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TrackedDeviceModel_get_scrollDelta_mCADE5E90334C1EE03593B0BCB7E21D55D2098E87_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = TrackedDeviceModel_get_scrollDelta_mCADE5E90334C1EE03593B0BCB7E21D55D2098E87_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::set_scrollDelta(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_scrollDelta_m961E99EA067FBCA97B2E8BC805BF1D608DF95014 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// if (m_ScrollDelta != value)
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_ScrollDelta_13;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___value0;
bool L_2;
L_2 = Vector2_op_Inequality_mCF3935E28AC7B30B279F07F9321CC56718E1311A_inline(L_0, L_1, NULL);
if (!L_2)
{
goto IL_001c;
}
}
{
// m_ScrollDelta = value;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___value0;
__this->___m_ScrollDelta_13 = L_3;
// changedThisFrame = true;
TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_inline(__this, (bool)1, NULL);
}
IL_001c:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_set_scrollDelta_m961E99EA067FBCA97B2E8BC805BF1D608DF95014_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_set_scrollDelta_m961E99EA067FBCA97B2E8BC805BF1D608DF95014(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel__ctor_m2128F49761ECD982EEC5C86F0B18C9991A3ADE2E (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, int32_t ___pointerId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC54E2BCBE43279A96FC082F5CDE2D76388BD8F9C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public TrackedDeviceModel(int pointerId) : this()
il2cpp_codegen_initobj(__this, sizeof(TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8));
// this.pointerId = pointerId;
int32_t L_0 = ___pointerId0;
__this->___U3CpointerIdU3Ek__BackingField_2 = L_0;
// maxRaycastDistance = k_DefaultMaxRaycastDistance;
TrackedDeviceModel_set_maxRaycastDistance_m6EC3C19F85D167D4BFC03883616522D37BFB2648_inline(__this, (1000.0f), NULL);
// m_RaycastPoints = new List<Vector3>();
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_1 = (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B*)il2cpp_codegen_object_new(List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B_il2cpp_TypeInfo_var);
List_1__ctor_mC54E2BCBE43279A96FC082F5CDE2D76388BD8F9C(L_1, /*hidden argument*/List_1__ctor_mC54E2BCBE43279A96FC082F5CDE2D76388BD8F9C_RuntimeMethod_var);
__this->___m_RaycastPoints_9 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RaycastPoints_9), (void*)L_1);
// m_ImplementationData = new ImplementationData();
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_2 = (&__this->___m_ImplementationData_1);
il2cpp_codegen_initobj(L_2, sizeof(ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC));
// Reset();
TrackedDeviceModel_Reset_m29196B36856087C2404D20AF734005C0BB6B0AA9(__this, (bool)1, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel__ctor_m2128F49761ECD982EEC5C86F0B18C9991A3ADE2E_AdjustorThunk (RuntimeObject* __this, int32_t ___pointerId0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel__ctor_m2128F49761ECD982EEC5C86F0B18C9991A3ADE2E(_thisAdjusted, ___pointerId0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::Reset(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_Reset_m29196B36856087C2404D20AF734005C0BB6B0AA9 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, bool ___resetImplementation0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m455780C5A45049F9BDC25EAD3BA10A681D16385D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// m_Orientation = Quaternion.identity;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0;
L_0 = Quaternion_get_identity_mB9CAEEB21BC81352CBF32DB9664BFC06FA7EA27B_inline(NULL);
__this->___m_Orientation_8 = L_0;
// m_Position = Vector3.zero;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
L_1 = Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83_inline(NULL);
__this->___m_Position_7 = L_1;
// changedThisFrame = false;
TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_inline(__this, (bool)0, NULL);
// m_SelectDown = false;
__this->___m_SelectDown_4 = (bool)0;
// selectDelta = ButtonDeltaState.NoChange;
TrackedDeviceModel_set_selectDelta_m61649F57176681CCBD64C07F4A4F0F3974DECE4C_inline(__this, 0, NULL);
// m_RaycastPoints.Clear();
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_2 = __this->___m_RaycastPoints_9;
NullCheck(L_2);
List_1_Clear_m455780C5A45049F9BDC25EAD3BA10A681D16385D_inline(L_2, List_1_Clear_m455780C5A45049F9BDC25EAD3BA10A681D16385D_RuntimeMethod_var);
// currentRaycastEndpointIndex = 0;
TrackedDeviceModel_set_currentRaycastEndpointIndex_m590E66F5A9635363FE8E140E0F9CC28328AEC2E1_inline(__this, 0, NULL);
// m_RaycastLayerMask = Physics.DefaultRaycastLayers;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_3;
L_3 = LayerMask_op_Implicit_mDC9C22C4477684D460FCF25B1BFE6B54419FB922(((int32_t)-5), NULL);
__this->___m_RaycastLayerMask_12 = L_3;
// m_ScrollDelta = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
L_4 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
__this->___m_ScrollDelta_13 = L_4;
// if (resetImplementation)
bool L_5 = ___resetImplementation0;
if (!L_5)
{
goto IL_0063;
}
}
{
// m_ImplementationData.Reset();
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_6 = (&__this->___m_ImplementationData_1);
ImplementationData_Reset_m78CB6F5BD992AECD4D7D58E5880CFC0DF4DBBC55(L_6, NULL);
}
IL_0063:
{
// }
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_Reset_m29196B36856087C2404D20AF734005C0BB6B0AA9_AdjustorThunk (RuntimeObject* __this, bool ___resetImplementation0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_Reset_m29196B36856087C2404D20AF734005C0BB6B0AA9(_thisAdjusted, ___resetImplementation0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::OnFrameFinished()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_OnFrameFinished_m0CB3B1A5BB3236A786E674AEE6E740951AC59184 (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// selectDelta = ButtonDeltaState.NoChange;
TrackedDeviceModel_set_selectDelta_m61649F57176681CCBD64C07F4A4F0F3974DECE4C_inline(__this, 0, NULL);
// m_ScrollDelta = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
L_0 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
__this->___m_ScrollDelta_13 = L_0;
// changedThisFrame = false;
TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_inline(__this, (bool)0, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_OnFrameFinished_m0CB3B1A5BB3236A786E674AEE6E740951AC59184_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_OnFrameFinished_m0CB3B1A5BB3236A786E674AEE6E740951AC59184(_thisAdjusted, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::CopyTo(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_CopyTo_m077D1C3D2AB67EE3E95101C04E8ABDFD5D82D56B (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* ___eventData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// eventData.rayPoints = m_RaycastPoints;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_0 = ___eventData0;
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_1 = __this->___m_RaycastPoints_9;
NullCheck(L_0);
TrackedDeviceEventData_set_rayPoints_m50DE65136BB92487876DC7FA3E8FD98AB95CDE04_inline(L_0, L_1, NULL);
// eventData.layerMask = m_RaycastLayerMask;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_2 = ___eventData0;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_3 = __this->___m_RaycastLayerMask_12;
NullCheck(L_2);
TrackedDeviceEventData_set_layerMask_mE98A92C0797C746EE0692EA41121D862C279D76F_inline(L_2, L_3, NULL);
// eventData.pointerId = pointerId;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_4 = ___eventData0;
int32_t L_5;
L_5 = TrackedDeviceModel_get_pointerId_m7AEFEA8657A653D0968500004E01A9B8672464DD_inline(__this, NULL);
NullCheck(L_4);
PointerEventData_set_pointerId_m5B5FF54AB1DE7BD4454022A7C0535C618049BD9B_inline(L_4, L_5, NULL);
// eventData.scrollDelta = m_ScrollDelta;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_6 = ___eventData0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = __this->___m_ScrollDelta_13;
NullCheck(L_6);
PointerEventData_set_scrollDelta_m58007CAE9A9B333B82C36B9E5431FBD926CB556C_inline(L_6, L_7, NULL);
// eventData.pointerEnter = m_ImplementationData.pointerTarget;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_8 = ___eventData0;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_9 = (&__this->___m_ImplementationData_1);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_10;
L_10 = ImplementationData_get_pointerTarget_mB2D4D091AC3BC5E937FB7252047DA33AC409FAEB_inline(L_9, NULL);
NullCheck(L_8);
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_8, L_10, NULL);
// eventData.dragging = m_ImplementationData.isDragging;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_11 = ___eventData0;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_12 = (&__this->___m_ImplementationData_1);
bool L_13;
L_13 = ImplementationData_get_isDragging_mEE3BF283FC9C5235D15708D18BE89E06319F781D_inline(L_12, NULL);
NullCheck(L_11);
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_11, L_13, NULL);
// eventData.clickTime = m_ImplementationData.pressedTime;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_14 = ___eventData0;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_15 = (&__this->___m_ImplementationData_1);
float L_16;
L_16 = ImplementationData_get_pressedTime_m154FBADD86CD746C703BF37003C64C428CADAC35_inline(L_15, NULL);
NullCheck(L_14);
PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline(L_14, L_16, NULL);
// eventData.position = m_ImplementationData.position;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_17 = ___eventData0;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_18 = (&__this->___m_ImplementationData_1);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19;
L_19 = ImplementationData_get_position_m421FC9657A48CBED5AD985B2D7905BF7B06CA446_inline(L_18, NULL);
NullCheck(L_17);
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_17, L_19, NULL);
// eventData.pressPosition = m_ImplementationData.pressedPosition;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_20 = ___eventData0;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_21 = (&__this->___m_ImplementationData_1);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22;
L_22 = ImplementationData_get_pressedPosition_mE3E33C31F62A5ABF18461C479CA7DA9D8DB32262_inline(L_21, NULL);
NullCheck(L_20);
PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline(L_20, L_22, NULL);
// eventData.pointerPressRaycast = m_ImplementationData.pressedRaycast;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_23 = ___eventData0;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_24 = (&__this->___m_ImplementationData_1);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_25;
L_25 = ImplementationData_get_pressedRaycast_mA355A412C26FAB49EA39F4DEFDA824465DFDE48E_inline(L_24, NULL);
NullCheck(L_23);
PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852_inline(L_23, L_25, NULL);
// eventData.pointerPress = m_ImplementationData.pressedGameObject;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_26 = ___eventData0;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_27 = (&__this->___m_ImplementationData_1);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_28;
L_28 = ImplementationData_get_pressedGameObject_m81DA354AA04B9531100A8C8C6A61100493115CF5_inline(L_27, NULL);
NullCheck(L_26);
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_26, L_28, NULL);
// eventData.rawPointerPress = m_ImplementationData.pressedGameObjectRaw;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_29 = ___eventData0;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_30 = (&__this->___m_ImplementationData_1);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_31;
L_31 = ImplementationData_get_pressedGameObjectRaw_mE9702863BC33793FB5DE550F0789A9058F369A2C_inline(L_30, NULL);
NullCheck(L_29);
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_29, L_31, NULL);
// eventData.pointerDrag = m_ImplementationData.draggedGameObject;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_32 = ___eventData0;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_33 = (&__this->___m_ImplementationData_1);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_34;
L_34 = ImplementationData_get_draggedGameObject_mBD53214AA566627B15D7EA5F6080758FF95C1848_inline(L_33, NULL);
NullCheck(L_32);
PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline(L_32, L_34, NULL);
// eventData.hovered.Clear();
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_35 = ___eventData0;
NullCheck(L_35);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_36 = ((PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*)L_35)->___hovered_10;
NullCheck(L_36);
List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline(L_36, List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
// eventData.hovered.AddRange(m_ImplementationData.hoverTargets);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_37 = ___eventData0;
NullCheck(L_37);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_38 = ((PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*)L_37)->___hovered_10;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_39 = (&__this->___m_ImplementationData_1);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_40;
L_40 = ImplementationData_get_hoverTargets_m49C9E4E462CC1064607FA5A3BA0EF5AB0360EE0D_inline(L_39, NULL);
NullCheck(L_38);
List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C(L_38, L_40, List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_CopyTo_m077D1C3D2AB67EE3E95101C04E8ABDFD5D82D56B_AdjustorThunk (RuntimeObject* __this, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* ___eventData0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_CopyTo_m077D1C3D2AB67EE3E95101C04E8ABDFD5D82D56B(_thisAdjusted, ___eventData0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel::CopyFrom(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDeviceModel_CopyFrom_m2A29E70045067F467379D43A4AFB7CDCAFC1786B (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* ___eventData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// m_ImplementationData.pointerTarget = eventData.pointerEnter;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_0 = (&__this->___m_ImplementationData_1);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_1 = ___eventData0;
NullCheck(L_1);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
L_2 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_1, NULL);
ImplementationData_set_pointerTarget_m6A49B7736E5B50E934D4D998648ED2AB2D69C582_inline(L_0, L_2, NULL);
// m_ImplementationData.isDragging = eventData.dragging;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_3 = (&__this->___m_ImplementationData_1);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_4 = ___eventData0;
NullCheck(L_4);
bool L_5;
L_5 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_4, NULL);
ImplementationData_set_isDragging_m315511026FE53448151B19E47E4902F90E819BC2_inline(L_3, L_5, NULL);
// m_ImplementationData.pressedTime = eventData.clickTime;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_6 = (&__this->___m_ImplementationData_1);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_7 = ___eventData0;
NullCheck(L_7);
float L_8;
L_8 = PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline(L_7, NULL);
ImplementationData_set_pressedTime_m0EB8960EE81F4D82A71AAC719999CE01D64DCDA6_inline(L_6, L_8, NULL);
// m_ImplementationData.position = eventData.position;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_9 = (&__this->___m_ImplementationData_1);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_10 = ___eventData0;
NullCheck(L_10);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
L_11 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_10, NULL);
ImplementationData_set_position_m82C559B25F9B9515CCAE8FA900B78A2072CD3F7E_inline(L_9, L_11, NULL);
// m_ImplementationData.pressedPosition = eventData.pressPosition;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_12 = (&__this->___m_ImplementationData_1);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_13 = ___eventData0;
NullCheck(L_13);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14;
L_14 = PointerEventData_get_pressPosition_m8A6788DA6BF81481E4EBCBA2ED1838F786EBAE63_inline(L_13, NULL);
ImplementationData_set_pressedPosition_m9BBCEC0224F0FCB1572F06B61A01074A0CAD5DCA_inline(L_12, L_14, NULL);
// m_ImplementationData.pressedRaycast = eventData.pointerPressRaycast;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_15 = (&__this->___m_ImplementationData_1);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_16 = ___eventData0;
NullCheck(L_16);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_17;
L_17 = PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D_inline(L_16, NULL);
ImplementationData_set_pressedRaycast_mB79CE5436DFBFAB118F234D25B7D49E72582D9EB_inline(L_15, L_17, NULL);
// m_ImplementationData.pressedGameObject = eventData.pointerPress;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_18 = (&__this->___m_ImplementationData_1);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_19 = ___eventData0;
NullCheck(L_19);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_20;
L_20 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_19, NULL);
ImplementationData_set_pressedGameObject_mF87125F8EFFBE3ED0609B5C67EA86704715996FE_inline(L_18, L_20, NULL);
// m_ImplementationData.pressedGameObjectRaw = eventData.rawPointerPress;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_21 = (&__this->___m_ImplementationData_1);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_22 = ___eventData0;
NullCheck(L_22);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_23;
L_23 = PointerEventData_get_rawPointerPress_m8B7A6235A116E26EDDBBDB24473BE0F9634C7B71_inline(L_22, NULL);
ImplementationData_set_pressedGameObjectRaw_m3AEB4F85F771C297EAE30B1CAAFDD990446624B4_inline(L_21, L_23, NULL);
// m_ImplementationData.draggedGameObject = eventData.pointerDrag;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_24 = (&__this->___m_ImplementationData_1);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_25 = ___eventData0;
NullCheck(L_25);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_26;
L_26 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_25, NULL);
ImplementationData_set_draggedGameObject_m977BE3A90025D2F50AC30A321D30245423B9CA6A_inline(L_24, L_26, NULL);
// m_ImplementationData.hoverTargets.Clear();
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_27 = (&__this->___m_ImplementationData_1);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_28;
L_28 = ImplementationData_get_hoverTargets_m49C9E4E462CC1064607FA5A3BA0EF5AB0360EE0D_inline(L_27, NULL);
NullCheck(L_28);
List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline(L_28, List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
// m_ImplementationData.hoverTargets.AddRange(eventData.hovered);
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* L_29 = (&__this->___m_ImplementationData_1);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_30;
L_30 = ImplementationData_get_hoverTargets_m49C9E4E462CC1064607FA5A3BA0EF5AB0360EE0D_inline(L_29, NULL);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_31 = ___eventData0;
NullCheck(L_31);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_32 = ((PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*)L_31)->___hovered_10;
NullCheck(L_30);
List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C(L_30, L_32, List_1_AddRange_mF7CB62C0F98328B0EC44EC48E5DAD891B8BC749C_RuntimeMethod_var);
// currentRaycast = eventData.pointerCurrentRaycast;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_33 = ___eventData0;
NullCheck(L_33);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_34;
L_34 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_33, NULL);
TrackedDeviceModel_set_currentRaycast_mB605A8C85EFDAEDC5D8A39468CD0933E54F50C73_inline(__this, L_34, NULL);
// currentRaycastEndpointIndex = eventData.rayHitIndex;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_35 = ___eventData0;
NullCheck(L_35);
int32_t L_36;
L_36 = TrackedDeviceEventData_get_rayHitIndex_mF78EEEBC65BFB650372F8AE3736CC747A852D857_inline(L_35, NULL);
TrackedDeviceModel_set_currentRaycastEndpointIndex_m590E66F5A9635363FE8E140E0F9CC28328AEC2E1_inline(__this, L_36, NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void TrackedDeviceModel_CopyFrom_m2A29E70045067F467379D43A4AFB7CDCAFC1786B_AdjustorThunk (RuntimeObject* __this, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* ___eventData0, const RuntimeMethod* method)
{
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*>(__this + _offset);
TrackedDeviceModel_CopyFrom_m2A29E70045067F467379D43A4AFB7CDCAFC1786B(_thisAdjusted, ___eventData0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_pinvoke(const ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC& unmarshaled, ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_pinvoke_back(const ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_pinvoke& marshaled, ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC& unmarshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_pinvoke_cleanup(ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_com(const ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC& unmarshaled, ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_com& marshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_com_back(const ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_com& marshaled, ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC& unmarshaled)
{
Exception_t* ___U3ChoverTargetsU3Ek__BackingField_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<hoverTargets>k__BackingField' of type 'ImplementationData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3ChoverTargetsU3Ek__BackingField_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData
IL2CPP_EXTERN_C void ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshal_com_cleanup(ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC_marshaled_com& marshaled)
{
}
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_hoverTargets()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ImplementationData_get_hoverTargets_m49C9E4E462CC1064607FA5A3BA0EF5AB0360EE0D (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = __this->___U3ChoverTargetsU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_EXTERN_C List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ImplementationData_get_hoverTargets_m49C9E4E462CC1064607FA5A3BA0EF5AB0360EE0D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* _returnValue;
_returnValue = ImplementationData_get_hoverTargets_m49C9E4E462CC1064607FA5A3BA0EF5AB0360EE0D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_hoverTargets(System.Collections.Generic.List`1<UnityEngine.GameObject>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_hoverTargets_mCD8DCF11D40DAC82195A1724F2BA0D85FF57E70C (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = ___value0;
__this->___U3ChoverTargetsU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ChoverTargetsU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_hoverTargets_mCD8DCF11D40DAC82195A1724F2BA0D85FF57E70C_AdjustorThunk (RuntimeObject* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
ImplementationData_set_hoverTargets_mCD8DCF11D40DAC82195A1724F2BA0D85FF57E70C_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pointerTarget()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pointerTarget_mB2D4D091AC3BC5E937FB7252047DA33AC409FAEB (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerTargetU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pointerTarget_mB2D4D091AC3BC5E937FB7252047DA33AC409FAEB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = ImplementationData_get_pointerTarget_mB2D4D091AC3BC5E937FB7252047DA33AC409FAEB_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pointerTarget(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pointerTarget_m6A49B7736E5B50E934D4D998648ED2AB2D69C582 (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpointerTargetU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerTargetU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pointerTarget_m6A49B7736E5B50E934D4D998648ED2AB2D69C582_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
ImplementationData_set_pointerTarget_m6A49B7736E5B50E934D4D998648ED2AB2D69C582_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_isDragging()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImplementationData_get_isDragging_mEE3BF283FC9C5235D15708D18BE89E06319F781D (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = __this->___U3CisDraggingU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_EXTERN_C bool ImplementationData_get_isDragging_mEE3BF283FC9C5235D15708D18BE89E06319F781D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
bool _returnValue;
_returnValue = ImplementationData_get_isDragging_mEE3BF283FC9C5235D15708D18BE89E06319F781D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_isDragging(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_isDragging_m315511026FE53448151B19E47E4902F90E819BC2 (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = ___value0;
__this->___U3CisDraggingU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_isDragging_m315511026FE53448151B19E47E4902F90E819BC2_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
ImplementationData_set_isDragging_m315511026FE53448151B19E47E4902F90E819BC2_inline(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pressedTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ImplementationData_get_pressedTime_m154FBADD86CD746C703BF37003C64C428CADAC35 (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = __this->___U3CpressedTimeU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_EXTERN_C float ImplementationData_get_pressedTime_m154FBADD86CD746C703BF37003C64C428CADAC35_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
float _returnValue;
_returnValue = ImplementationData_get_pressedTime_m154FBADD86CD746C703BF37003C64C428CADAC35_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pressedTime(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedTime_m0EB8960EE81F4D82A71AAC719999CE01D64DCDA6 (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = ___value0;
__this->___U3CpressedTimeU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedTime_m0EB8960EE81F4D82A71AAC719999CE01D64DCDA6_AdjustorThunk (RuntimeObject* __this, float ___value0, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
ImplementationData_set_pressedTime_m0EB8960EE81F4D82A71AAC719999CE01D64DCDA6_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_position_m421FC9657A48CBED5AD985B2D7905BF7B06CA446 (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public Vector2 position { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpositionU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_position_m421FC9657A48CBED5AD985B2D7905BF7B06CA446_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = ImplementationData_get_position_m421FC9657A48CBED5AD985B2D7905BF7B06CA446_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_position(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_position_m82C559B25F9B9515CCAE8FA900B78A2072CD3F7E (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 position { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CpositionU3Ek__BackingField_4 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_position_m82C559B25F9B9515CCAE8FA900B78A2072CD3F7E_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
ImplementationData_set_position_m82C559B25F9B9515CCAE8FA900B78A2072CD3F7E_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector2 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pressedPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_mE3E33C31F62A5ABF18461C479CA7DA9D8DB32262 (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpressedPositionU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_mE3E33C31F62A5ABF18461C479CA7DA9D8DB32262_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
_returnValue = ImplementationData_get_pressedPosition_mE3E33C31F62A5ABF18461C479CA7DA9D8DB32262_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pressedPosition(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedPosition_m9BBCEC0224F0FCB1572F06B61A01074A0CAD5DCA (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CpressedPositionU3Ek__BackingField_5 = L_0;
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedPosition_m9BBCEC0224F0FCB1572F06B61A01074A0CAD5DCA_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
ImplementationData_set_pressedPosition_m9BBCEC0224F0FCB1572F06B61A01074A0CAD5DCA_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pressedRaycast()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_mA355A412C26FAB49EA39F4DEFDA824465DFDE48E (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpressedRaycastU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_EXTERN_C RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_mA355A412C26FAB49EA39F4DEFDA824465DFDE48E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 _returnValue;
_returnValue = ImplementationData_get_pressedRaycast_mA355A412C26FAB49EA39F4DEFDA824465DFDE48E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pressedRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedRaycast_mB79CE5436DFBFAB118F234D25B7D49E72582D9EB (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___value0;
__this->___U3CpressedRaycastU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_6))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_6))->___module_1), (void*)NULL);
#endif
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedRaycast_mB79CE5436DFBFAB118F234D25B7D49E72582D9EB_AdjustorThunk (RuntimeObject* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
ImplementationData_set_pressedRaycast_mB79CE5436DFBFAB118F234D25B7D49E72582D9EB_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pressedGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_m81DA354AA04B9531100A8C8C6A61100493115CF5 (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectU3Ek__BackingField_7;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_m81DA354AA04B9531100A8C8C6A61100493115CF5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = ImplementationData_get_pressedGameObject_m81DA354AA04B9531100A8C8C6A61100493115CF5_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pressedGameObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObject_mF87125F8EFFBE3ED0609B5C67EA86704715996FE (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectU3Ek__BackingField_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectU3Ek__BackingField_7), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedGameObject_mF87125F8EFFBE3ED0609B5C67EA86704715996FE_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
ImplementationData_set_pressedGameObject_mF87125F8EFFBE3ED0609B5C67EA86704715996FE_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_pressedGameObjectRaw()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_mE9702863BC33793FB5DE550F0789A9058F369A2C (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectRawU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_mE9702863BC33793FB5DE550F0789A9058F369A2C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = ImplementationData_get_pressedGameObjectRaw_mE9702863BC33793FB5DE550F0789A9058F369A2C_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_pressedGameObjectRaw(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObjectRaw_m3AEB4F85F771C297EAE30B1CAAFDD990446624B4 (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectRawU3Ek__BackingField_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectRawU3Ek__BackingField_8), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_pressedGameObjectRaw_m3AEB4F85F771C297EAE30B1CAAFDD990446624B4_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
ImplementationData_set_pressedGameObjectRaw_m3AEB4F85F771C297EAE30B1CAAFDD990446624B4_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.GameObject UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::get_draggedGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_mBD53214AA566627B15D7EA5F6080758FF95C1848 (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CdraggedGameObjectU3Ek__BackingField_9;
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_mBD53214AA566627B15D7EA5F6080758FF95C1848_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
_returnValue = ImplementationData_get_draggedGameObject_mBD53214AA566627B15D7EA5F6080758FF95C1848_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::set_draggedGameObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_set_draggedGameObject_m977BE3A90025D2F50AC30A321D30245423B9CA6A (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CdraggedGameObjectU3Ek__BackingField_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdraggedGameObjectU3Ek__BackingField_9), (void*)L_0);
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_set_draggedGameObject_m977BE3A90025D2F50AC30A321D30245423B9CA6A_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
ImplementationData_set_draggedGameObject_m977BE3A90025D2F50AC30A321D30245423B9CA6A_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel/ImplementationData::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImplementationData_Reset_m78CB6F5BD992AECD4D7D58E5880CFC0DF4DBBC55 (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// isDragging = false;
ImplementationData_set_isDragging_m315511026FE53448151B19E47E4902F90E819BC2_inline(__this, (bool)0, NULL);
// pressedTime = 0f;
ImplementationData_set_pressedTime_m0EB8960EE81F4D82A71AAC719999CE01D64DCDA6_inline(__this, (0.0f), NULL);
// position = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
L_0 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
ImplementationData_set_position_m82C559B25F9B9515CCAE8FA900B78A2072CD3F7E_inline(__this, L_0, NULL);
// pressedPosition = Vector2.zero;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
L_1 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
ImplementationData_set_pressedPosition_m9BBCEC0224F0FCB1572F06B61A01074A0CAD5DCA_inline(__this, L_1, NULL);
// pressedRaycast = new RaycastResult();
il2cpp_codegen_initobj((&V_0), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_2 = V_0;
ImplementationData_set_pressedRaycast_mB79CE5436DFBFAB118F234D25B7D49E72582D9EB_inline(__this, L_2, NULL);
// pressedGameObject = null;
ImplementationData_set_pressedGameObject_mF87125F8EFFBE3ED0609B5C67EA86704715996FE_inline(__this, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
// pressedGameObjectRaw = null;
ImplementationData_set_pressedGameObjectRaw_m3AEB4F85F771C297EAE30B1CAAFDD990446624B4_inline(__this, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
// draggedGameObject = null;
ImplementationData_set_draggedGameObject_m977BE3A90025D2F50AC30A321D30245423B9CA6A_inline(__this, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
// if (hoverTargets == null)
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_3;
L_3 = ImplementationData_get_hoverTargets_m49C9E4E462CC1064607FA5A3BA0EF5AB0360EE0D_inline(__this, NULL);
if (L_3)
{
goto IL_0060;
}
}
{
// hoverTargets = new List<GameObject>();
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_4 = (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*)il2cpp_codegen_object_new(List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_il2cpp_TypeInfo_var);
List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC(L_4, /*hidden argument*/List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC_RuntimeMethod_var);
ImplementationData_set_hoverTargets_mCD8DCF11D40DAC82195A1724F2BA0D85FF57E70C_inline(__this, L_4, NULL);
return;
}
IL_0060:
{
// hoverTargets.Clear();
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_5;
L_5 = ImplementationData_get_hoverTargets_m49C9E4E462CC1064607FA5A3BA0EF5AB0360EE0D_inline(__this, NULL);
NullCheck(L_5);
List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline(L_5, List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void ImplementationData_Reset_m78CB6F5BD992AECD4D7D58E5880CFC0DF4DBBC55_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC*>(__this + _offset);
ImplementationData_Reset_m78CB6F5BD992AECD4D7D58E5880CFC0DF4DBBC55(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.QueryTriggerInteraction UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::get_raycastTriggerInteraction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackedDevicePhysicsRaycaster_get_raycastTriggerInteraction_m9E934B1D2880B5AF17B565D8574F9CA2699EA7E6 (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, const RuntimeMethod* method)
{
{
// get => m_RaycastTriggerInteraction;
int32_t L_0 = __this->___m_RaycastTriggerInteraction_6;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::set_raycastTriggerInteraction(UnityEngine.QueryTriggerInteraction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDevicePhysicsRaycaster_set_raycastTriggerInteraction_mEF929F720FD15B157653827D6EBB0D4E6C61F006 (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_RaycastTriggerInteraction = value;
int32_t L_0 = ___value0;
__this->___m_RaycastTriggerInteraction_6 = L_0;
return;
}
}
// UnityEngine.LayerMask UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::get_eventMask()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB TrackedDevicePhysicsRaycaster_get_eventMask_mB75E7F77242C64D1B41710EBE3B8C6395A34F38B (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, const RuntimeMethod* method)
{
{
// get => m_EventMask;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = __this->___m_EventMask_7;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::set_eventMask(UnityEngine.LayerMask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDevicePhysicsRaycaster_set_eventMask_m13F16E19AB895BD2B44805043676FD67CF691C8A (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___value0, const RuntimeMethod* method)
{
{
// set => m_EventMask = value;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = ___value0;
__this->___m_EventMask_7 = L_0;
return;
}
}
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::get_maxRayIntersections()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackedDevicePhysicsRaycaster_get_maxRayIntersections_mEE9EB9579C61CA31869B544DBE855DE6A3D2C902 (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, const RuntimeMethod* method)
{
{
// get => m_MaxRayIntersections;
int32_t L_0 = __this->___m_MaxRayIntersections_8;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::set_maxRayIntersections(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDevicePhysicsRaycaster_set_maxRayIntersections_mA7EE3F4A79BC6CB7C1B1BE49668506AF255C5C4E (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// set => m_MaxRayIntersections = Math.Max(value, 1);
int32_t L_0 = ___value0;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_1;
L_1 = Math_Max_m830F00B616D7A2130E46E974DFB27E9DA7FE30E5(L_0, 1, NULL);
__this->___m_MaxRayIntersections_8 = L_1;
return;
}
}
// UnityEngine.Camera UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::get_eventCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* TrackedDevicePhysicsRaycaster_get_eventCamera_mF1AF235906E16B8D61A1BD240AB1CAC1233BB553 (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m64AC6C06DD93C5FB249091FEC84FA8475457CCC4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_EventCamera == null)
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = __this->___m_EventCamera_9;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_1)
{
goto IL_001a;
}
}
{
// m_EventCamera = GetComponent<Camera>();
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_2;
L_2 = Component_GetComponent_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m64AC6C06DD93C5FB249091FEC84FA8475457CCC4(__this, Component_GetComponent_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m64AC6C06DD93C5FB249091FEC84FA8475457CCC4_RuntimeMethod_var);
__this->___m_EventCamera_9 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EventCamera_9), (void*)L_2);
}
IL_001a:
{
// return m_EventCamera != null ? m_EventCamera : Camera.main;
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_3 = __this->___m_EventCamera_9;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_4)
{
goto IL_002e;
}
}
{
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5;
L_5 = Camera_get_main_mF222B707D3BF8CC9C7544609EFC71CFB62E81D43(NULL);
return L_5;
}
IL_002e:
{
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_6 = __this->___m_EventCamera_9;
return L_6;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::SetEventCamera(UnityEngine.Camera)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDevicePhysicsRaycaster_SetEventCamera_m109CC7E7D596F53719E1AB06CFBF28A0A380921C (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___newEventCamera0, const RuntimeMethod* method)
{
{
// m_EventCamera = newEventCamera;
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = ___newEventCamera0;
__this->___m_EventCamera_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EventCamera_9), (void*)L_0);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::Raycast(UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDevicePhysicsRaycaster_Raycast_m0BFFAA0821C6C57A8C3EC44211EB88DC761F472E (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___resultAppendList1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* V_0 = NULL;
{
// if (eventData is TrackedDeviceEventData trackedEventData)
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___eventData0;
V_0 = ((TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9*)IsInstClass((RuntimeObject*)L_0, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9_il2cpp_TypeInfo_var));
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
// PerformRaycasts(trackedEventData, resultAppendList);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_2 = V_0;
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_3 = ___resultAppendList1;
TrackedDevicePhysicsRaycaster_PerformRaycasts_m86E342C9D8A61B890C0909381DE96566125257E7(__this, L_2, L_3, NULL);
}
IL_0012:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::Awake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDevicePhysicsRaycaster_Awake_mC3C96AE1AC1C7A2B2DB4A901EA0ADEFBE448C995 (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// base.Awake();
UIBehaviour_Awake_mDF9D1A4867C8E730C59A7CAE97709CA9B8F3A0F2(__this, NULL);
// m_RaycastHits = new RaycastHit[m_MaxRayIntersections];
int32_t L_0 = __this->___m_MaxRayIntersections_8;
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_1 = (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8*)(RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8*)SZArrayNew(RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8_il2cpp_TypeInfo_var, (uint32_t)L_0);
__this->___m_RaycastHits_11 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RaycastHits_11), (void*)L_1);
// m_RaycastArrayWrapper = new RaycastHitArraySegment(m_RaycastHits, 0);
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_2 = __this->___m_RaycastHits_11;
RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* L_3 = (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C*)il2cpp_codegen_object_new(RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C_il2cpp_TypeInfo_var);
RaycastHitArraySegment__ctor_m1EA0C75F9B3A4AD6EEEA6EBB5D9926EC57FF0B01(L_3, L_2, 0, /*hidden argument*/NULL);
__this->___m_RaycastArrayWrapper_13 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RaycastArrayWrapper_13), (void*)L_3);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::PerformRaycasts(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDevicePhysicsRaycaster_PerformRaycasts_m86E342C9D8A61B890C0909381DE96566125257E7 (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* ___eventData0, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___resultAppendList1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB36C73AC59552C971E8B7F3DCAF85C9D10347F9);
s_Il2CppMethodInitialized = true;
}
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_0 = NULL;
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_4;
memset((&V_4), 0, sizeof(V_4));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_5;
memset((&V_5), 0, sizeof(V_5));
{
// var currentEventCamera = eventCamera;
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0;
L_0 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
V_0 = L_0;
// if (currentEventCamera == null)
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_1 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_2;
L_2 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_2)
{
goto IL_002b;
}
}
{
// if (!m_HasWarnedEventCameraNull)
bool L_3 = __this->___m_HasWarnedEventCameraNull_10;
if (L_3)
{
goto IL_002a;
}
}
{
// Debug.LogWarning("Event Camera must be set on TrackedDevicePhysicsRaycaster to determine screen space coordinates." +
// " UI events will not function correctly until it is set.",
// this);
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
Debug_LogWarning_m5C8299150E64600CBF5C92706AD610C21D0C0DC5(_stringLiteralDB36C73AC59552C971E8B7F3DCAF85C9D10347F9, __this, NULL);
// m_HasWarnedEventCameraNull = true;
__this->___m_HasWarnedEventCameraNull_10 = (bool)1;
}
IL_002a:
{
// return;
return;
}
IL_002b:
{
// var rayPoints = eventData.rayPoints;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_4 = ___eventData0;
NullCheck(L_4);
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_5;
L_5 = TrackedDeviceEventData_get_rayPoints_m634507CA62EF8BCFC3A5F1B7F1DE107480FBFE7D_inline(L_4, NULL);
V_1 = L_5;
// var layerMask = eventData.layerMask & m_EventMask;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_6 = ___eventData0;
NullCheck(L_6);
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_7;
L_7 = TrackedDeviceEventData_get_layerMask_m4A2A83C58E6B60DC4ED886236CCB760E70D610DD_inline(L_6, NULL);
int32_t L_8;
L_8 = LayerMask_op_Implicit_m5D697E103A7CB05CADCED9F90FD4F6BAE955E763(L_7, NULL);
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_9 = __this->___m_EventMask_7;
int32_t L_10;
L_10 = LayerMask_op_Implicit_m5D697E103A7CB05CADCED9F90FD4F6BAE955E763(L_9, NULL);
V_2 = ((int32_t)((int32_t)L_8&(int32_t)L_10));
// for (var i = 1; i < rayPoints.Count; i++)
V_3 = 1;
goto IL_0082;
}
IL_004e:
{
// var from = rayPoints[i - 1];
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_11 = V_1;
int32_t L_12 = V_3;
NullCheck(L_11);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
L_13 = List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810(L_11, ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)), List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810_RuntimeMethod_var);
V_4 = L_13;
// var to = rayPoints[i];
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_14 = V_1;
int32_t L_15 = V_3;
NullCheck(L_14);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16;
L_16 = List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810(L_14, L_15, List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810_RuntimeMethod_var);
V_5 = L_16;
// if (PerformRaycast(from, to, layerMask, currentEventCamera, resultAppendList))
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17 = V_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_18 = V_5;
int32_t L_19 = V_2;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_20;
L_20 = LayerMask_op_Implicit_mDC9C22C4477684D460FCF25B1BFE6B54419FB922(L_19, NULL);
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_21 = V_0;
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_22 = ___resultAppendList1;
bool L_23;
L_23 = TrackedDevicePhysicsRaycaster_PerformRaycast_m20052CC3DBF3C62D0A7705DF04CDEE6CFCF763FD(__this, L_17, L_18, L_20, L_21, L_22, NULL);
if (!L_23)
{
goto IL_007e;
}
}
{
// eventData.rayHitIndex = i;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_24 = ___eventData0;
int32_t L_25 = V_3;
NullCheck(L_24);
TrackedDeviceEventData_set_rayHitIndex_m1DBE5C18ABAC0E5B241D10DB6164A391F37D5AF7_inline(L_24, L_25, NULL);
// break;
return;
}
IL_007e:
{
// for (var i = 1; i < rayPoints.Count; i++)
int32_t L_26 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
}
IL_0082:
{
// for (var i = 1; i < rayPoints.Count; i++)
int32_t L_27 = V_3;
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_28 = V_1;
NullCheck(L_28);
int32_t L_29;
L_29 = List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_inline(L_28, List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_RuntimeMethod_var);
if ((((int32_t)L_27) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::PerformRaycast(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.LayerMask,UnityEngine.Camera,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackedDevicePhysicsRaycaster_PerformRaycast_m20052CC3DBF3C62D0A7705DF04CDEE6CFCF763FD (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___from0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___to1, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___layerMask2, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___currentEventCamera3, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___resultAppendList4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Resize_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mD5BCCA6C065C9A0784DDA90B211D93A05AF83339_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mB4EDC66D3E8011A4ED117827EB18BEAD7B269CB6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m2769E67BF3F70EE5E543F882C4C77FFDDA59EF11_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mCD34ACB6BE5F6BEEEE297AD23C2C1FC1174813FF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisIEventSystemHandler_t050874E4CAEDCBA7E792A19EE3405EA443AE36B5_m92329A00F346E4869E58F27F69886E60D43A3F53_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_m06E7BBAD0E1AC28E9F9E403F1A5B7E56D2343F78_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mBB1C1097E6EAB4F19E432E94B29D294EC9313A1F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mDD871A2334871E99D82AAD9D0843B05D712F8799_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortingHelpers_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mE36842A81DD293C053693681100FBDC73AF79D0D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
float V_1 = 0.0f;
float V_2 = 0.0f;
int32_t V_3 = 0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_4;
memset((&V_4), 0, sizeof(V_4));
Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F V_5;
memset((&V_5), 0, sizeof(V_5));
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 V_6;
memset((&V_6), 0, sizeof(V_6));
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_7 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_8;
memset((&V_8), 0, sizeof(V_8));
int32_t V_9 = 0;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_10;
memset((&V_10), 0, sizeof(V_10));
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_11;
memset((&V_11), 0, sizeof(V_11));
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 G_B2_0;
memset((&G_B2_0), 0, sizeof(G_B2_0));
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 G_B1_0;
memset((&G_B1_0), 0, sizeof(G_B1_0));
{
// var hitSomething = false;
V_0 = (bool)0;
// var rayDistance = Vector3.Distance(to, from);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___to1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___from0;
float L_2;
L_2 = Vector3_Distance_m99C722723EDD875852EF854AD7B7C4F8AC4F84AB_inline(L_0, L_1, NULL);
V_1 = L_2;
// var ray = new Ray(from, (to - from).normalized * rayDistance);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___from0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___to1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___from0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
L_6 = Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline(L_4, L_5, NULL);
V_4 = L_6;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7;
L_7 = Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline((&V_4), NULL);
float L_8 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
L_9 = Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline(L_7, L_8, NULL);
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_10;
memset((&L_10), 0, sizeof(L_10));
Ray__ctor_mE298992FD10A3894C38373198385F345C58BD64C((&L_10), L_3, L_9, /*hidden argument*/NULL);
// var hitDistance = rayDistance;
float L_11 = V_1;
V_2 = L_11;
// m_MaxRayIntersections = Math.Max(m_MaxRayIntersections, 1);
int32_t L_12 = __this->___m_MaxRayIntersections_8;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_13;
L_13 = Math_Max_m830F00B616D7A2130E46E974DFB27E9DA7FE30E5(L_12, 1, NULL);
__this->___m_MaxRayIntersections_8 = L_13;
// if (m_RaycastHits.Length != m_MaxRayIntersections)
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_14 = __this->___m_RaycastHits_11;
NullCheck(L_14);
int32_t L_15 = __this->___m_MaxRayIntersections_8;
G_B1_0 = L_10;
if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))) == ((int32_t)L_15)))
{
G_B2_0 = L_10;
goto IL_005b;
}
}
{
// Array.Resize(ref m_RaycastHits, m_MaxRayIntersections);
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8** L_16 = (&__this->___m_RaycastHits_11);
int32_t L_17 = __this->___m_MaxRayIntersections_8;
Array_Resize_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mD5BCCA6C065C9A0784DDA90B211D93A05AF83339(L_16, L_17, Array_Resize_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mD5BCCA6C065C9A0784DDA90B211D93A05AF83339_RuntimeMethod_var);
G_B2_0 = G_B1_0;
}
IL_005b:
{
// var hitCount = Physics.RaycastNonAlloc(ray, m_RaycastHits, hitDistance, layerMask, m_RaycastTriggerInteraction);
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_18 = __this->___m_RaycastHits_11;
float L_19 = V_2;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_20 = ___layerMask2;
int32_t L_21;
L_21 = LayerMask_op_Implicit_m5D697E103A7CB05CADCED9F90FD4F6BAE955E763(L_20, NULL);
int32_t L_22 = __this->___m_RaycastTriggerInteraction_6;
int32_t L_23;
L_23 = Physics_RaycastNonAlloc_mDFA9A2E36F048930570165C0BDDF4AE342ACF767(G_B2_0, L_18, L_19, L_21, L_22, NULL);
V_3 = L_23;
// m_RaycastArrayWrapper.count = hitCount;
RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* L_24 = __this->___m_RaycastArrayWrapper_13;
int32_t L_25 = V_3;
NullCheck(L_24);
RaycastHitArraySegment_set_count_m914E21014BA452D837B277FC9088881160F7AE1D_inline(L_24, L_25, NULL);
// m_RaycastResultsCache.Clear();
List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* L_26 = __this->___m_RaycastResultsCache_14;
NullCheck(L_26);
List_1_Clear_mBB1C1097E6EAB4F19E432E94B29D294EC9313A1F_inline(L_26, List_1_Clear_mBB1C1097E6EAB4F19E432E94B29D294EC9313A1F_RuntimeMethod_var);
// m_RaycastResultsCache.AddRange(m_RaycastArrayWrapper);
List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* L_27 = __this->___m_RaycastResultsCache_14;
RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* L_28 = __this->___m_RaycastArrayWrapper_13;
NullCheck(L_27);
List_1_AddRange_m06E7BBAD0E1AC28E9F9E403F1A5B7E56D2343F78(L_27, L_28, List_1_AddRange_m06E7BBAD0E1AC28E9F9E403F1A5B7E56D2343F78_RuntimeMethod_var);
// SortingHelpers.Sort(m_RaycastResultsCache, m_RaycastHitComparer);
List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* L_29 = __this->___m_RaycastResultsCache_14;
RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485* L_30 = __this->___m_RaycastHitComparer_12;
il2cpp_codegen_runtime_class_init_inline(SortingHelpers_t0930720ECF619597413559E1F8A70AC77ADDC9F8_il2cpp_TypeInfo_var);
SortingHelpers_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mE36842A81DD293C053693681100FBDC73AF79D0D(L_29, L_30, SortingHelpers_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mE36842A81DD293C053693681100FBDC73AF79D0D_RuntimeMethod_var);
// foreach (var hit in m_RaycastResultsCache)
List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* L_31 = __this->___m_RaycastResultsCache_14;
NullCheck(L_31);
Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F L_32;
L_32 = List_1_GetEnumerator_mDD871A2334871E99D82AAD9D0843B05D712F8799(L_31, List_1_GetEnumerator_mDD871A2334871E99D82AAD9D0843B05D712F8799_RuntimeMethod_var);
V_5 = L_32;
}
IL_00ba:
try
{// begin try (depth: 1)
{
goto IL_01a4;
}
IL_00bf:
{
// foreach (var hit in m_RaycastResultsCache)
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 L_33;
L_33 = Enumerator_get_Current_mCD34ACB6BE5F6BEEEE297AD23C2C1FC1174813FF_inline((&V_5), Enumerator_get_Current_mCD34ACB6BE5F6BEEEE297AD23C2C1FC1174813FF_RuntimeMethod_var);
V_6 = L_33;
// var col = hit.collider;
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_34;
L_34 = RaycastHit_get_collider_m84B160439BBEAB6D9E94B799F720E25C9E2D444D((&V_6), NULL);
// var go = col.gameObject;
NullCheck(L_34);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_35;
L_35 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_34, NULL);
V_7 = L_35;
// var validHit = go.GetComponent<IEventSystemHandler>() != null;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_36 = V_7;
NullCheck(L_36);
RuntimeObject* L_37;
L_37 = GameObject_GetComponent_TisIEventSystemHandler_t050874E4CAEDCBA7E792A19EE3405EA443AE36B5_m92329A00F346E4869E58F27F69886E60D43A3F53(L_36, GameObject_GetComponent_TisIEventSystemHandler_t050874E4CAEDCBA7E792A19EE3405EA443AE36B5_m92329A00F346E4869E58F27F69886E60D43A3F53_RuntimeMethod_var);
// Vector2 screenPos = currentEventCamera.WorldToScreenPoint(hit.point);
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_38 = ___currentEventCamera3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_39;
L_39 = RaycastHit_get_point_m02B764612562AFE0F998CC7CFB2EEDE41BA47F39((&V_6), NULL);
NullCheck(L_38);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_40;
L_40 = Camera_WorldToScreenPoint_m26B4C8945C3B5731F1CC5944CFD96BF17126BAA3(L_38, L_39, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_41;
L_41 = Vector2_op_Implicit_m8F73B300CB4E6F9B4EB5FB6130363D76CEAA230B_inline(L_40, NULL);
V_8 = L_41;
// var relativeMousePosition = Display.RelativeMouseAt(screenPos);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_42 = V_8;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_43;
L_43 = Vector2_op_Implicit_mCD214B04BC52AED3C89C3BEF664B6247E5F8954A_inline(L_42, NULL);
il2cpp_codegen_runtime_class_init_inline(Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_44;
L_44 = Display_RelativeMouseAt_m978A03E5176C10A4A5CD1DEE6088FF7C3FE6EBBF(L_43, NULL);
// var displayIndex = (int)relativeMousePosition.z;
float L_45 = L_44.___z_4;
V_9 = il2cpp_codegen_cast_double_to_int<int32_t>(L_45);
// validHit &= hit.distance < hitDistance;
float L_46;
L_46 = RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78((&V_6), NULL);
float L_47 = V_2;
// if (validHit)
if (!((int32_t)((int32_t)((!(((RuntimeObject*)(RuntimeObject*)L_37) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)&(int32_t)((((float)L_46) < ((float)L_47))? 1 : 0))))
{
goto IL_01a4;
}
}
IL_0119:
{
// var result = new RaycastResult
// {
// gameObject = go,
// module = this,
// distance = hit.distance,
// index = resultAppendList.Count,
// depth = 0,
// sortingLayer = 0,
// sortingOrder = 0,
// worldPosition = hit.point,
// worldNormal = hit.normal,
// screenPosition = screenPos,
// displayIndex = displayIndex,
// };
il2cpp_codegen_initobj((&V_11), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_48 = V_7;
RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline((&V_11), L_48, NULL);
(&V_11)->___module_1 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_11)->___module_1), (void*)__this);
float L_49;
L_49 = RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78((&V_6), NULL);
(&V_11)->___distance_2 = L_49;
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_50 = ___resultAppendList4;
NullCheck(L_50);
int32_t L_51;
L_51 = List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_inline(L_50, List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var);
(&V_11)->___index_3 = ((float)((float)L_51));
(&V_11)->___depth_4 = 0;
(&V_11)->___sortingLayer_5 = 0;
(&V_11)->___sortingOrder_6 = 0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_52;
L_52 = RaycastHit_get_point_m02B764612562AFE0F998CC7CFB2EEDE41BA47F39((&V_6), NULL);
(&V_11)->___worldPosition_7 = L_52;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_53;
L_53 = RaycastHit_get_normal_mD8741B70D2039C5CAFC4368D4CE59D89562040B5((&V_6), NULL);
(&V_11)->___worldNormal_8 = L_53;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_54 = V_8;
(&V_11)->___screenPosition_9 = L_54;
int32_t L_55 = V_9;
(&V_11)->___displayIndex_10 = L_55;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_56 = V_11;
V_10 = L_56;
// resultAppendList.Add(result);
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_57 = ___resultAppendList4;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_58 = V_10;
NullCheck(L_57);
List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_inline(L_57, L_58, List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
// hitSomething = true;
V_0 = (bool)1;
}
IL_01a4:
{
// foreach (var hit in m_RaycastResultsCache)
bool L_59;
L_59 = Enumerator_MoveNext_m2769E67BF3F70EE5E543F882C4C77FFDDA59EF11((&V_5), Enumerator_MoveNext_m2769E67BF3F70EE5E543F882C4C77FFDDA59EF11_RuntimeMethod_var);
if (L_59)
{
goto IL_00bf;
}
}
IL_01b0:
{
IL2CPP_LEAVE(0x448, FINALLY_01b2);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_01b2;
}
FINALLY_01b2:
{// begin finally (depth: 1)
Enumerator_Dispose_mB4EDC66D3E8011A4ED117827EB18BEAD7B269CB6((&V_5), Enumerator_Dispose_mB4EDC66D3E8011A4ED117827EB18BEAD7B269CB6_RuntimeMethod_var);
IL2CPP_END_FINALLY(434)
}// end finally (depth: 1)
IL2CPP_CLEANUP(434)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x448, IL_01c0)
}
IL_01c0:
{
// return hitSomething;
bool L_60 = V_0;
return L_60;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackedDevicePhysicsRaycaster__ctor_m604E49C73D48122271025602D10B9890B12AD0D0 (TrackedDevicePhysicsRaycaster_t874DC2DF2304278A9AF329D4923CBE25ACB5A542* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7715EBA40C1E9928D580B0D503FA394AB9503EFC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// QueryTriggerInteraction m_RaycastTriggerInteraction = QueryTriggerInteraction.Ignore;
__this->___m_RaycastTriggerInteraction_6 = 1;
// LayerMask m_EventMask = k_EverythingLayerMask;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0;
L_0 = LayerMask_op_Implicit_mDC9C22C4477684D460FCF25B1BFE6B54419FB922((-1), NULL);
__this->___m_EventMask_7 = L_0;
// int m_MaxRayIntersections = 10;
__this->___m_MaxRayIntersections_8 = ((int32_t)10);
// readonly RaycastHitComparer m_RaycastHitComparer = new RaycastHitComparer();
RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485* L_1 = (RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485*)il2cpp_codegen_object_new(RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485_il2cpp_TypeInfo_var);
RaycastHitComparer__ctor_m25412161F14970521D7D85A4DD8BAE3C18AC4CC0(L_1, /*hidden argument*/NULL);
__this->___m_RaycastHitComparer_12 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RaycastHitComparer_12), (void*)L_1);
// readonly List<RaycastHit> m_RaycastResultsCache = new List<RaycastHit>();
List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* L_2 = (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9*)il2cpp_codegen_object_new(List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9_il2cpp_TypeInfo_var);
List_1__ctor_m7715EBA40C1E9928D580B0D503FA394AB9503EFC(L_2, /*hidden argument*/List_1__ctor_m7715EBA40C1E9928D580B0D503FA394AB9503EFC_RuntimeMethod_var);
__this->___m_RaycastResultsCache_14 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RaycastResultsCache_14), (void*)L_2);
BaseRaycaster__ctor_m1B6A963368E54C1E450BE15FAF1AE082142A1683(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::get_count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RaycastHitArraySegment_get_count_m5BBA6588A64FF768F053CCFF5D6E6ACA65F9DB4D (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, const RuntimeMethod* method)
{
{
// get => m_Count;
int32_t L_0 = __this->___m_Count_0;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::set_count(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitArraySegment_set_count_m914E21014BA452D837B277FC9088881160F7AE1D (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_Count = value;
int32_t L_0 = ___value0;
__this->___m_Count_0 = L_0;
return;
}
}
// UnityEngine.RaycastHit UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 RaycastHitArraySegment_get_Current_mECA5B92CC673BB2BCED92B7F5E82075A17A800C8 (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, const RuntimeMethod* method)
{
{
// public RaycastHit Current => m_Hits[m_CurrentIndex];
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_0 = __this->___m_Hits_1;
int32_t L_1 = __this->___m_CurrentIndex_2;
NullCheck(L_0);
int32_t L_2 = L_1;
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// System.Object UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RaycastHitArraySegment_System_Collections_IEnumerator_get_Current_m2AAD9444FCF9F4F1813B275122B187EAE922DE79 (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// object IEnumerator.Current => Current;
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 L_0;
L_0 = RaycastHitArraySegment_get_Current_mECA5B92CC673BB2BCED92B7F5E82075A17A800C8(__this, NULL);
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 L_1 = L_0;
RuntimeObject* L_2 = Box(RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::.ctor(UnityEngine.RaycastHit[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitArraySegment__ctor_m1EA0C75F9B3A4AD6EEEA6EBB5D9926EC57FF0B01 (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___raycastHits0, int32_t ___count1, const RuntimeMethod* method)
{
{
// public RaycastHitArraySegment(RaycastHit[] raycastHits, int count)
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
// m_Hits = raycastHits;
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_0 = ___raycastHits0;
__this->___m_Hits_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Hits_1), (void*)L_0);
// m_Count = count;
int32_t L_1 = ___count1;
__this->___m_Count_0 = L_1;
// }
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RaycastHitArraySegment_MoveNext_m714394CDED45A30BEB73086BC42576E6AE231D95 (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, const RuntimeMethod* method)
{
{
// m_CurrentIndex++;
int32_t L_0 = __this->___m_CurrentIndex_2;
__this->___m_CurrentIndex_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
// return m_CurrentIndex < m_Count;
int32_t L_1 = __this->___m_CurrentIndex_2;
int32_t L_2 = __this->___m_Count_0;
return (bool)((((int32_t)L_1) < ((int32_t)L_2))? 1 : 0);
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitArraySegment_Reset_mA0FABB4A4E7AD22B6E83C3248A9D57EAFF1490EB (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, const RuntimeMethod* method)
{
{
// m_CurrentIndex = -1;
__this->___m_CurrentIndex_2 = (-1);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitArraySegment_Dispose_m10C35FE8B7DCC03C144372A085EC2025D07C85ED (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, const RuntimeMethod* method)
{
{
// }
return;
}
}
// System.Collections.Generic.IEnumerator`1<UnityEngine.RaycastHit> UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RaycastHitArraySegment_GetEnumerator_mC9D09D2871FFB820FB5496456E5649B01594A0F7 (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, const RuntimeMethod* method)
{
{
// Reset();
RaycastHitArraySegment_Reset_mA0FABB4A4E7AD22B6E83C3248A9D57EAFF1490EB(__this, NULL);
// return this;
return __this;
}
}
// System.Collections.IEnumerator UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitArraySegment::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RaycastHitArraySegment_System_Collections_IEnumerable_GetEnumerator_m5681610A873C7C0B3659BB929E4241B5796322D2 (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, const RuntimeMethod* method)
{
{
// return GetEnumerator();
RuntimeObject* L_0;
L_0 = RaycastHitArraySegment_GetEnumerator_mC9D09D2871FFB820FB5496456E5649B01594A0F7(__this, NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitComparer::Compare(UnityEngine.RaycastHit,UnityEngine.RaycastHit)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RaycastHitComparer_Compare_mBC14B5D686F0C0E6D85AD46FEFD965E6001E3A8D (RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485* __this, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 ___a0, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 ___b1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
// => b.distance.CompareTo(a.distance);
float L_0;
L_0 = RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78((&___b1), NULL);
V_0 = L_0;
float L_1;
L_1 = RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78((&___a0), NULL);
int32_t L_2;
L_2 = Single_CompareTo_m06F7868162EB392D3E99103D1A0BD27463C9E66F((&V_0), L_1, NULL);
return L_2;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.TrackedDevicePhysicsRaycaster/RaycastHitComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitComparer__ctor_m25412161F14970521D7D85A4DD8BAE3C18AC4CC0 (RaycastHitComparer_tB9FBDFD2B04904E779DF837571440F12B692F485* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::get_clickSpeed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UIInputModule_get_clickSpeed_mA97C1FD6A500C3EBA907A6C79EF59112B02BB894 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
{
// get => m_ClickSpeed;
float L_0 = __this->___m_ClickSpeed_10;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::set_clickSpeed(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_set_clickSpeed_mFF1C7BD7B5FCB5274D85BB7C4AFEB9B025F491C4 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_ClickSpeed = value;
float L_0 = ___value0;
__this->___m_ClickSpeed_10 = L_0;
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::get_moveDeadzone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UIInputModule_get_moveDeadzone_mFB3CDD0FC69E6DFAF3ABDE5DD44D19C24B6D2104 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
{
// get => m_MoveDeadzone;
float L_0 = __this->___m_MoveDeadzone_11;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::set_moveDeadzone(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_set_moveDeadzone_mE56FF053ABB13F67F0162D3A825D1B25A0707398 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_MoveDeadzone = value;
float L_0 = ___value0;
__this->___m_MoveDeadzone_11 = L_0;
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::get_repeatDelay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UIInputModule_get_repeatDelay_mD2B5AF5E141A0C82768461C6A7012004443ED934 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
{
// get => m_RepeatDelay;
float L_0 = __this->___m_RepeatDelay_12;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::set_repeatDelay(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_set_repeatDelay_m7F75D6EC2C48820238C441AE06D527275019286D (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_RepeatDelay = value;
float L_0 = ___value0;
__this->___m_RepeatDelay_12 = L_0;
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::get_repeatRate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UIInputModule_get_repeatRate_m159C95DF8BA72BA67569F6B9A3B379976B14F4B4 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
{
// get => m_RepeatRate;
float L_0 = __this->___m_RepeatRate_13;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::set_repeatRate(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_set_repeatRate_mFFE6FB4FB6C1D8BA45707D9C5F4D79C82E673A52 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_RepeatRate = value;
float L_0 = ___value0;
__this->___m_RepeatRate_13 = L_0;
return;
}
}
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::get_trackedDeviceDragThresholdMultiplier()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UIInputModule_get_trackedDeviceDragThresholdMultiplier_mFD629D1343B6CE4DC2DE135F17C3032A342A9D2A (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
{
// get => m_TrackedDeviceDragThresholdMultiplier;
float L_0 = __this->___m_TrackedDeviceDragThresholdMultiplier_14;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::set_trackedDeviceDragThresholdMultiplier(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_set_trackedDeviceDragThresholdMultiplier_m229733B6750687F4B2F730F0ABB0C8B92214CD62 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_TrackedDeviceDragThresholdMultiplier = value;
float L_0 = ___value0;
__this->___m_TrackedDeviceDragThresholdMultiplier_14 = L_0;
return;
}
}
// UnityEngine.Camera UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::get_uiCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* UIInputModule_get_uiCamera_mE7FE3483DD96250D5E9C4EEA0E4ADD4FAC1E7647 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
{
// public Camera uiCamera { get; set; }
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = __this->___U3CuiCameraU3Ek__BackingField_15;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::set_uiCamera(UnityEngine.Camera)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_set_uiCamera_m37C392685DE455B9197AC432551BA808A1A9001D (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___value0, const RuntimeMethod* method)
{
{
// public Camera uiCamera { get; set; }
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = ___value0;
__this->___U3CuiCameraU3Ek__BackingField_15 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CuiCameraU3Ek__BackingField_15), (void*)L_0);
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::Update()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_Update_m7D6322B0FDDFDE7B1E82943EFBD2C2E6BE70F100 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (eventSystem.IsActive() && eventSystem.currentInputModule == this && eventSystem == EventSystem.current)
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0;
L_0 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.EventSystems.UIBehaviour::IsActive() */, L_0);
if (!L_1)
{
goto IL_0038;
}
}
{
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_2;
L_2 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
NullCheck(L_2);
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_3;
L_3 = EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline(L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_3, __this, NULL);
if (!L_4)
{
goto IL_0038;
}
}
{
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_5;
L_5 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_6;
L_6 = EventSystem_get_current_mD15EA86304E070D175EF359A051A7DB807CA26C0(NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_5, L_6, NULL);
if (!L_7)
{
goto IL_0038;
}
}
{
// DoProcess();
VirtualActionInvoker0::Invoke(28 /* System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::DoProcess() */, __this);
}
IL_0038:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::DoProcess()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_DoProcess_m2F3415E90165B1AF36AA82DE27C23B2A9EBBE47C (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
{
// SendUpdateEventToSelectedObject();
bool L_0;
L_0 = UIInputModule_SendUpdateEventToSelectedObject_m7DD6DD3839C2A33F9D34A11A8643D193DBE8268B(__this, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::Process()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_Process_m5F41F23491E526BA70E4980C0143A020D9E0B5AA (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::SendUpdateEventToSelectedObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIInputModule_SendUpdateEventToSelectedObject_m7DD6DD3839C2A33F9D34A11A8643D193DBE8268B (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m29048196EE9931B2E91B895CA98BCBBE2418E0B0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* V_1 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* G_B4_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* G_B3_0 = NULL;
{
// var selectedGameObject = eventSystem.currentSelectedGameObject;
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0;
L_0 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
NullCheck(L_0);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
L_1 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_0, NULL);
V_0 = L_1;
// if (selectedGameObject == null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_3)
{
goto IL_0017;
}
}
{
// return false;
return (bool)0;
}
IL_0017:
{
// var data = GetBaseEventData();
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_4;
L_4 = VirtualFuncInvoker0< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(19 /* UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.BaseInputModule::GetBaseEventData() */, __this);
V_1 = L_4;
// updateSelected?.Invoke(selectedGameObject, data);
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_5 = __this->___updateSelected_31;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_6 = L_5;
G_B3_0 = L_6;
if (L_6)
{
G_B4_0 = L_6;
goto IL_002a;
}
}
{
goto IL_0031;
}
IL_002a:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_7 = V_0;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_8 = V_1;
NullCheck(G_B4_0);
Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E(G_B4_0, L_7, L_8, Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E_RuntimeMethod_var);
}
IL_0031:
{
// ExecuteEvents.Execute(selectedGameObject, data, ExecuteEvents.updateSelectedHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9 = V_0;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_10 = V_1;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* L_11;
L_11 = ExecuteEvents_get_updateSelectedHandler_mB63CDEA5DE1C37F2E0974E9E9679686627E924E6_inline(NULL);
bool L_12;
L_12 = ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m29048196EE9931B2E91B895CA98BCBBE2418E0B0(L_9, L_10, L_11, ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m29048196EE9931B2E91B895CA98BCBBE2418E0B0_RuntimeMethod_var);
// return data.used;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_13 = V_1;
NullCheck(L_13);
bool L_14;
L_14 = VirtualFuncInvoker0< bool >::Invoke(6 /* System.Boolean UnityEngine.EventSystems.AbstractEventData::get_used() */, L_13);
return L_14;
}
}
// UnityEngine.EventSystems.RaycastResult UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::PerformRaycast(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 UIInputModule_PerformRaycast_m4716E7450EC96B541A924BB1DC20E58B2F159B28 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_Invoke_m61417268186749514FEB09357684A88FE79CAC93_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* G_B4_0 = NULL;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* G_B3_0 = NULL;
{
// if (eventData == null)
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___eventData0;
if (L_0)
{
goto IL_000e;
}
}
{
// throw new ArgumentNullException(nameof(eventData));
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8969EB5D95266774FB0F523AF194CCF87BFF4ED5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UIInputModule_PerformRaycast_m4716E7450EC96B541A924BB1DC20E58B2F159B28_RuntimeMethod_var)));
}
IL_000e:
{
// eventSystem.RaycastAll(eventData, m_RaycastResultCache);
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_2;
L_2 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = ___eventData0;
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_4 = ((BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)__this)->___m_RaycastResultCache_4;
NullCheck(L_2);
EventSystem_RaycastAll_mE93CC75909438D20D17A0EF98348A064FBFEA528(L_2, L_3, L_4, NULL);
// finalizeRaycastResults?.Invoke(eventData, m_RaycastResultCache);
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_5 = __this->___finalizeRaycastResults_19;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_6 = L_5;
G_B3_0 = L_6;
if (L_6)
{
G_B4_0 = L_6;
goto IL_002c;
}
}
{
goto IL_0038;
}
IL_002c:
{
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = ___eventData0;
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_8 = ((BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)__this)->___m_RaycastResultCache_4;
NullCheck(G_B4_0);
Action_2_Invoke_m61417268186749514FEB09357684A88FE79CAC93(G_B4_0, L_7, L_8, Action_2_Invoke_m61417268186749514FEB09357684A88FE79CAC93_RuntimeMethod_var);
}
IL_0038:
{
// var result = FindFirstRaycast(m_RaycastResultCache);
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_9 = ((BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)__this)->___m_RaycastResultCache_4;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_10;
L_10 = BaseInputModule_FindFirstRaycast_m911AAA96B2E1178B5446F594B2BD30849FE4AA2B(L_9, NULL);
// m_RaycastResultCache.Clear();
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_11 = ((BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)__this)->___m_RaycastResultCache_4;
NullCheck(L_11);
List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_inline(L_11, List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_RuntimeMethod_var);
// return result;
return L_10;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessMouse(UnityEngine.XR.Interaction.Toolkit.UI.MouseModel&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessMouse_mF90F8EA789274FCD298E5ED801EE9675A9E3EEA4 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* ___mouseState0, const RuntimeMethod* method)
{
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_0 = NULL;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// if (!mouseState.changedThisFrame)
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_0 = ___mouseState0;
bool L_1;
L_1 = MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500_inline(L_0, NULL);
if (L_1)
{
goto IL_0009;
}
}
{
// return;
return;
}
IL_0009:
{
// var eventData = GetOrCreateCachedPointerEvent();
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
L_2 = UIInputModule_GetOrCreateCachedPointerEvent_mBA7B83A85F177D7D70FFC22976A2D81F767C2190(__this, NULL);
V_0 = L_2;
// eventData.Reset();
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = V_0;
NullCheck(L_3);
VirtualActionInvoker0::Invoke(4 /* System.Void UnityEngine.EventSystems.AbstractEventData::Reset() */, L_3);
// mouseState.CopyTo(eventData);
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_4 = ___mouseState0;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5 = V_0;
MouseModel_CopyTo_m783AAB4CDC5D0569D63B7DCDFFDD13E6219AA8BA(L_4, L_5, NULL);
// eventData.pointerCurrentRaycast = PerformRaycast(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = V_0;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = V_0;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_8;
L_8 = UIInputModule_PerformRaycast_m4716E7450EC96B541A924BB1DC20E58B2F159B28(__this, L_7, NULL);
NullCheck(L_6);
PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667_inline(L_6, L_8, NULL);
// var buttonState = mouseState.leftButton;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_9 = ___mouseState0;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_10;
L_10 = MouseModel_get_leftButton_m4E4FEAA3354E2243FC862B4E1212D8C372B399A0_inline(L_9, NULL);
V_1 = L_10;
// buttonState.CopyTo(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_11 = V_0;
MouseButtonModel_CopyTo_mE192240DC4F3852B78A43812C3273BE692F95B04((&V_1), L_11, NULL);
// ProcessMouseButton(buttonState.lastFrameDelta, eventData);
int32_t L_12;
L_12 = MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E_inline((&V_1), NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = V_0;
UIInputModule_ProcessMouseButton_mCD0F73EA5A20835EE50E9F238E2BDA4865B0F391(__this, L_12, L_13, NULL);
// ProcessMouseMovement(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_14 = V_0;
UIInputModule_ProcessMouseMovement_m8654AF723206F8BE52803F57801811E4B54E9E41(__this, L_14, NULL);
// ProcessMouseScroll(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_15 = V_0;
UIInputModule_ProcessMouseScroll_m8A93D635F089F339891607F19D746BA4DB11452F(__this, L_15, NULL);
// mouseState.CopyFrom(eventData);
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_16 = ___mouseState0;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = V_0;
MouseModel_CopyFrom_m7B8817A31CE42B0A96A5FAD2B93DEF906E4E1055(L_16, L_17, NULL);
// ProcessMouseButtonDrag(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_18 = V_0;
UIInputModule_ProcessMouseButtonDrag_m768E9FBBC339845C4E7849C71B86D14DEB91F141(__this, L_18, (1.0f), NULL);
// buttonState.CopyFrom(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = V_0;
MouseButtonModel_CopyFrom_mDB836BEC9F0538CD4C75CC917EA71A474279B1E6((&V_1), L_19, NULL);
// mouseState.leftButton = buttonState;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_20 = ___mouseState0;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_21 = V_1;
MouseModel_set_leftButton_mDFA9E10E68EC1E60BDAA76BEC99F128F69B0272A(L_20, L_21, NULL);
// buttonState = mouseState.rightButton;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_22 = ___mouseState0;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_23;
L_23 = MouseModel_get_rightButton_m847C28E359189D4A2D4E39F0F5D3CC9943D5E624_inline(L_22, NULL);
V_1 = L_23;
// buttonState.CopyTo(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_24 = V_0;
MouseButtonModel_CopyTo_mE192240DC4F3852B78A43812C3273BE692F95B04((&V_1), L_24, NULL);
// ProcessMouseButton(buttonState.lastFrameDelta, eventData);
int32_t L_25;
L_25 = MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E_inline((&V_1), NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_26 = V_0;
UIInputModule_ProcessMouseButton_mCD0F73EA5A20835EE50E9F238E2BDA4865B0F391(__this, L_25, L_26, NULL);
// ProcessMouseButtonDrag(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_27 = V_0;
UIInputModule_ProcessMouseButtonDrag_m768E9FBBC339845C4E7849C71B86D14DEB91F141(__this, L_27, (1.0f), NULL);
// buttonState.CopyFrom(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_28 = V_0;
MouseButtonModel_CopyFrom_mDB836BEC9F0538CD4C75CC917EA71A474279B1E6((&V_1), L_28, NULL);
// mouseState.rightButton = buttonState;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_29 = ___mouseState0;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_30 = V_1;
MouseModel_set_rightButton_m41EB3062E8E1FD0F92D648F5591DBCE675E81FDF(L_29, L_30, NULL);
// buttonState = mouseState.middleButton;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_31 = ___mouseState0;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_32;
L_32 = MouseModel_get_middleButton_m8997BE389494AA17D6BF696BDF1E4889A68EA3C1_inline(L_31, NULL);
V_1 = L_32;
// buttonState.CopyTo(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_33 = V_0;
MouseButtonModel_CopyTo_mE192240DC4F3852B78A43812C3273BE692F95B04((&V_1), L_33, NULL);
// ProcessMouseButton(buttonState.lastFrameDelta, eventData);
int32_t L_34;
L_34 = MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E_inline((&V_1), NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_35 = V_0;
UIInputModule_ProcessMouseButton_mCD0F73EA5A20835EE50E9F238E2BDA4865B0F391(__this, L_34, L_35, NULL);
// ProcessMouseButtonDrag(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_36 = V_0;
UIInputModule_ProcessMouseButtonDrag_m768E9FBBC339845C4E7849C71B86D14DEB91F141(__this, L_36, (1.0f), NULL);
// buttonState.CopyFrom(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_37 = V_0;
MouseButtonModel_CopyFrom_mDB836BEC9F0538CD4C75CC917EA71A474279B1E6((&V_1), L_37, NULL);
// mouseState.middleButton = buttonState;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_38 = ___mouseState0;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_39 = V_1;
MouseModel_set_middleButton_m528B124FF921B92CD25CD2EE623D97B8DE01C318(L_38, L_39, NULL);
// mouseState.OnFrameFinished();
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_40 = ___mouseState0;
MouseModel_OnFrameFinished_m3C72244B03A8536965118B81CB098E355CCAE12D(L_40, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessMouseMovement(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessMouseMovement_m8654AF723206F8BE52803F57801811E4B54E9E41 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m07D362A07C19B36C2FD1B4DC79DD99903D4DA95D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m96F4B0BD0A5485C8E8CC57D961DF6F1FA256AF27_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m7236EBE1CFCB6533F96E030500D322B13D0CA5A4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m1213F2A971A7A51A5ECC489D28744318D57355EB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m8ED3323A06D78E8415B7A71D7EF4233770B49FAC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m43FBF207375C6E06B8C45ECE614F9B8008FB686E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mA843D26C63E5963415DFCA6E49DFA27AFD9C75E8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_mCCE85D4D5326536C4B214C73D07030F4CCD18485_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_1 = NULL;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_2;
memset((&V_2), 0, sizeof(V_2));
Enumerator_t88BD1282EF117E59AACFC9EC55B89F0B9EDACE60 V_3;
memset((&V_3), 0, sizeof(V_3));
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_4 = NULL;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_5 = NULL;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_6 = NULL;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_7 = NULL;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_8 = NULL;
Exception_t* __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B6_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B5_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B21_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B20_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B28_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B27_0 = NULL;
{
// var currentPointerTarget = eventData.pointerCurrentRaycast.gameObject;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___eventData0;
NullCheck(L_0);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_1;
L_1 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_0, NULL);
V_2 = L_1;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
L_2 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_2), NULL);
V_0 = L_2;
// if (currentPointerTarget == null || eventData.pointerEnter == null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_4)
{
goto IL_0026;
}
}
{
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5 = ___eventData0;
NullCheck(L_5);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6;
L_6 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_5, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_6, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_7)
{
goto IL_0094;
}
}
IL_0026:
{
// foreach (var hovered in eventData.hovered)
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = ___eventData0;
NullCheck(L_8);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_9 = L_8->___hovered_10;
NullCheck(L_9);
Enumerator_t88BD1282EF117E59AACFC9EC55B89F0B9EDACE60 L_10;
L_10 = List_1_GetEnumerator_mA843D26C63E5963415DFCA6E49DFA27AFD9C75E8(L_9, List_1_GetEnumerator_mA843D26C63E5963415DFCA6E49DFA27AFD9C75E8_RuntimeMethod_var);
V_3 = L_10;
}
IL_0032:
try
{// begin try (depth: 1)
{
goto IL_005f;
}
IL_0034:
{
// foreach (var hovered in eventData.hovered)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_11;
L_11 = Enumerator_get_Current_m7236EBE1CFCB6533F96E030500D322B13D0CA5A4_inline((&V_3), Enumerator_get_Current_m7236EBE1CFCB6533F96E030500D322B13D0CA5A4_RuntimeMethod_var);
V_4 = L_11;
// pointerExit?.Invoke(hovered, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_12 = __this->___pointerExit_21;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_13 = L_12;
G_B5_0 = L_13;
if (L_13)
{
G_B6_0 = L_13;
goto IL_0049;
}
}
IL_0046:
{
goto IL_0051;
}
IL_0049:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14 = V_4;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_15 = ___eventData0;
NullCheck(G_B6_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B6_0, L_14, L_15, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_0051:
{
// ExecuteEvents.Execute(hovered, eventData, ExecuteEvents.pointerExitHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_16 = V_4;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = ___eventData0;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* L_18;
L_18 = ExecuteEvents_get_pointerExitHandler_m154D2E32DCA968A218B1AC5997E5D8F68D4E5E77_inline(NULL);
bool L_19;
L_19 = ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m8ED3323A06D78E8415B7A71D7EF4233770B49FAC(L_16, L_17, L_18, ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m8ED3323A06D78E8415B7A71D7EF4233770B49FAC_RuntimeMethod_var);
}
IL_005f:
{
// foreach (var hovered in eventData.hovered)
bool L_20;
L_20 = Enumerator_MoveNext_m96F4B0BD0A5485C8E8CC57D961DF6F1FA256AF27((&V_3), Enumerator_MoveNext_m96F4B0BD0A5485C8E8CC57D961DF6F1FA256AF27_RuntimeMethod_var);
if (L_20)
{
goto IL_0034;
}
}
IL_0068:
{
IL2CPP_LEAVE(0x120, FINALLY_006a);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t*)e.ex;
goto FINALLY_006a;
}
FINALLY_006a:
{// begin finally (depth: 1)
Enumerator_Dispose_m07D362A07C19B36C2FD1B4DC79DD99903D4DA95D((&V_3), Enumerator_Dispose_m07D362A07C19B36C2FD1B4DC79DD99903D4DA95D_RuntimeMethod_var);
IL2CPP_END_FINALLY(106)
}// end finally (depth: 1)
IL2CPP_CLEANUP(106)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t*)
IL2CPP_JUMP_TBL(0x120, IL_0078)
}
IL_0078:
{
// eventData.hovered.Clear();
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_21 = ___eventData0;
NullCheck(L_21);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_22 = L_21->___hovered_10;
NullCheck(L_22);
List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline(L_22, List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
// if (currentPointerTarget == null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_23 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_24;
L_24 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_23, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_24)
{
goto IL_0094;
}
}
{
// eventData.pointerEnter = null;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_25 = ___eventData0;
NullCheck(L_25);
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_25, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
// return;
return;
}
IL_0094:
{
// if (eventData.pointerEnter == currentPointerTarget)
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_26 = ___eventData0;
NullCheck(L_26);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_27;
L_27 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_26, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_28 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_29;
L_29 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_27, L_28, NULL);
if (!L_29)
{
goto IL_00a3;
}
}
{
// return;
return;
}
IL_00a3:
{
// var commonRoot = FindCommonRoot(eventData.pointerEnter, currentPointerTarget);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_30 = ___eventData0;
NullCheck(L_30);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_31;
L_31 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_30, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_32 = V_0;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_33;
L_33 = BaseInputModule_FindCommonRoot_m1DF898E40BF0776AFEB75AE67F40946223797090(L_31, L_32, NULL);
V_1 = L_33;
// if (eventData.pointerEnter != null)
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_34 = ___eventData0;
NullCheck(L_34);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_35;
L_35 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_34, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_36;
L_36 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_35, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_36)
{
goto IL_0131;
}
}
{
// var target = eventData.pointerEnter.transform;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_37 = ___eventData0;
NullCheck(L_37);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_38;
L_38 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_37, NULL);
NullCheck(L_38);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_39;
L_39 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_38, NULL);
V_5 = L_39;
goto IL_0127;
}
IL_00cd:
{
// if (commonRoot != null && commonRoot.transform == target)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_40 = V_1;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_41;
L_41 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_40, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_41)
{
goto IL_00e5;
}
}
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_42 = V_1;
NullCheck(L_42);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_43;
L_43 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_42, NULL);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_44 = V_5;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_45;
L_45 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_43, L_44, NULL);
if (L_45)
{
goto IL_0131;
}
}
IL_00e5:
{
// var targetGameObject = target.gameObject;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_46 = V_5;
NullCheck(L_46);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_47;
L_47 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_46, NULL);
V_6 = L_47;
// pointerExit?.Invoke(targetGameObject, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_48 = __this->___pointerExit_21;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_49 = L_48;
G_B20_0 = L_49;
if (L_49)
{
G_B21_0 = L_49;
goto IL_00fa;
}
}
{
goto IL_0102;
}
IL_00fa:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_50 = V_6;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_51 = ___eventData0;
NullCheck(G_B21_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B21_0, L_50, L_51, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_0102:
{
// ExecuteEvents.Execute(targetGameObject, eventData, ExecuteEvents.pointerExitHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_52 = V_6;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_53 = ___eventData0;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* L_54;
L_54 = ExecuteEvents_get_pointerExitHandler_m154D2E32DCA968A218B1AC5997E5D8F68D4E5E77_inline(NULL);
bool L_55;
L_55 = ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m8ED3323A06D78E8415B7A71D7EF4233770B49FAC(L_52, L_53, L_54, ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m8ED3323A06D78E8415B7A71D7EF4233770B49FAC_RuntimeMethod_var);
// eventData.hovered.Remove(targetGameObject);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_56 = ___eventData0;
NullCheck(L_56);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_57 = L_56->___hovered_10;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_58 = V_6;
NullCheck(L_57);
bool L_59;
L_59 = List_1_Remove_mCCE85D4D5326536C4B214C73D07030F4CCD18485(L_57, L_58, List_1_Remove_mCCE85D4D5326536C4B214C73D07030F4CCD18485_RuntimeMethod_var);
// target = target.parent;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_60 = V_5;
NullCheck(L_60);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_61;
L_61 = Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E(L_60, NULL);
V_5 = L_61;
}
IL_0127:
{
// while (target != null)
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_62 = V_5;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_63;
L_63 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_62, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_63)
{
goto IL_00cd;
}
}
IL_0131:
{
// eventData.pointerEnter = currentPointerTarget;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_64 = ___eventData0;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_65 = V_0;
NullCheck(L_64);
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_64, L_65, NULL);
// if (currentPointerTarget != null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_66 = V_0;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_67;
L_67 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_66, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_67)
{
goto IL_01a5;
}
}
{
// var target = currentPointerTarget.transform;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_68 = V_0;
NullCheck(L_68);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_69;
L_69 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_68, NULL);
V_7 = L_69;
goto IL_018c;
}
IL_014b:
{
// var targetGameObject = target.gameObject;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_70 = V_7;
NullCheck(L_70);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_71;
L_71 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_70, NULL);
V_8 = L_71;
// pointerEnter?.Invoke(targetGameObject, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_72 = __this->___pointerEnter_20;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_73 = L_72;
G_B27_0 = L_73;
if (L_73)
{
G_B28_0 = L_73;
goto IL_0160;
}
}
{
goto IL_0168;
}
IL_0160:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_74 = V_8;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_75 = ___eventData0;
NullCheck(G_B28_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B28_0, L_74, L_75, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_0168:
{
// ExecuteEvents.Execute(targetGameObject, eventData, ExecuteEvents.pointerEnterHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_76 = V_8;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_77 = ___eventData0;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* L_78;
L_78 = ExecuteEvents_get_pointerEnterHandler_m590CE74EB8D301A4E92EC941C5E644B7C2DE39E9_inline(NULL);
bool L_79;
L_79 = ExecuteEvents_Execute_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m1213F2A971A7A51A5ECC489D28744318D57355EB(L_76, L_77, L_78, ExecuteEvents_Execute_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m1213F2A971A7A51A5ECC489D28744318D57355EB_RuntimeMethod_var);
// eventData.hovered.Add(targetGameObject);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_80 = ___eventData0;
NullCheck(L_80);
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_81 = L_80->___hovered_10;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_82 = V_8;
NullCheck(L_81);
List_1_Add_m43FBF207375C6E06B8C45ECE614F9B8008FB686E_inline(L_81, L_82, List_1_Add_m43FBF207375C6E06B8C45ECE614F9B8008FB686E_RuntimeMethod_var);
// target = target.parent;
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_83 = V_7;
NullCheck(L_83);
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_84;
L_84 = Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E(L_83, NULL);
V_7 = L_84;
}
IL_018c:
{
// while (target != null && target.gameObject != commonRoot)
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_85 = V_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_86;
L_86 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_85, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_86)
{
goto IL_01a5;
}
}
{
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_87 = V_7;
NullCheck(L_87);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_88;
L_88 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_87, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_89 = V_1;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_90;
L_90 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_88, L_89, NULL);
if (L_90)
{
goto IL_014b;
}
}
IL_01a5:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessMouseButton(UnityEngine.XR.Interaction.Toolkit.UI.ButtonDeltaState,UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessMouseButton_mCD0F73EA5A20835EE50E9F238E2BDA4865B0F391 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, int32_t ___mouseButtonChanges0, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m4C9DA44082FBE5886FBFBFE66CBC89771C7971C5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mAAB1B55CF77D247B61D04981A59169EFFE9E0AFD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_mF257FA331CEC3705FC5A620859468C5B9AF0F756_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_m3C0AB91A07534AE98AC11E5B57F40BFF17544993_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_mB18F35F748E39943F1C1AE45EE7D15EBDF39833D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_m9FC5FE3B9CC6D87743F88BD3B2B437653DF82673_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m7F91F49169EDCAE4A288B31A5E5DE7600BEC5952_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m7B3F3A069FC951B1807EE83D8EE034137BBE248F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m24416E302B1BDD2CCDDB58B1E20423E4B02F2D7A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_1;
memset((&V_1), 0, sizeof(V_1));
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_2 = NULL;
float V_3 = 0.0f;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_4 = NULL;
int32_t V_5 = 0;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_6 = NULL;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_7 = NULL;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_8 = NULL;
bool V_9 = false;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_10 = NULL;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_11 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B5_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B4_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B15_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B14_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B20_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B19_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B25_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B24_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B31_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B30_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B34_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B33_0 = NULL;
{
// var hoverTarget = eventData.pointerCurrentRaycast.gameObject;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___eventData1;
NullCheck(L_0);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_1;
L_1 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_0, NULL);
V_1 = L_1;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
L_2 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_1), NULL);
V_0 = L_2;
// if ((mouseButtonChanges & ButtonDeltaState.Pressed) != 0)
int32_t L_3 = ___mouseButtonChanges0;
if (!((int32_t)((int32_t)L_3&(int32_t)1)))
{
goto IL_012d;
}
}
{
// eventData.eligibleForClick = true;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___eventData1;
NullCheck(L_4);
PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline(L_4, (bool)1, NULL);
// eventData.delta = Vector2.zero;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5 = ___eventData1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
L_6 = Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline(NULL);
NullCheck(L_5);
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_5, L_6, NULL);
// eventData.dragging = false;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = ___eventData1;
NullCheck(L_7);
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_7, (bool)0, NULL);
// eventData.pressPosition = eventData.position;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = ___eventData1;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_9 = ___eventData1;
NullCheck(L_9);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10;
L_10 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_9, NULL);
NullCheck(L_8);
PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline(L_8, L_10, NULL);
// eventData.pointerPressRaycast = eventData.pointerCurrentRaycast;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_11 = ___eventData1;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = ___eventData1;
NullCheck(L_12);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_13;
L_13 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_12, NULL);
NullCheck(L_11);
PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852_inline(L_11, L_13, NULL);
// var selectHandler = ExecuteEvents.GetEventHandler<ISelectHandler>(hoverTarget);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14 = V_0;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_15;
L_15 = ExecuteEvents_GetEventHandler_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m24416E302B1BDD2CCDDB58B1E20423E4B02F2D7A(L_14, ExecuteEvents_GetEventHandler_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m24416E302B1BDD2CCDDB58B1E20423E4B02F2D7A_RuntimeMethod_var);
// if (selectHandler != eventSystem.currentSelectedGameObject)
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_16;
L_16 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
NullCheck(L_16);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_17;
L_17 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_16, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_18;
L_18 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_15, L_17, NULL);
if (!L_18)
{
goto IL_006d;
}
}
{
// eventSystem.SetSelectedGameObject(null, eventData);
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_19;
L_19 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_20 = ___eventData1;
NullCheck(L_19);
EventSystem_SetSelectedGameObject_m9675415B7B3FE13B35E2CCB220F0C8AF04ECA173(L_19, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, L_20, NULL);
}
IL_006d:
{
// pointerDown?.Invoke(hoverTarget, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_21 = __this->___pointerDown_22;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_22 = L_21;
G_B4_0 = L_22;
if (L_22)
{
G_B5_0 = L_22;
goto IL_0079;
}
}
{
goto IL_0080;
}
IL_0079:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_23 = V_0;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_24 = ___eventData1;
NullCheck(G_B5_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B5_0, L_23, L_24, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_0080:
{
// var newPressed = ExecuteEvents.ExecuteHierarchy(hoverTarget, eventData, ExecuteEvents.pointerDownHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_25 = V_0;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_26 = ___eventData1;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* L_27;
L_27 = ExecuteEvents_get_pointerDownHandler_mF03E3A959BA9C0FA008013C1A02AE0AF6042DF44_inline(NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_28;
L_28 = ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mAAB1B55CF77D247B61D04981A59169EFFE9E0AFD(L_25, L_26, L_27, ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mAAB1B55CF77D247B61D04981A59169EFFE9E0AFD_RuntimeMethod_var);
V_2 = L_28;
// if (newPressed == null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_29 = V_2;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_30;
L_30 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_29, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_30)
{
goto IL_009d;
}
}
{
// newPressed = ExecuteEvents.GetEventHandler<IPointerClickHandler>(hoverTarget);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_31 = V_0;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_32;
L_32 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m7B3F3A069FC951B1807EE83D8EE034137BBE248F(L_31, ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m7B3F3A069FC951B1807EE83D8EE034137BBE248F_RuntimeMethod_var);
V_2 = L_32;
}
IL_009d:
{
// var time = Time.unscaledTime;
float L_33;
L_33 = Time_get_unscaledTime_m99A3C76AB74B5278B44A5E8B3498E51ABBF793CA(NULL);
V_3 = L_33;
// if (newPressed == eventData.lastPress && ((time - eventData.clickTime) < m_ClickSpeed))
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_34 = V_2;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_35 = ___eventData1;
NullCheck(L_35);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_36;
L_36 = PointerEventData_get_lastPress_m46720C62503214A44EE947679A8BA307BC2AEEDC_inline(L_35, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_37;
L_37 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_34, L_36, NULL);
if (!L_37)
{
goto IL_00d5;
}
}
{
float L_38 = V_3;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_39 = ___eventData1;
NullCheck(L_39);
float L_40;
L_40 = PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline(L_39, NULL);
float L_41 = __this->___m_ClickSpeed_10;
if ((!(((float)((float)il2cpp_codegen_subtract((float)L_38, (float)L_40))) < ((float)L_41))))
{
goto IL_00d5;
}
}
{
// ++eventData.clickCount;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_42 = ___eventData1;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_43 = L_42;
NullCheck(L_43);
int32_t L_44;
L_44 = PointerEventData_get_clickCount_m3977011C09DB9F904B1AAC3708B821B8D6AC0F9F_inline(L_43, NULL);
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
int32_t L_45 = V_5;
NullCheck(L_43);
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_43, L_45, NULL);
goto IL_00dc;
}
IL_00d5:
{
// eventData.clickCount = 1;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_46 = ___eventData1;
NullCheck(L_46);
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_46, 1, NULL);
}
IL_00dc:
{
// eventData.clickTime = time;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_47 = ___eventData1;
float L_48 = V_3;
NullCheck(L_47);
PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline(L_47, L_48, NULL);
// eventData.pointerPress = newPressed;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_49 = ___eventData1;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_50 = V_2;
NullCheck(L_49);
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_49, L_50, NULL);
// eventData.rawPointerPress = hoverTarget;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_51 = ___eventData1;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_52 = V_0;
NullCheck(L_51);
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_51, L_52, NULL);
// var dragObject = ExecuteEvents.GetEventHandler<IDragHandler>(hoverTarget);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_53 = V_0;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_54;
L_54 = ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m7F91F49169EDCAE4A288B31A5E5DE7600BEC5952(L_53, ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m7F91F49169EDCAE4A288B31A5E5DE7600BEC5952_RuntimeMethod_var);
V_4 = L_54;
// eventData.pointerDrag = dragObject;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_55 = ___eventData1;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_56 = V_4;
NullCheck(L_55);
PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline(L_55, L_56, NULL);
// if (dragObject != null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_57 = V_4;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_58;
L_58 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_57, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_58)
{
goto IL_012d;
}
}
{
// initializePotentialDrag?.Invoke(dragObject, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_59 = __this->___initializePotentialDrag_25;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_60 = L_59;
G_B14_0 = L_60;
if (L_60)
{
G_B15_0 = L_60;
goto IL_0117;
}
}
{
goto IL_011f;
}
IL_0117:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_61 = V_4;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_62 = ___eventData1;
NullCheck(G_B15_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B15_0, L_61, L_62, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_011f:
{
// ExecuteEvents.Execute(dragObject, eventData, ExecuteEvents.initializePotentialDrag);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_63 = V_4;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_64 = ___eventData1;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* L_65;
L_65 = ExecuteEvents_get_initializePotentialDrag_mD6C19D7BF028E6319B08CBF2BB7F0B8FDEEB03F1_inline(NULL);
bool L_66;
L_66 = ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_m3C0AB91A07534AE98AC11E5B57F40BFF17544993(L_63, L_64, L_65, ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_m3C0AB91A07534AE98AC11E5B57F40BFF17544993_RuntimeMethod_var);
}
IL_012d:
{
// if ((mouseButtonChanges & ButtonDeltaState.Released) != 0)
int32_t L_67 = ___mouseButtonChanges0;
if (!((int32_t)((int32_t)L_67&(int32_t)2)))
{
goto IL_0229;
}
}
{
// var target = eventData.pointerPress;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_68 = ___eventData1;
NullCheck(L_68);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_69;
L_69 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_68, NULL);
V_6 = L_69;
// pointerUp?.Invoke(target, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_70 = __this->___pointerUp_23;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_71 = L_70;
G_B19_0 = L_71;
if (L_71)
{
G_B20_0 = L_71;
goto IL_0149;
}
}
{
goto IL_0151;
}
IL_0149:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_72 = V_6;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_73 = ___eventData1;
NullCheck(G_B20_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B20_0, L_72, L_73, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_0151:
{
// ExecuteEvents.Execute(target, eventData, ExecuteEvents.pointerUpHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_74 = V_6;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_75 = ___eventData1;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* L_76;
L_76 = ExecuteEvents_get_pointerUpHandler_mD03905CA3A384EC6AA81326758AB878087DC8C86_inline(NULL);
bool L_77;
L_77 = ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_m9FC5FE3B9CC6D87743F88BD3B2B437653DF82673(L_74, L_75, L_76, ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_m9FC5FE3B9CC6D87743F88BD3B2B437653DF82673_RuntimeMethod_var);
// var pointerUpHandler = ExecuteEvents.GetEventHandler<IPointerClickHandler>(hoverTarget);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_78 = V_0;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_79;
L_79 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m7B3F3A069FC951B1807EE83D8EE034137BBE248F(L_78, ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m7B3F3A069FC951B1807EE83D8EE034137BBE248F_RuntimeMethod_var);
V_7 = L_79;
// var pointerDrag = eventData.pointerDrag;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_80 = ___eventData1;
NullCheck(L_80);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_81;
L_81 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_80, NULL);
V_8 = L_81;
// if (target == pointerUpHandler && eventData.eligibleForClick)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_82 = V_6;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_83 = V_7;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_84;
L_84 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_82, L_83, NULL);
if (!L_84)
{
goto IL_01a6;
}
}
{
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_85 = ___eventData1;
NullCheck(L_85);
bool L_86;
L_86 = PointerEventData_get_eligibleForClick_m4B01A1640C694FD7421BDFB19CF763BC85672C8E_inline(L_85, NULL);
if (!L_86)
{
goto IL_01a6;
}
}
{
// pointerClick?.Invoke(target, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_87 = __this->___pointerClick_24;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_88 = L_87;
G_B24_0 = L_88;
if (L_88)
{
G_B25_0 = L_88;
goto IL_018e;
}
}
{
goto IL_0196;
}
IL_018e:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_89 = V_6;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_90 = ___eventData1;
NullCheck(G_B25_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B25_0, L_89, L_90, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_0196:
{
// ExecuteEvents.Execute(target, eventData, ExecuteEvents.pointerClickHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_91 = V_6;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_92 = ___eventData1;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* L_93;
L_93 = ExecuteEvents_get_pointerClickHandler_m4BF7FB241BD3AE488E0E1BE900666ECC2F2DFA78_inline(NULL);
bool L_94;
L_94 = ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_mB18F35F748E39943F1C1AE45EE7D15EBDF39833D(L_91, L_92, L_93, ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_mB18F35F748E39943F1C1AE45EE7D15EBDF39833D_RuntimeMethod_var);
goto IL_01fa;
}
IL_01a6:
{
// else if (eventData.dragging && pointerDrag != null)
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_95 = ___eventData1;
NullCheck(L_95);
bool L_96;
L_96 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_95, NULL);
if (!L_96)
{
goto IL_01fa;
}
}
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_97 = V_8;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_98;
L_98 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_97, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_98)
{
goto IL_01fa;
}
}
{
// drop?.Invoke(hoverTarget, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_99 = __this->___drop_29;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_100 = L_99;
G_B30_0 = L_100;
if (L_100)
{
G_B31_0 = L_100;
goto IL_01c4;
}
}
{
goto IL_01cb;
}
IL_01c4:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_101 = V_0;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_102 = ___eventData1;
NullCheck(G_B31_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B31_0, L_101, L_102, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_01cb:
{
// ExecuteEvents.ExecuteHierarchy(hoverTarget, eventData, ExecuteEvents.dropHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_103 = V_0;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_104 = ___eventData1;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* L_105;
L_105 = ExecuteEvents_get_dropHandler_m61ECC86CEAC77AA7C7E7793F6241D2413858354C_inline(NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_106;
L_106 = ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m4C9DA44082FBE5886FBFBFE66CBC89771C7971C5(L_103, L_104, L_105, ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m4C9DA44082FBE5886FBFBFE66CBC89771C7971C5_RuntimeMethod_var);
// endDrag?.Invoke(pointerDrag, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_107 = __this->___endDrag_28;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_108 = L_107;
G_B33_0 = L_108;
if (L_108)
{
G_B34_0 = L_108;
goto IL_01e4;
}
}
{
goto IL_01ec;
}
IL_01e4:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_109 = V_8;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_110 = ___eventData1;
NullCheck(G_B34_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B34_0, L_109, L_110, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_01ec:
{
// ExecuteEvents.Execute(pointerDrag, eventData, ExecuteEvents.endDragHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_111 = V_8;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_112 = ___eventData1;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* L_113;
L_113 = ExecuteEvents_get_endDragHandler_m6F1588E368AD932233A5E6BCD8D7259E9C5B921E_inline(NULL);
bool L_114;
L_114 = ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_mF257FA331CEC3705FC5A620859468C5B9AF0F756(L_111, L_112, L_113, ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_mF257FA331CEC3705FC5A620859468C5B9AF0F756_RuntimeMethod_var);
}
IL_01fa:
{
// eventData.eligibleForClick = eventData.dragging = false;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_115 = ___eventData1;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_116 = ___eventData1;
int32_t L_117 = 0;
V_9 = (bool)L_117;
NullCheck(L_116);
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_116, (bool)L_117, NULL);
bool L_118 = V_9;
NullCheck(L_115);
PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline(L_115, L_118, NULL);
// eventData.pointerPress = eventData.rawPointerPress = eventData.pointerDrag = null;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_119 = ___eventData1;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_120 = ___eventData1;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_121 = ___eventData1;
V_11 = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL;
NullCheck(L_121);
PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline(L_121, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_122 = V_11;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_123 = L_122;
V_10 = L_123;
NullCheck(L_120);
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_120, L_123, NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_124 = V_10;
NullCheck(L_119);
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_119, L_124, NULL);
}
IL_0229:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessMouseButtonDrag(UnityEngine.EventSystems.PointerEventData,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessMouseButtonDrag_m768E9FBBC339845C4E7849C71B86D14DEB91F141 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, float ___pixelDragThresholdMultiplier1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_m186924444C6950BA260CFE27CEFE0F76402342A2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m0E5281FDDCB78D969625ECB14A393CA5D572C3A8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_m9FC5FE3B9CC6D87743F88BD3B2B437653DF82673_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_1 = NULL;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_2 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B8_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B7_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B14_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B13_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B18_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B17_0 = NULL;
{
// if (!eventData.IsPointerMoving() ||
// Cursor.lockState == CursorLockMode.Locked ||
// eventData.pointerDrag == null)
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___eventData0;
NullCheck(L_0);
bool L_1;
L_1 = PointerEventData_IsPointerMoving_m281B3698E618D116F3D1E7473BADFAE5B67C834E(L_0, NULL);
if (!L_1)
{
goto IL_001e;
}
}
{
int32_t L_2;
L_2 = Cursor_get_lockState_m99E97A23A051AA1167B9C49C3F6E8244E74531AE(NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_001e;
}
}
{
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = ___eventData0;
NullCheck(L_3);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
L_4 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_3, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_5)
{
goto IL_001f;
}
}
IL_001e:
{
// return;
return;
}
IL_001f:
{
// if (!eventData.dragging)
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = ___eventData0;
NullCheck(L_6);
bool L_7;
L_7 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_6, NULL);
if (L_7)
{
goto IL_008a;
}
}
{
// if ((eventData.pressPosition - eventData.position).sqrMagnitude >= ((eventSystem.pixelDragThreshold * eventSystem.pixelDragThreshold) * pixelDragThresholdMultiplier))
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = ___eventData0;
NullCheck(L_8);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
L_9 = PointerEventData_get_pressPosition_m8A6788DA6BF81481E4EBCBA2ED1838F786EBAE63_inline(L_8, NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = ___eventData0;
NullCheck(L_10);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
L_11 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_10, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12;
L_12 = Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8_inline(L_9, L_11, NULL);
V_0 = L_12;
float L_13;
L_13 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_0), NULL);
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_14;
L_14 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
NullCheck(L_14);
int32_t L_15;
L_15 = EventSystem_get_pixelDragThreshold_m2F7B0D1B5ACC63EB507FD7CCFE74F2B2804FF2E3_inline(L_14, NULL);
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_16;
L_16 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
NullCheck(L_16);
int32_t L_17;
L_17 = EventSystem_get_pixelDragThreshold_m2F7B0D1B5ACC63EB507FD7CCFE74F2B2804FF2E3_inline(L_16, NULL);
float L_18 = ___pixelDragThresholdMultiplier1;
if ((!(((float)L_13) >= ((float)((float)il2cpp_codegen_multiply((float)((float)((float)((int32_t)il2cpp_codegen_multiply((int32_t)L_15, (int32_t)L_17)))), (float)L_18))))))
{
goto IL_008a;
}
}
{
// var target = eventData.pointerDrag;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = ___eventData0;
NullCheck(L_19);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_20;
L_20 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_19, NULL);
V_1 = L_20;
// beginDrag?.Invoke(target, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_21 = __this->___beginDrag_26;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_22 = L_21;
G_B7_0 = L_22;
if (L_22)
{
G_B8_0 = L_22;
goto IL_006f;
}
}
{
goto IL_0076;
}
IL_006f:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_23 = V_1;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_24 = ___eventData0;
NullCheck(G_B8_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B8_0, L_23, L_24, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_0076:
{
// ExecuteEvents.Execute(target, eventData, ExecuteEvents.beginDragHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_25 = V_1;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_26 = ___eventData0;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* L_27;
L_27 = ExecuteEvents_get_beginDragHandler_m330A9FEFFAF518FC1DAABE7A425BEB345B019421_inline(NULL);
bool L_28;
L_28 = ExecuteEvents_Execute_TisIBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_m186924444C6950BA260CFE27CEFE0F76402342A2(L_25, L_26, L_27, ExecuteEvents_Execute_TisIBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_m186924444C6950BA260CFE27CEFE0F76402342A2_RuntimeMethod_var);
// eventData.dragging = true;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_29 = ___eventData0;
NullCheck(L_29);
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_29, (bool)1, NULL);
}
IL_008a:
{
// if (eventData.dragging)
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_30 = ___eventData0;
NullCheck(L_30);
bool L_31;
L_31 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_30, NULL);
if (!L_31)
{
goto IL_0106;
}
}
{
// var target = eventData.pointerPress;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_32 = ___eventData0;
NullCheck(L_32);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_33;
L_33 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_32, NULL);
V_2 = L_33;
// if (target != eventData.pointerDrag)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_34 = V_2;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_35 = ___eventData0;
NullCheck(L_35);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_36;
L_36 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_35, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_37;
L_37 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_34, L_36, NULL);
if (!L_37)
{
goto IL_00dc;
}
}
{
// pointerUp?.Invoke(target, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_38 = __this->___pointerUp_23;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_39 = L_38;
G_B13_0 = L_39;
if (L_39)
{
G_B14_0 = L_39;
goto IL_00b3;
}
}
{
goto IL_00ba;
}
IL_00b3:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_40 = V_2;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_41 = ___eventData0;
NullCheck(G_B14_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B14_0, L_40, L_41, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_00ba:
{
// ExecuteEvents.Execute(target, eventData, ExecuteEvents.pointerUpHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_42 = V_2;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_43 = ___eventData0;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* L_44;
L_44 = ExecuteEvents_get_pointerUpHandler_mD03905CA3A384EC6AA81326758AB878087DC8C86_inline(NULL);
bool L_45;
L_45 = ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_m9FC5FE3B9CC6D87743F88BD3B2B437653DF82673(L_42, L_43, L_44, ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_m9FC5FE3B9CC6D87743F88BD3B2B437653DF82673_RuntimeMethod_var);
// eventData.eligibleForClick = false;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_46 = ___eventData0;
NullCheck(L_46);
PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline(L_46, (bool)0, NULL);
// eventData.pointerPress = null;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_47 = ___eventData0;
NullCheck(L_47);
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_47, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
// eventData.rawPointerPress = null;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_48 = ___eventData0;
NullCheck(L_48);
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_48, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
}
IL_00dc:
{
// drag?.Invoke(eventData.pointerDrag, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_49 = __this->___drag_27;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_50 = L_49;
G_B17_0 = L_50;
if (L_50)
{
G_B18_0 = L_50;
goto IL_00e8;
}
}
{
goto IL_00f4;
}
IL_00e8:
{
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_51 = ___eventData0;
NullCheck(L_51);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_52;
L_52 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_51, NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_53 = ___eventData0;
NullCheck(G_B18_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B18_0, L_52, L_53, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_00f4:
{
// ExecuteEvents.Execute(eventData.pointerDrag, eventData, ExecuteEvents.dragHandler);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_54 = ___eventData0;
NullCheck(L_54);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_55;
L_55 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_54, NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_56 = ___eventData0;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* L_57;
L_57 = ExecuteEvents_get_dragHandler_m301F931ED0A78DBF5838822F836FBD221A57C76A_inline(NULL);
bool L_58;
L_58 = ExecuteEvents_Execute_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m0E5281FDDCB78D969625ECB14A393CA5D572C3A8(L_55, L_56, L_57, ExecuteEvents_Execute_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m0E5281FDDCB78D969625ECB14A393CA5D572C3A8_RuntimeMethod_var);
}
IL_0106:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessMouseScroll(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessMouseScroll_m8A93D635F089F339891607F19D746BA4DB11452F (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_mBF61EACBCD0DBA4546054C1E27DEBABE226AEB6D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m06334DCDF81CE782B175B591853E95AEE623A740_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B3_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* G_B2_0 = NULL;
{
// var scrollDelta = eventData.scrollDelta;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___eventData0;
NullCheck(L_0);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
L_1 = PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline(L_0, NULL);
V_0 = L_1;
// if (!Mathf.Approximately(scrollDelta.sqrMagnitude, 0f))
float L_2;
L_2 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_0), NULL);
bool L_3;
L_3 = Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline(L_2, (0.0f), NULL);
if (L_3)
{
goto IL_0046;
}
}
{
// var scrollHandler = ExecuteEvents.GetEventHandler<IScrollHandler>(eventData.pointerEnter);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___eventData0;
NullCheck(L_4);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5;
L_5 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_4, NULL);
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6;
L_6 = ExecuteEvents_GetEventHandler_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m06334DCDF81CE782B175B591853E95AEE623A740(L_5, ExecuteEvents_GetEventHandler_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m06334DCDF81CE782B175B591853E95AEE623A740_RuntimeMethod_var);
V_1 = L_6;
// scroll?.Invoke(scrollHandler, eventData);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = __this->___scroll_30;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8 = L_7;
G_B2_0 = L_8;
if (L_8)
{
G_B3_0 = L_8;
goto IL_0032;
}
}
{
goto IL_0039;
}
IL_0032:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9 = V_1;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = ___eventData0;
NullCheck(G_B3_0);
Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2(G_B3_0, L_9, L_10, Action_2_Invoke_m40C692337889E0747FA1B34CB8AA01FFF5EDF1A2_RuntimeMethod_var);
}
IL_0039:
{
// ExecuteEvents.ExecuteHierarchy(scrollHandler, eventData, ExecuteEvents.scrollHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_11 = V_1;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = ___eventData0;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* L_13;
L_13 = ExecuteEvents_get_scrollHandler_m2C857BD9AD23E281213BEAFD9ECCE080A784CF08_inline(NULL);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14;
L_14 = ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_mBF61EACBCD0DBA4546054C1E27DEBABE226AEB6D(L_11, L_12, L_13, ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_mBF61EACBCD0DBA4546054C1E27DEBABE226AEB6D_RuntimeMethod_var);
}
IL_0046:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessTouch(UnityEngine.XR.Interaction.Toolkit.UI.TouchModel&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessTouch_m6E005B10690A60C60030CCB1803BA683337224FE (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* ___touchState0, const RuntimeMethod* method)
{
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_0 = NULL;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_1;
memset((&V_1), 0, sizeof(V_1));
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B4_0 = NULL;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B3_0 = NULL;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 G_B5_0;
memset((&G_B5_0), 0, sizeof(G_B5_0));
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B5_1 = NULL;
{
// if (!touchState.changedThisFrame)
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_0 = ___touchState0;
bool L_1;
L_1 = TouchModel_get_changedThisFrame_mAF76A9DB5F6F80A8BE56ADB2BDD35E55A5BE717B_inline(L_0, NULL);
if (L_1)
{
goto IL_0009;
}
}
{
// return;
return;
}
IL_0009:
{
// var eventData = GetOrCreateCachedPointerEvent();
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
L_2 = UIInputModule_GetOrCreateCachedPointerEvent_mBA7B83A85F177D7D70FFC22976A2D81F767C2190(__this, NULL);
V_0 = L_2;
// eventData.Reset();
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = V_0;
NullCheck(L_3);
VirtualActionInvoker0::Invoke(4 /* System.Void UnityEngine.EventSystems.AbstractEventData::Reset() */, L_3);
// touchState.CopyTo(eventData);
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_4 = ___touchState0;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5 = V_0;
TouchModel_CopyTo_mDDC9DCAA045380589E0325B4D8D272E419D4A75C(L_4, L_5, NULL);
// eventData.pointerCurrentRaycast = (touchState.selectPhase == TouchPhase.Canceled) ? new RaycastResult() : PerformRaycast(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = V_0;
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_7 = ___touchState0;
int32_t L_8;
L_8 = TouchModel_get_selectPhase_m8EF259C3B4DE6A8B17699E796E4294405E07450D_inline(L_7, NULL);
G_B3_0 = L_6;
if ((((int32_t)L_8) == ((int32_t)4)))
{
G_B4_0 = L_6;
goto IL_0030;
}
}
{
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_9 = V_0;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_10;
L_10 = UIInputModule_PerformRaycast_m4716E7450EC96B541A924BB1DC20E58B2F159B28(__this, L_9, NULL);
G_B5_0 = L_10;
G_B5_1 = G_B3_0;
goto IL_0039;
}
IL_0030:
{
il2cpp_codegen_initobj((&V_1), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_11 = V_1;
G_B5_0 = L_11;
G_B5_1 = G_B4_0;
}
IL_0039:
{
NullCheck(G_B5_1);
PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667_inline(G_B5_1, G_B5_0, NULL);
// eventData.button = PointerEventData.InputButton.Left;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = V_0;
NullCheck(L_12);
PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601_inline(L_12, 0, NULL);
// ProcessMouseButton(touchState.selectDelta, eventData);
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_13 = ___touchState0;
int32_t L_14;
L_14 = TouchModel_get_selectDelta_mE61F993C8533C9E3BBEB2BDBDC65DB68D19C15C5_inline(L_13, NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_15 = V_0;
UIInputModule_ProcessMouseButton_mCD0F73EA5A20835EE50E9F238E2BDA4865B0F391(__this, L_14, L_15, NULL);
// ProcessMouseMovement(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_16 = V_0;
UIInputModule_ProcessMouseMovement_m8654AF723206F8BE52803F57801811E4B54E9E41(__this, L_16, NULL);
// ProcessMouseButtonDrag(eventData);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = V_0;
UIInputModule_ProcessMouseButtonDrag_m768E9FBBC339845C4E7849C71B86D14DEB91F141(__this, L_17, (1.0f), NULL);
// touchState.CopyFrom(eventData);
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_18 = ___touchState0;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = V_0;
TouchModel_CopyFrom_m6727074A88A573B3B5A696C9BAC2EE03F1FD70FF(L_18, L_19, NULL);
// touchState.OnFrameFinished();
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_20 = ___touchState0;
TouchModel_OnFrameFinished_m4FD14ED5AF9964A444CD372A80B81ED55671FEF2(L_20, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessTrackedDevice(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessTrackedDevice_m82718A0C6C9B13B6FEAC0967D3DBAC75BD3C5E86 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* ___deviceState0, bool ___force1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* V_0 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
memset((&V_1), 0, sizeof(V_1));
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_2 = NULL;
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_3 = NULL;
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* V_4 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_5;
memset((&V_5), 0, sizeof(V_5));
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_6;
memset((&V_6), 0, sizeof(V_6));
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_7;
memset((&V_7), 0, sizeof(V_7));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_8;
memset((&V_8), 0, sizeof(V_8));
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* G_B6_0 = NULL;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B15_0;
memset((&G_B15_0), 0, sizeof(G_B15_0));
{
// if (!deviceState.changedThisFrame && !force)
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_0 = ___deviceState0;
bool L_1;
L_1 = TrackedDeviceModel_get_changedThisFrame_m4C3C35C841B822ABB3D5DEE90F26FA74D8EE9FE1_inline(L_0, NULL);
if (L_1)
{
goto IL_000c;
}
}
{
bool L_2 = ___force1;
if (L_2)
{
goto IL_000c;
}
}
{
// return;
return;
}
IL_000c:
{
// var eventData = GetOrCreateCachedTrackedDeviceEvent();
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_3;
L_3 = UIInputModule_GetOrCreateCachedTrackedDeviceEvent_m09E1192845548AD20C54F91A2776F719883ED73D(__this, NULL);
V_0 = L_3;
// eventData.Reset();
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_4 = V_0;
NullCheck(L_4);
VirtualActionInvoker0::Invoke(4 /* System.Void UnityEngine.EventSystems.AbstractEventData::Reset() */, L_4);
// deviceState.CopyTo(eventData);
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_5 = ___deviceState0;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_6 = V_0;
TrackedDeviceModel_CopyTo_m077D1C3D2AB67EE3E95101C04E8ABDFD5D82D56B(L_5, L_6, NULL);
// eventData.button = PointerEventData.InputButton.Left;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_7 = V_0;
NullCheck(L_7);
PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601_inline(L_7, 0, NULL);
// var savedPosition = eventData.position;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_8 = V_0;
NullCheck(L_8);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
L_9 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_8, NULL);
V_1 = L_9;
// eventData.position = new Vector2(float.MinValue, float.MinValue);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_10 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
memset((&L_11), 0, sizeof(L_11));
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_11), (-(std::numeric_limits<float>::max)()), (-(std::numeric_limits<float>::max)()), /*hidden argument*/NULL);
NullCheck(L_10);
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_10, L_11, NULL);
// eventData.pointerCurrentRaycast = PerformRaycast(eventData);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_12 = V_0;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_13 = V_0;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_14;
L_14 = UIInputModule_PerformRaycast_m4716E7450EC96B541A924BB1DC20E58B2F159B28(__this, L_13, NULL);
NullCheck(L_12);
PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667_inline(L_12, L_14, NULL);
// eventData.position = savedPosition;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_15 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16 = V_1;
NullCheck(L_15);
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_15, L_16, NULL);
// var camera = uiCamera != null ? uiCamera : (uiCamera = Camera.main);
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_17;
L_17 = UIInputModule_get_uiCamera_mE7FE3483DD96250D5E9C4EEA0E4ADD4FAC1E7647_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_18;
L_18 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_17, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (L_18)
{
goto IL_0075;
}
}
{
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_19;
L_19 = Camera_get_main_mF222B707D3BF8CC9C7544609EFC71CFB62E81D43(NULL);
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_20 = L_19;
V_3 = L_20;
UIInputModule_set_uiCamera_m37C392685DE455B9197AC432551BA808A1A9001D_inline(__this, L_20, NULL);
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_21 = V_3;
G_B6_0 = L_21;
goto IL_007b;
}
IL_0075:
{
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_22;
L_22 = UIInputModule_get_uiCamera_mE7FE3483DD96250D5E9C4EEA0E4ADD4FAC1E7647_inline(__this, NULL);
G_B6_0 = L_22;
}
IL_007b:
{
V_2 = G_B6_0;
// if (camera == null)
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_23 = V_2;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_24;
L_24 = Object_op_Equality_mD3DB0D72CE0250C84033DC2A90AEF9D59896E536(L_23, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_24)
{
goto IL_00a4;
}
}
{
// var module = eventData.pointerCurrentRaycast.module;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_25 = V_0;
NullCheck(L_25);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_26;
L_26 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_25, NULL);
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_27 = L_26.___module_1;
V_4 = L_27;
// if (module != null)
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_28 = V_4;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_29;
L_29 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_28, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_29)
{
goto IL_00a4;
}
}
{
// camera = module.eventCamera;
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_30 = V_4;
NullCheck(L_30);
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_31;
L_31 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, L_30);
V_2 = L_31;
}
IL_00a4:
{
// if (camera != null)
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_32 = V_2;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_33;
L_33 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_32, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_33)
{
goto IL_016f;
}
}
{
// if (eventData.pointerCurrentRaycast.isValid)
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_34 = V_0;
NullCheck(L_34);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_35;
L_35 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_34, NULL);
V_7 = L_35;
bool L_36;
L_36 = RaycastResult_get_isValid_m69957B97C041A9E3FAF4ECA82BB8099C9FA171CE((&V_7), NULL);
if (!L_36)
{
goto IL_00db;
}
}
{
// screenPosition = camera.WorldToScreenPoint(eventData.pointerCurrentRaycast.worldPosition);
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_37 = V_2;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_38 = V_0;
NullCheck(L_38);
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_39;
L_39 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_38, NULL);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_40 = L_39.___worldPosition_7;
NullCheck(L_37);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_41;
L_41 = Camera_WorldToScreenPoint_m26B4C8945C3B5731F1CC5944CFD96BF17126BAA3(L_37, L_40, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_42;
L_42 = Vector2_op_Implicit_m8F73B300CB4E6F9B4EB5FB6130363D76CEAA230B_inline(L_41, NULL);
V_5 = L_42;
goto IL_0121;
}
IL_00db:
{
// var endPosition = eventData.rayPoints.Count > 0 ? eventData.rayPoints[eventData.rayPoints.Count - 1] : Vector3.zero;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_43 = V_0;
NullCheck(L_43);
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_44;
L_44 = TrackedDeviceEventData_get_rayPoints_m634507CA62EF8BCFC3A5F1B7F1DE107480FBFE7D_inline(L_43, NULL);
NullCheck(L_44);
int32_t L_45;
L_45 = List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_inline(L_44, List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_RuntimeMethod_var);
if ((((int32_t)L_45) > ((int32_t)0)))
{
goto IL_00f0;
}
}
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_46;
L_46 = Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83_inline(NULL);
G_B15_0 = L_46;
goto IL_0108;
}
IL_00f0:
{
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_47 = V_0;
NullCheck(L_47);
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_48;
L_48 = TrackedDeviceEventData_get_rayPoints_m634507CA62EF8BCFC3A5F1B7F1DE107480FBFE7D_inline(L_47, NULL);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_49 = V_0;
NullCheck(L_49);
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_50;
L_50 = TrackedDeviceEventData_get_rayPoints_m634507CA62EF8BCFC3A5F1B7F1DE107480FBFE7D_inline(L_49, NULL);
NullCheck(L_50);
int32_t L_51;
L_51 = List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_inline(L_50, List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_RuntimeMethod_var);
NullCheck(L_48);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_52;
L_52 = List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810(L_48, ((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)1)), List_1_get_Item_m8F2E15FC96DA75186C51228128A0660709E4E810_RuntimeMethod_var);
G_B15_0 = L_52;
}
IL_0108:
{
V_8 = G_B15_0;
// screenPosition = camera.WorldToScreenPoint(endPosition);
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_53 = V_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_54 = V_8;
NullCheck(L_53);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_55;
L_55 = Camera_WorldToScreenPoint_m26B4C8945C3B5731F1CC5944CFD96BF17126BAA3(L_53, L_54, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_56;
L_56 = Vector2_op_Implicit_m8F73B300CB4E6F9B4EB5FB6130363D76CEAA230B_inline(L_55, NULL);
V_5 = L_56;
// eventData.position = screenPosition;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_57 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_58 = V_5;
NullCheck(L_57);
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_57, L_58, NULL);
}
IL_0121:
{
// var thisFrameDelta = screenPosition - eventData.position;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_59 = V_5;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_60 = V_0;
NullCheck(L_60);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_61;
L_61 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_60, NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_62;
L_62 = Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8_inline(L_59, L_61, NULL);
V_6 = L_62;
// eventData.position = screenPosition;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_63 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_64 = V_5;
NullCheck(L_63);
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_63, L_64, NULL);
// eventData.delta = thisFrameDelta;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_65 = V_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_66 = V_6;
NullCheck(L_65);
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_65, L_66, NULL);
// ProcessMouseButton(deviceState.selectDelta, eventData);
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_67 = ___deviceState0;
int32_t L_68;
L_68 = TrackedDeviceModel_get_selectDelta_m3F6B5717A4F6C2DC505EA92A11846820A14B35FC_inline(L_67, NULL);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_69 = V_0;
UIInputModule_ProcessMouseButton_mCD0F73EA5A20835EE50E9F238E2BDA4865B0F391(__this, L_68, L_69, NULL);
// ProcessMouseMovement(eventData);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_70 = V_0;
UIInputModule_ProcessMouseMovement_m8654AF723206F8BE52803F57801811E4B54E9E41(__this, L_70, NULL);
// ProcessMouseScroll(eventData);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_71 = V_0;
UIInputModule_ProcessMouseScroll_m8A93D635F089F339891607F19D746BA4DB11452F(__this, L_71, NULL);
// ProcessMouseButtonDrag(eventData, m_TrackedDeviceDragThresholdMultiplier);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_72 = V_0;
float L_73 = __this->___m_TrackedDeviceDragThresholdMultiplier_14;
UIInputModule_ProcessMouseButtonDrag_m768E9FBBC339845C4E7849C71B86D14DEB91F141(__this, L_72, L_73, NULL);
// deviceState.CopyFrom(eventData);
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_74 = ___deviceState0;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_75 = V_0;
TrackedDeviceModel_CopyFrom_m2A29E70045067F467379D43A4AFB7CDCAFC1786B(L_74, L_75, NULL);
}
IL_016f:
{
// deviceState.OnFrameFinished();
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_76 = ___deviceState0;
TrackedDeviceModel_OnFrameFinished_m0CB3B1A5BB3236A786E674AEE6E740951AC59184(L_76, NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::ProcessJoystick(UnityEngine.XR.Interaction.Toolkit.UI.JoystickModel&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_ProcessJoystick_m0AC925B34544FA77F96A55E284B516410D30D8FF (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* ___joystickState0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_Invoke_m961AAC2DEDC2255C6D7BF986D32171707E2A1C20_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_m3EEA2668A4CEA1DDF898B25C4034B2A123522203_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_m578F2B752399D9C98215CF361BB2A4A2180FC7E8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_m21432792D94516E85BA189CAC8DB4C6C0A946C25_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m29048196EE9931B2E91B895CA98BCBBE2418E0B0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_2 = NULL;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_3;
memset((&V_3), 0, sizeof(V_3));
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* V_4 = NULL;
float V_5 = 0.0f;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_6;
memset((&V_6), 0, sizeof(V_6));
int32_t V_7 = 0;
bool V_8 = false;
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* V_9 = NULL;
int32_t V_10 = 0;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* V_11 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* G_B3_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* G_B2_0 = NULL;
int32_t G_B15_0 = 0;
int32_t G_B19_0 = 0;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* G_B30_0 = NULL;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* G_B29_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* G_B39_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* G_B38_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* G_B45_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* G_B44_0 = NULL;
{
// var implementationData = joystickState.implementationData;
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* L_0 = ___joystickState0;
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A L_1;
L_1 = JoystickModel_get_implementationData_mE5B08F7B50DD4815D1930845A677CB4620467160_inline(L_0, NULL);
V_0 = L_1;
// var usedSelectionChange = false;
V_1 = (bool)0;
// var selectedGameObject = eventSystem.currentSelectedGameObject;
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_2;
L_2 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
NullCheck(L_2);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3;
L_3 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_2, NULL);
V_2 = L_3;
// if (selectedGameObject != null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = V_2;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_5)
{
goto IL_0050;
}
}
{
// var data = GetBaseEventData();
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_6;
L_6 = VirtualFuncInvoker0< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(19 /* UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.BaseInputModule::GetBaseEventData() */, __this);
V_4 = L_6;
// updateSelected?.Invoke(selectedGameObject, data);
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_7 = __this->___updateSelected_31;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_8 = L_7;
G_B2_0 = L_8;
if (L_8)
{
G_B3_0 = L_8;
goto IL_0032;
}
}
{
goto IL_003a;
}
IL_0032:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9 = V_2;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_10 = V_4;
NullCheck(G_B3_0);
Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E(G_B3_0, L_9, L_10, Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E_RuntimeMethod_var);
}
IL_003a:
{
// ExecuteEvents.Execute(selectedGameObject, data, ExecuteEvents.updateSelectedHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_11 = V_2;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_12 = V_4;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* L_13;
L_13 = ExecuteEvents_get_updateSelectedHandler_mB63CDEA5DE1C37F2E0974E9E9679686627E924E6_inline(NULL);
bool L_14;
L_14 = ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m29048196EE9931B2E91B895CA98BCBBE2418E0B0(L_11, L_12, L_13, ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m29048196EE9931B2E91B895CA98BCBBE2418E0B0_RuntimeMethod_var);
// usedSelectionChange = data.used;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_15 = V_4;
NullCheck(L_15);
bool L_16;
L_16 = VirtualFuncInvoker0< bool >::Invoke(6 /* System.Boolean UnityEngine.EventSystems.AbstractEventData::get_used() */, L_15);
V_1 = L_16;
}
IL_0050:
{
// if (!eventSystem.sendNavigationEvents)
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_17;
L_17 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
NullCheck(L_17);
bool L_18;
L_18 = EventSystem_get_sendNavigationEvents_m8BA21E58E633B2C5B477E49DAABAD3C97A8158AF_inline(L_17, NULL);
if (L_18)
{
goto IL_005e;
}
}
{
// return;
return;
}
IL_005e:
{
// var movement = joystickState.move;
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* L_19 = ___joystickState0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_20;
L_20 = JoystickModel_get_move_mB60103AA953140276E6BDBFF9E2674048B666B81_inline(L_19, NULL);
V_3 = L_20;
// if (!usedSelectionChange && (!Mathf.Approximately(movement.x, 0f) || !Mathf.Approximately(movement.y, 0f)))
bool L_21 = V_1;
if (L_21)
{
goto IL_01dc;
}
}
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22 = V_3;
float L_23 = L_22.___x_0;
bool L_24;
L_24 = Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline(L_23, (0.0f), NULL);
if (!L_24)
{
goto IL_0092;
}
}
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_25 = V_3;
float L_26 = L_25.___y_1;
bool L_27;
L_27 = Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline(L_26, (0.0f), NULL);
if (L_27)
{
goto IL_01dc;
}
}
IL_0092:
{
// var time = Time.unscaledTime;
float L_28;
L_28 = Time_get_unscaledTime_m99A3C76AB74B5278B44A5E8B3498E51ABBF793CA(NULL);
V_5 = L_28;
// var moveVector = joystickState.move;
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* L_29 = ___joystickState0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_30;
L_30 = JoystickModel_get_move_mB60103AA953140276E6BDBFF9E2674048B666B81_inline(L_29, NULL);
V_6 = L_30;
// var moveDirection = MoveDirection.None;
V_7 = 4;
// if (moveVector.sqrMagnitude > m_MoveDeadzone * m_MoveDeadzone)
float L_31;
L_31 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_6), NULL);
float L_32 = __this->___m_MoveDeadzone_11;
float L_33 = __this->___m_MoveDeadzone_11;
if ((!(((float)L_31) > ((float)((float)il2cpp_codegen_multiply((float)L_32, (float)L_33))))))
{
goto IL_00fe;
}
}
{
// if (Mathf.Abs(moveVector.x) > Mathf.Abs(moveVector.y))
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_34 = V_6;
float L_35 = L_34.___x_0;
float L_36;
L_36 = fabsf(L_35);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_37 = V_6;
float L_38 = L_37.___y_1;
float L_39;
L_39 = fabsf(L_38);
if ((!(((float)L_36) > ((float)L_39))))
{
goto IL_00ea;
}
}
{
// moveDirection = (moveVector.x > 0) ? MoveDirection.Right : MoveDirection.Left;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_40 = V_6;
float L_41 = L_40.___x_0;
if ((((float)L_41) > ((float)(0.0f))))
{
goto IL_00e5;
}
}
{
G_B15_0 = 0;
goto IL_00e6;
}
IL_00e5:
{
G_B15_0 = 2;
}
IL_00e6:
{
V_7 = G_B15_0;
goto IL_00fe;
}
IL_00ea:
{
// moveDirection = (moveVector.y > 0) ? MoveDirection.Up : MoveDirection.Down;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_42 = V_6;
float L_43 = L_42.___y_1;
if ((((float)L_43) > ((float)(0.0f))))
{
goto IL_00fb;
}
}
{
G_B19_0 = 3;
goto IL_00fc;
}
IL_00fb:
{
G_B19_0 = 1;
}
IL_00fc:
{
V_7 = G_B19_0;
}
IL_00fe:
{
// if (moveDirection != implementationData.lastMoveDirection)
int32_t L_44 = V_7;
int32_t L_45;
L_45 = ImplementationData_get_lastMoveDirection_m5795BF4D421FE58497DF6E154592CCC66CA43018_inline((&V_0), NULL);
if ((((int32_t)L_44) == ((int32_t)L_45)))
{
goto IL_0111;
}
}
{
// implementationData.consecutiveMoveCount = 0;
ImplementationData_set_consecutiveMoveCount_mE564012624169F567A720A33E73AA649FD164198_inline((&V_0), 0, NULL);
}
IL_0111:
{
// if (moveDirection != MoveDirection.None)
int32_t L_46 = V_7;
if ((((int32_t)L_46) == ((int32_t)4)))
{
goto IL_01d2;
}
}
{
// var allow = true;
V_8 = (bool)1;
// if (implementationData.consecutiveMoveCount != 0)
int32_t L_47;
L_47 = ImplementationData_get_consecutiveMoveCount_mB600F1F6A45941D8114E410D6014964554D7ADEC_inline((&V_0), NULL);
if (!L_47)
{
goto IL_0159;
}
}
{
// if (implementationData.consecutiveMoveCount > 1)
int32_t L_48;
L_48 = ImplementationData_get_consecutiveMoveCount_mB600F1F6A45941D8114E410D6014964554D7ADEC_inline((&V_0), NULL);
if ((((int32_t)L_48) <= ((int32_t)1)))
{
goto IL_0145;
}
}
{
// allow = (time > (implementationData.lastMoveTime + m_RepeatRate));
float L_49 = V_5;
float L_50;
L_50 = ImplementationData_get_lastMoveTime_mFEE11CE8F3FFDD639707E8064EA99CCD64F5C99F_inline((&V_0), NULL);
float L_51 = __this->___m_RepeatRate_13;
V_8 = (bool)((((float)L_49) > ((float)((float)il2cpp_codegen_add((float)L_50, (float)L_51))))? 1 : 0);
goto IL_0159;
}
IL_0145:
{
// allow = (time > (implementationData.lastMoveTime + m_RepeatDelay));
float L_52 = V_5;
float L_53;
L_53 = ImplementationData_get_lastMoveTime_mFEE11CE8F3FFDD639707E8064EA99CCD64F5C99F_inline((&V_0), NULL);
float L_54 = __this->___m_RepeatDelay_12;
V_8 = (bool)((((float)L_52) > ((float)((float)il2cpp_codegen_add((float)L_53, (float)L_54))))? 1 : 0);
}
IL_0159:
{
// if (allow)
bool L_55 = V_8;
if (!L_55)
{
goto IL_01e4;
}
}
{
// var eventData = GetOrCreateCachedAxisEvent();
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_56;
L_56 = UIInputModule_GetOrCreateCachedAxisEvent_m0BA809D7FFB01FB16E1D388DE8C9C3E920BE95B9(__this, NULL);
V_9 = L_56;
// eventData.Reset();
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_57 = V_9;
NullCheck(L_57);
VirtualActionInvoker0::Invoke(4 /* System.Void UnityEngine.EventSystems.AbstractEventData::Reset() */, L_57);
// eventData.moveVector = moveVector;
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_58 = V_9;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_59 = V_6;
NullCheck(L_58);
AxisEventData_set_moveVector_mC744F8B3519A6EE5E60482E8FB39641181C62914_inline(L_58, L_59, NULL);
// eventData.moveDir = moveDirection;
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_60 = V_9;
int32_t L_61 = V_7;
NullCheck(L_60);
AxisEventData_set_moveDir_mD82A8AEB52FEFAC48CA064BB77A381B9A3E1B24B_inline(L_60, L_61, NULL);
// move?.Invoke(selectedGameObject, eventData);
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_62 = __this->___move_32;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_63 = L_62;
G_B29_0 = L_63;
if (L_63)
{
G_B30_0 = L_63;
goto IL_018d;
}
}
{
goto IL_0195;
}
IL_018d:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_64 = V_2;
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_65 = V_9;
NullCheck(G_B30_0);
Action_2_Invoke_m961AAC2DEDC2255C6D7BF986D32171707E2A1C20(G_B30_0, L_64, L_65, Action_2_Invoke_m961AAC2DEDC2255C6D7BF986D32171707E2A1C20_RuntimeMethod_var);
}
IL_0195:
{
// ExecuteEvents.Execute(selectedGameObject, eventData, ExecuteEvents.moveHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_66 = V_2;
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_67 = V_9;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* L_68;
L_68 = ExecuteEvents_get_moveHandler_mDFB011B3A254EBA2556ACBBF08AAD475466B885F_inline(NULL);
bool L_69;
L_69 = ExecuteEvents_Execute_TisIMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_m578F2B752399D9C98215CF361BB2A4A2180FC7E8(L_66, L_67, L_68, ExecuteEvents_Execute_TisIMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_m578F2B752399D9C98215CF361BB2A4A2180FC7E8_RuntimeMethod_var);
// usedSelectionChange = eventData.used;
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_70 = V_9;
NullCheck(L_70);
bool L_71;
L_71 = VirtualFuncInvoker0< bool >::Invoke(6 /* System.Boolean UnityEngine.EventSystems.AbstractEventData::get_used() */, L_70);
V_1 = L_71;
// implementationData.consecutiveMoveCount++;
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* L_72 = (&V_0);
int32_t L_73;
L_73 = ImplementationData_get_consecutiveMoveCount_mB600F1F6A45941D8114E410D6014964554D7ADEC_inline(L_72, NULL);
V_10 = L_73;
int32_t L_74 = V_10;
ImplementationData_set_consecutiveMoveCount_mE564012624169F567A720A33E73AA649FD164198_inline(L_72, ((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)1)), NULL);
// implementationData.lastMoveTime = time;
float L_75 = V_5;
ImplementationData_set_lastMoveTime_m008BD50A07C1403D58D895BE67A571FF72C914D4_inline((&V_0), L_75, NULL);
// implementationData.lastMoveDirection = moveDirection;
int32_t L_76 = V_7;
ImplementationData_set_lastMoveDirection_mE7B0C290F1AB9C8C30172606E3B05C9A9EE0B59B_inline((&V_0), L_76, NULL);
goto IL_01e4;
}
IL_01d2:
{
// implementationData.consecutiveMoveCount = 0;
ImplementationData_set_consecutiveMoveCount_mE564012624169F567A720A33E73AA649FD164198_inline((&V_0), 0, NULL);
goto IL_01e4;
}
IL_01dc:
{
// implementationData.consecutiveMoveCount = 0;
ImplementationData_set_consecutiveMoveCount_mE564012624169F567A720A33E73AA649FD164198_inline((&V_0), 0, NULL);
}
IL_01e4:
{
// if (!usedSelectionChange)
bool L_77 = V_1;
if (L_77)
{
goto IL_0259;
}
}
{
// if (selectedGameObject != null)
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_78 = V_2;
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
bool L_79;
L_79 = Object_op_Inequality_m4D656395C27694A7F33F5AA8DE80A7AAF9E20BA7(L_78, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
if (!L_79)
{
goto IL_0259;
}
}
{
// var data = GetBaseEventData();
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_80;
L_80 = VirtualFuncInvoker0< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(19 /* UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.BaseInputModule::GetBaseEventData() */, __this);
V_11 = L_80;
// if ((joystickState.submitButtonDelta & ButtonDeltaState.Pressed) != 0)
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* L_81 = ___joystickState0;
int32_t L_82;
L_82 = JoystickModel_get_submitButtonDelta_m012B855F15407CE39563A2465270BFE766488E7A_inline(L_81, NULL);
if (!((int32_t)((int32_t)L_82&(int32_t)1)))
{
goto IL_0224;
}
}
{
// submit?.Invoke(selectedGameObject, data);
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_83 = __this->___submit_33;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_84 = L_83;
G_B38_0 = L_84;
if (L_84)
{
G_B39_0 = L_84;
goto IL_020e;
}
}
{
goto IL_0216;
}
IL_020e:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_85 = V_2;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_86 = V_11;
NullCheck(G_B39_0);
Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E(G_B39_0, L_85, L_86, Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E_RuntimeMethod_var);
}
IL_0216:
{
// ExecuteEvents.Execute(selectedGameObject, data, ExecuteEvents.submitHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_87 = V_2;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_88 = V_11;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* L_89;
L_89 = ExecuteEvents_get_submitHandler_m22E457BC6DEF2DE3EFBA851643491A70C02C9CB9_inline(NULL);
bool L_90;
L_90 = ExecuteEvents_Execute_TisISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_m21432792D94516E85BA189CAC8DB4C6C0A946C25(L_87, L_88, L_89, ExecuteEvents_Execute_TisISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_m21432792D94516E85BA189CAC8DB4C6C0A946C25_RuntimeMethod_var);
}
IL_0224:
{
// if (!data.used && (joystickState.cancelButtonDelta & ButtonDeltaState.Pressed) != 0)
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_91 = V_11;
NullCheck(L_91);
bool L_92;
L_92 = VirtualFuncInvoker0< bool >::Invoke(6 /* System.Boolean UnityEngine.EventSystems.AbstractEventData::get_used() */, L_91);
if (L_92)
{
goto IL_0259;
}
}
{
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* L_93 = ___joystickState0;
int32_t L_94;
L_94 = JoystickModel_get_cancelButtonDelta_m51F7C586967ECC22CE4DA5F81255F83347A71E9E_inline(L_93, NULL);
if (!((int32_t)((int32_t)L_94&(int32_t)1)))
{
goto IL_0259;
}
}
{
// cancel?.Invoke(selectedGameObject, data);
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_95 = __this->___cancel_34;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_96 = L_95;
G_B44_0 = L_96;
if (L_96)
{
G_B45_0 = L_96;
goto IL_0243;
}
}
{
goto IL_024b;
}
IL_0243:
{
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_97 = V_2;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_98 = V_11;
NullCheck(G_B45_0);
Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E(G_B45_0, L_97, L_98, Action_2_Invoke_mFE7FB232E395108E5B0014E7E7409C80BCEA503E_RuntimeMethod_var);
}
IL_024b:
{
// ExecuteEvents.Execute(selectedGameObject, data, ExecuteEvents.cancelHandler);
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_99 = V_2;
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_100 = V_11;
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* L_101;
L_101 = ExecuteEvents_get_cancelHandler_mE98A451E87161D0AC02028FBBB3A1F136AFAAB8E_inline(NULL);
bool L_102;
L_102 = ExecuteEvents_Execute_TisICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_m3EEA2668A4CEA1DDF898B25C4034B2A123522203(L_99, L_100, L_101, ExecuteEvents_Execute_TisICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_m3EEA2668A4CEA1DDF898B25C4034B2A123522203_RuntimeMethod_var);
}
IL_0259:
{
// joystickState.implementationData = implementationData;
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* L_103 = ___joystickState0;
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A L_104 = V_0;
JoystickModel_set_implementationData_m1654E5AEE33F55136D14F090EC47DF7E5C097C39_inline(L_103, L_104, NULL);
// joystickState.OnFrameFinished();
JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* L_105 = ___joystickState0;
JoystickModel_OnFrameFinished_mEF369FFD6CC791F3E9EE01510F1B07356D28A804(L_105, NULL);
// }
return;
}
}
// UnityEngine.EventSystems.PointerEventData UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::GetOrCreateCachedPointerEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* UIInputModule_GetOrCreateCachedPointerEvent_mBA7B83A85F177D7D70FFC22976A2D81F767C2190 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_0 = NULL;
{
// var result = m_CachedPointerEvent;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = __this->___m_CachedPointerEvent_17;
V_0 = L_0;
// if (result == null)
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = V_0;
if (L_1)
{
goto IL_001d;
}
}
{
// result = new PointerEventData(eventSystem);
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_2;
L_2 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*)il2cpp_codegen_object_new(PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_il2cpp_TypeInfo_var);
PointerEventData__ctor_m63837790B68893F0022CCEFEF26ADD55A975F71C(L_3, L_2, /*hidden argument*/NULL);
V_0 = L_3;
// m_CachedPointerEvent = result;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = V_0;
__this->___m_CachedPointerEvent_17 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CachedPointerEvent_17), (void*)L_4);
}
IL_001d:
{
// return result;
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5 = V_0;
return L_5;
}
}
// UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceEventData UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::GetOrCreateCachedTrackedDeviceEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* UIInputModule_GetOrCreateCachedTrackedDeviceEvent_m09E1192845548AD20C54F91A2776F719883ED73D (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* V_0 = NULL;
{
// var result = m_CachedTrackedDeviceEventData;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_0 = __this->___m_CachedTrackedDeviceEventData_18;
V_0 = L_0;
// if (result == null)
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_1 = V_0;
if (L_1)
{
goto IL_001d;
}
}
{
// result = new TrackedDeviceEventData(eventSystem);
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_2;
L_2 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_3 = (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9*)il2cpp_codegen_object_new(TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9_il2cpp_TypeInfo_var);
TrackedDeviceEventData__ctor_m84DA911667F1B78CAA3C828871BA1C0E6B472513(L_3, L_2, /*hidden argument*/NULL);
V_0 = L_3;
// m_CachedTrackedDeviceEventData = result;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_4 = V_0;
__this->___m_CachedTrackedDeviceEventData_18 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CachedTrackedDeviceEventData_18), (void*)L_4);
}
IL_001d:
{
// return result;
TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* L_5 = V_0;
return L_5;
}
}
// UnityEngine.EventSystems.AxisEventData UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::GetOrCreateCachedAxisEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* UIInputModule_GetOrCreateCachedAxisEvent_m0BA809D7FFB01FB16E1D388DE8C9C3E920BE95B9 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* V_0 = NULL;
{
// var result = m_CachedAxisEvent;
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_0 = __this->___m_CachedAxisEvent_16;
V_0 = L_0;
// if (result == null)
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_1 = V_0;
if (L_1)
{
goto IL_001d;
}
}
{
// result = new AxisEventData(eventSystem);
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_2;
L_2 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_3 = (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938*)il2cpp_codegen_object_new(AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938_il2cpp_TypeInfo_var);
AxisEventData__ctor_mD9AFBD293F84F7032BAC2BDCB47FF5A780418CC5(L_3, L_2, /*hidden argument*/NULL);
V_0 = L_3;
// m_CachedAxisEvent = result;
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_4 = V_0;
__this->___m_CachedAxisEvent_16 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CachedAxisEvent_16), (void*)L_4);
}
IL_001d:
{
// return result;
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_5 = V_0;
return L_5;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_finalizeRaycastResults(System.Action`2<UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_finalizeRaycastResults_m284F9F3718129B2D178D831C1334A8EF0F22205F (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* V_0 = NULL;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* V_1 = NULL;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* V_2 = NULL;
{
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_0 = __this->___finalizeRaycastResults_19;
V_0 = L_0;
}
IL_0007:
{
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_1 = V_0;
V_1 = L_1;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_2 = V_1;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5*)Castclass((RuntimeObject*)L_4, Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5_il2cpp_TypeInfo_var));
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5** L_5 = (&__this->___finalizeRaycastResults_19);
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_6 = V_2;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_7 = V_1;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_9 = V_0;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5*)L_9) == ((RuntimeObject*)(Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_finalizeRaycastResults(System.Action`2<UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_finalizeRaycastResults_m869EE6506EF67AE07A6FB1DCA5BF0EB862CB50A9 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* V_0 = NULL;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* V_1 = NULL;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* V_2 = NULL;
{
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_0 = __this->___finalizeRaycastResults_19;
V_0 = L_0;
}
IL_0007:
{
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_1 = V_0;
V_1 = L_1;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_2 = V_1;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5*)Castclass((RuntimeObject*)L_4, Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5_il2cpp_TypeInfo_var));
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5** L_5 = (&__this->___finalizeRaycastResults_19);
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_6 = V_2;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_7 = V_1;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_9 = V_0;
Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5*)L_9) == ((RuntimeObject*)(Action_2_t9E025178EB6D8AD3F860F1304281C956B2557DA5*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_pointerEnter(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_pointerEnter_mC2952CF870EDCC16D60CBAFDC20C2B617FF1F9F6 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___pointerEnter_20;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___pointerEnter_20);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_pointerEnter(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_pointerEnter_m732BEA4FDE353F48038A2A2AA275EDD73B853D46 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___pointerEnter_20;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___pointerEnter_20);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_pointerExit(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_pointerExit_m72DBA62BD601A3517C3AF34693641CEF292C07B4 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___pointerExit_21;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___pointerExit_21);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_pointerExit(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_pointerExit_mA5248639F07AECDDADC478FED718014D6C79CC41 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___pointerExit_21;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___pointerExit_21);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_pointerDown(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_pointerDown_m9173418E3433ACBF1E748369DDDFB71A3B9F2D13 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___pointerDown_22;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___pointerDown_22);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_pointerDown(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_pointerDown_m25D2DAB8B81DCC5BC70F49CB92B83290A045EC4B (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___pointerDown_22;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___pointerDown_22);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_pointerUp(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_pointerUp_m2A53C7E0EDC56ECCD5E7E9DEDE13FC3C0B13E839 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___pointerUp_23;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___pointerUp_23);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_pointerUp(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_pointerUp_m1208A993218A61396EA4AA9C573D3D1917A8FE5C (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___pointerUp_23;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___pointerUp_23);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_pointerClick(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_pointerClick_mD5B1AFA7ACF6EBF0E061EF6BE18DF2063B010F67 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___pointerClick_24;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___pointerClick_24);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_pointerClick(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_pointerClick_m243047A5B5D18CD7C176D87E8E57E20520701850 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___pointerClick_24;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___pointerClick_24);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_initializePotentialDrag(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_initializePotentialDrag_m7806CE850913CAECF12C3E1F2F5D7CC4B2A690F3 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___initializePotentialDrag_25;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___initializePotentialDrag_25);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_initializePotentialDrag(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_initializePotentialDrag_mEEF545F889D9C81BA1D0EDA0B57B7DB9CC37794C (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___initializePotentialDrag_25;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___initializePotentialDrag_25);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_beginDrag(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_beginDrag_mAA5E03401ECB3A89C93EA86353CB8E704803B8EC (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___beginDrag_26;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___beginDrag_26);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_beginDrag(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_beginDrag_m31368ACAD0CC7C4F356F89ED70089D21DCD90AC1 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___beginDrag_26;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___beginDrag_26);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_drag(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_drag_mE60899C9ECF48D389A7B258F9F1C78D14685541E (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___drag_27;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___drag_27);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_drag(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_drag_mCD37C151704D73D698AFBD3CE9B18A427908F517 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___drag_27;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___drag_27);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_endDrag(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_endDrag_m193A9FD0DAF60C9C0D57A16A2C919930CA0F8A67 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___endDrag_28;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___endDrag_28);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_endDrag(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_endDrag_mCA258F00211C2E70081D50B908A691FCC868AAD2 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___endDrag_28;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___endDrag_28);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_drop(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_drop_m6E8254ABE1D0826375B88DED6743659D6F8CFE52 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___drop_29;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___drop_29);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_drop(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_drop_m239EB803ED8DBC0D4E2F3E43CBBD243CA947506C (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___drop_29;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___drop_29);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_scroll(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_scroll_m19016175E3F43A156EF4221210E524B5DB274443 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___scroll_30;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___scroll_30);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_scroll(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_scroll_m52E356A774F8B0685F0FAFF6D312E0B116720BE9 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_0 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_1 = NULL;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* V_2 = NULL;
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_0 = __this->___scroll_30;
V_0 = L_0;
}
IL_0007:
{
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_1 = V_0;
V_1 = L_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_2 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)Castclass((RuntimeObject*)L_4, Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1_il2cpp_TypeInfo_var));
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1** L_5 = (&__this->___scroll_30);
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_6 = V_2;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_7 = V_1;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_9 = V_0;
Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_9) == ((RuntimeObject*)(Action_2_t68DB8CF5EE5650D5F916A1411E3969BE1227C1E1*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_updateSelected(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_updateSelected_m8AEC6AD19A00852977CDFD6EF6C39BFF4A19A1C7 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_1 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_2 = NULL;
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_0 = __this->___updateSelected_31;
V_0 = L_0;
}
IL_0007:
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_1 = V_0;
V_1 = L_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_2 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)Castclass((RuntimeObject*)L_4, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var));
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F** L_5 = (&__this->___updateSelected_31);
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_6 = V_2;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_7 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_9 = V_0;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_9) == ((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_updateSelected(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_updateSelected_m5D17BA3093E9705FB538F0940BEF379998C78CEB (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_1 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_2 = NULL;
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_0 = __this->___updateSelected_31;
V_0 = L_0;
}
IL_0007:
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_1 = V_0;
V_1 = L_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_2 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)Castclass((RuntimeObject*)L_4, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var));
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F** L_5 = (&__this->___updateSelected_31);
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_6 = V_2;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_7 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_9 = V_0;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_9) == ((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_move(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.AxisEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_move_m97DF584BF7ED6BBF2FC0FDD60551B656C08B722E (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* V_0 = NULL;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* V_1 = NULL;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* V_2 = NULL;
{
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_0 = __this->___move_32;
V_0 = L_0;
}
IL_0007:
{
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_1 = V_0;
V_1 = L_1;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_2 = V_1;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B*)Castclass((RuntimeObject*)L_4, Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B_il2cpp_TypeInfo_var));
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B** L_5 = (&__this->___move_32);
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_6 = V_2;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_7 = V_1;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_9 = V_0;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B*)L_9) == ((RuntimeObject*)(Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_move(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.AxisEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_move_m012D47230F257F7F7D0A04CE4B03FD46927CB97C (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* V_0 = NULL;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* V_1 = NULL;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* V_2 = NULL;
{
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_0 = __this->___move_32;
V_0 = L_0;
}
IL_0007:
{
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_1 = V_0;
V_1 = L_1;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_2 = V_1;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B*)Castclass((RuntimeObject*)L_4, Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B_il2cpp_TypeInfo_var));
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B** L_5 = (&__this->___move_32);
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_6 = V_2;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_7 = V_1;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_9 = V_0;
Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B*)L_9) == ((RuntimeObject*)(Action_2_t76F365045FBA8EFD9F827E97E72AD60870E43A5B*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_submit(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_submit_mDFA87455410A48B770FF3835B588956822394A10 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_1 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_2 = NULL;
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_0 = __this->___submit_33;
V_0 = L_0;
}
IL_0007:
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_1 = V_0;
V_1 = L_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_2 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)Castclass((RuntimeObject*)L_4, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var));
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F** L_5 = (&__this->___submit_33);
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_6 = V_2;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_7 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_9 = V_0;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_9) == ((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_submit(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_submit_m4982C6B93ADAF49EFC6DA6D609BA6F33B352084D (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_1 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_2 = NULL;
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_0 = __this->___submit_33;
V_0 = L_0;
}
IL_0007:
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_1 = V_0;
V_1 = L_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_2 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)Castclass((RuntimeObject*)L_4, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var));
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F** L_5 = (&__this->___submit_33);
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_6 = V_2;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_7 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_9 = V_0;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_9) == ((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::add_cancel(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_add_cancel_m8F9F7D7D7FE1845910BE00593D06FCF8A7B15623 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_1 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_2 = NULL;
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_0 = __this->___cancel_34;
V_0 = L_0;
}
IL_0007:
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_1 = V_0;
V_1 = L_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_2 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)Castclass((RuntimeObject*)L_4, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var));
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F** L_5 = (&__this->___cancel_34);
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_6 = V_2;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_7 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_9 = V_0;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_9) == ((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::remove_cancel(System.Action`2<UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule_remove_cancel_mBD92353A869FE561F961AC8821BACEC2DE87FD92 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_0 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_1 = NULL;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* V_2 = NULL;
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_0 = __this->___cancel_34;
V_0 = L_0;
}
IL_0007:
{
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_1 = V_0;
V_1 = L_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_2 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)Castclass((RuntimeObject*)L_4, Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F_il2cpp_TypeInfo_var));
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F** L_5 = (&__this->___cancel_34);
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_6 = V_2;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_7 = V_1;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_8;
L_8 = InterlockedCompareExchangeImpl<Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*>(L_5, L_6, L_7);
V_0 = L_8;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_9 = V_0;
Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F* L_10 = V_1;
if ((!(((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_9) == ((RuntimeObject*)(Action_2_t008DEBCCE93B9AFB6B534C4A74014AACF6C3CA3F*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.UIInputModule::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIInputModule__ctor_mF6B661E76FF09FEC44404BA11DD54F8D3E2FB827 (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
{
// float m_ClickSpeed = 0.3f;
__this->___m_ClickSpeed_10 = (0.300000012f);
// float m_MoveDeadzone = 0.6f;
__this->___m_MoveDeadzone_11 = (0.600000024f);
// float m_RepeatDelay = 0.5f;
__this->___m_RepeatDelay_12 = (0.5f);
// float m_RepeatRate = 0.1f;
__this->___m_RepeatRate_13 = (0.100000001f);
// float m_TrackedDeviceDragThresholdMultiplier = 2f;
__this->___m_TrackedDeviceDragThresholdMultiplier_14 = (2.0f);
BaseInputModule__ctor_m88DDBBE7BC4BB7170F5F8F00A0C9E2EC6328B819(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::get_maxRaycastDistance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRUIInputModule_get_maxRaycastDistance_m87049643E3AE060060068D25BD71D5ECE14EBA7B (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, const RuntimeMethod* method)
{
{
// get => m_MaxTrackedDeviceRaycastDistance;
float L_0 = __this->___m_MaxTrackedDeviceRaycastDistance_35;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::set_maxRaycastDistance(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_set_maxRaycastDistance_mA769014A0999A1B5DB9AEFCC70FC58AE2DF49A4A (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_MaxTrackedDeviceRaycastDistance = value;
float L_0 = ___value0;
__this->___m_MaxTrackedDeviceRaycastDistance_35 = L_0;
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::get_enableXRInput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRUIInputModule_get_enableXRInput_mEF148C23548DFE6B9CFBEA481D9C5C6E9B997D96 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, const RuntimeMethod* method)
{
{
// get => m_EnableXRInput;
bool L_0 = __this->___m_EnableXRInput_36;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::set_enableXRInput(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_set_enableXRInput_mA67F93E18007DC7053BC83C68689F2E64DC64F4D (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, bool ___value0, const RuntimeMethod* method)
{
{
// set => m_EnableXRInput = value;
bool L_0 = ___value0;
__this->___m_EnableXRInput_36 = L_0;
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::get_enableMouseInput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRUIInputModule_get_enableMouseInput_m3984250F9A4B5401DC7ABACF1E96107B93FDEA81 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, const RuntimeMethod* method)
{
{
// get => m_EnableMouseInput;
bool L_0 = __this->___m_EnableMouseInput_37;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::set_enableMouseInput(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_set_enableMouseInput_mF931954CCC642A69E354CED3C5888394B38289DE (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, bool ___value0, const RuntimeMethod* method)
{
{
// set => m_EnableMouseInput = value;
bool L_0 = ___value0;
__this->___m_EnableMouseInput_37 = L_0;
return;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::get_enableTouchInput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRUIInputModule_get_enableTouchInput_m421820762C081C055B51C4BB1EE8B840DF7FE6EA (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, const RuntimeMethod* method)
{
{
// get => m_EnableTouchInput;
bool L_0 = __this->___m_EnableTouchInput_38;
return L_0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::set_enableTouchInput(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_set_enableTouchInput_mD9C65CAEA46CA87A96674571B348F4F93E4F429F (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, bool ___value0, const RuntimeMethod* method)
{
{
// set => m_EnableTouchInput = value;
bool L_0 = ___value0;
__this->___m_EnableTouchInput_38 = L_0;
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_OnEnable_mB938D9A55AF66EDC8A3384F357ADAEC6B3EA1431 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// base.OnEnable();
BaseInputModule_OnEnable_m2F440F226F94D4D79905CD403F08C3AEEE99D965(__this, NULL);
// m_Mouse = new MouseModel(m_RollingInteractorIndex++);
int32_t L_0 = __this->___m_RollingInteractorIndex_41;
V_0 = L_0;
int32_t L_1 = V_0;
__this->___m_RollingInteractorIndex_41 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1));
int32_t L_2 = V_0;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37 L_3;
memset((&L_3), 0, sizeof(L_3));
MouseModel__ctor_m63009692E802DED0663F43C9C8C5190FF33C8573((&L_3), L_2, /*hidden argument*/NULL);
__this->___m_Mouse_39 = L_3;
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&__this->___m_Mouse_39))->___m_LeftButton_5))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&__this->___m_Mouse_39))->___m_LeftButton_5))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_Mouse_39))->___m_LeftButton_5))->___m_ImplementationData_2))->___U3CpressedGameObjectU3Ek__BackingField_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_Mouse_39))->___m_LeftButton_5))->___m_ImplementationData_2))->___U3CpressedGameObjectRawU3Ek__BackingField_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_Mouse_39))->___m_LeftButton_5))->___m_ImplementationData_2))->___U3CdraggedGameObjectU3Ek__BackingField_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&__this->___m_Mouse_39))->___m_RightButton_6))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&__this->___m_Mouse_39))->___m_RightButton_6))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_Mouse_39))->___m_RightButton_6))->___m_ImplementationData_2))->___U3CpressedGameObjectU3Ek__BackingField_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_Mouse_39))->___m_RightButton_6))->___m_ImplementationData_2))->___U3CpressedGameObjectRawU3Ek__BackingField_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_Mouse_39))->___m_RightButton_6))->___m_ImplementationData_2))->___U3CdraggedGameObjectU3Ek__BackingField_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&__this->___m_Mouse_39))->___m_MiddleButton_7))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&__this->___m_Mouse_39))->___m_MiddleButton_7))->___m_ImplementationData_2))->___U3CpressedRaycastU3Ek__BackingField_3))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_Mouse_39))->___m_MiddleButton_7))->___m_ImplementationData_2))->___U3CpressedGameObjectU3Ek__BackingField_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_Mouse_39))->___m_MiddleButton_7))->___m_ImplementationData_2))->___U3CpressedGameObjectRawU3Ek__BackingField_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&__this->___m_Mouse_39))->___m_MiddleButton_7))->___m_ImplementationData_2))->___U3CdraggedGameObjectU3Ek__BackingField_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_Mouse_39))->___m_InternalData_8))->___U3ChoverTargetsU3Ek__BackingField_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_Mouse_39))->___m_InternalData_8))->___U3CpointerTargetU3Ek__BackingField_1), (void*)NULL);
#endif
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::RegisterInteractor(UnityEngine.XR.Interaction.Toolkit.UI.IUIInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_RegisterInteractor_m5A17069C7410839807F8EB0E5E7FF2D438F7A55B (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, RuntimeObject* ___interactor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m45F907169865B34600173F8463808BC00FE4120B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
V_0 = 0;
goto IL_001d;
}
IL_0004:
{
// if (m_RegisteredInteractors[i].interactor == interactor)
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_0 = __this->___m_RegisteredInteractors_42;
int32_t L_1 = V_0;
NullCheck(L_0);
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_2;
L_2 = List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB(L_0, L_1, List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
RuntimeObject* L_3 = L_2.___interactor_0;
RuntimeObject* L_4 = ___interactor0;
if ((!(((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)L_4))))
{
goto IL_0019;
}
}
{
// return;
return;
}
IL_0019:
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_001d:
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
int32_t L_6 = V_0;
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_7 = __this->___m_RegisteredInteractors_42;
NullCheck(L_7);
int32_t L_8;
L_8 = List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_inline(L_7, List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_RuntimeMethod_var);
if ((((int32_t)L_6) < ((int32_t)L_8)))
{
goto IL_0004;
}
}
{
// m_RegisteredInteractors.Add(new RegisteredInteractor(interactor, m_RollingInteractorIndex++));
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_9 = __this->___m_RegisteredInteractors_42;
RuntimeObject* L_10 = ___interactor0;
int32_t L_11 = __this->___m_RollingInteractorIndex_41;
V_1 = L_11;
int32_t L_12 = V_1;
__this->___m_RollingInteractorIndex_41 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
int32_t L_13 = V_1;
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_14;
memset((&L_14), 0, sizeof(L_14));
RegisteredInteractor__ctor_m6F1AB931437F1F9ACEC036DF8D35D6F5615109BF((&L_14), L_10, L_13, /*hidden argument*/NULL);
NullCheck(L_9);
List_1_Add_m45F907169865B34600173F8463808BC00FE4120B_inline(L_9, L_14, List_1_Add_m45F907169865B34600173F8463808BC00FE4120B_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::UnregisterInteractor(UnityEngine.XR.Interaction.Toolkit.UI.IUIInteractor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_UnregisterInteractor_mE078BB0F40BF245171F44E7629A853FA08CAB0B5 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, RuntimeObject* ___interactor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m977C691A5E504255565A1351BB052D5D238E20ED_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E V_1;
memset((&V_1), 0, sizeof(V_1));
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
V_0 = 0;
goto IL_003f;
}
IL_0004:
{
// if (m_RegisteredInteractors[i].interactor == interactor)
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_0 = __this->___m_RegisteredInteractors_42;
int32_t L_1 = V_0;
NullCheck(L_0);
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_2;
L_2 = List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB(L_0, L_1, List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
RuntimeObject* L_3 = L_2.___interactor_0;
RuntimeObject* L_4 = ___interactor0;
if ((!(((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)L_4))))
{
goto IL_003b;
}
}
{
// var registeredInteractor = m_RegisteredInteractors[i];
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_5 = __this->___m_RegisteredInteractors_42;
int32_t L_6 = V_0;
NullCheck(L_5);
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_7;
L_7 = List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB(L_5, L_6, List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
V_1 = L_7;
// registeredInteractor.interactor = null;
(&V_1)->___interactor_0 = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&(&V_1)->___interactor_0), (void*)(RuntimeObject*)NULL);
// m_RegisteredInteractors[i] = registeredInteractor;
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_8 = __this->___m_RegisteredInteractors_42;
int32_t L_9 = V_0;
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_10 = V_1;
NullCheck(L_8);
List_1_set_Item_m977C691A5E504255565A1351BB052D5D238E20ED(L_8, L_9, L_10, List_1_set_Item_m977C691A5E504255565A1351BB052D5D238E20ED_RuntimeMethod_var);
// return;
return;
}
IL_003b:
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_003f:
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
int32_t L_12 = V_0;
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_13 = __this->___m_RegisteredInteractors_42;
NullCheck(L_13);
int32_t L_14;
L_14 = List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_inline(L_13, List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_RuntimeMethod_var);
if ((((int32_t)L_12) < ((int32_t)L_14)))
{
goto IL_0004;
}
}
{
// }
return;
}
}
// UnityEngine.XR.Interaction.Toolkit.UI.IUIInteractor UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::GetInteractor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XRUIInputModule_GetInteractor_mBBAF268AB57CAB8CB6390D339B7D5A5893CEF747 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, int32_t ___pointerId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E V_1;
memset((&V_1), 0, sizeof(V_1));
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
V_0 = 0;
goto IL_0036;
}
IL_0004:
{
// if (m_RegisteredInteractors[i].model.pointerId == pointerId)
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_0 = __this->___m_RegisteredInteractors_42;
int32_t L_1 = V_0;
NullCheck(L_0);
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_2;
L_2 = List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB(L_0, L_1, List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
V_1 = L_2;
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_3 = (&(&V_1)->___model_1);
int32_t L_4;
L_4 = TrackedDeviceModel_get_pointerId_m7AEFEA8657A653D0968500004E01A9B8672464DD_inline(L_3, NULL);
int32_t L_5 = ___pointerId0;
if ((!(((uint32_t)L_4) == ((uint32_t)L_5))))
{
goto IL_0032;
}
}
{
// return m_RegisteredInteractors[i].interactor;
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_6 = __this->___m_RegisteredInteractors_42;
int32_t L_7 = V_0;
NullCheck(L_6);
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_8;
L_8 = List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB(L_6, L_7, List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
RuntimeObject* L_9 = L_8.___interactor_0;
return L_9;
}
IL_0032:
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
int32_t L_10 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0036:
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
int32_t L_11 = V_0;
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_12 = __this->___m_RegisteredInteractors_42;
NullCheck(L_12);
int32_t L_13;
L_13 = List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_inline(L_12, List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_RuntimeMethod_var);
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_0004;
}
}
{
// return null;
return (RuntimeObject*)NULL;
}
}
// System.Boolean UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::GetTrackedDeviceModel(UnityEngine.XR.Interaction.Toolkit.UI.IUIInteractor,UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRUIInputModule_GetTrackedDeviceModel_m85E330D47C648609FA20F173C8C036E3DF280875 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, RuntimeObject* ___interactor0, TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* ___model1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
V_0 = 0;
goto IL_0035;
}
IL_0004:
{
// if (m_RegisteredInteractors[i].interactor == interactor)
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_0 = __this->___m_RegisteredInteractors_42;
int32_t L_1 = V_0;
NullCheck(L_0);
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_2;
L_2 = List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB(L_0, L_1, List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
RuntimeObject* L_3 = L_2.___interactor_0;
RuntimeObject* L_4 = ___interactor0;
if ((!(((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)L_4))))
{
goto IL_0031;
}
}
{
// model = m_RegisteredInteractors[i].model;
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_5 = ___model1;
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_6 = __this->___m_RegisteredInteractors_42;
int32_t L_7 = V_0;
NullCheck(L_6);
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_8;
L_8 = List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB(L_6, L_7, List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8 L_9 = L_8.___model_1;
*(TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_5 = L_9;
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_5)->___m_ImplementationData_1))->___U3ChoverTargetsU3Ek__BackingField_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_5)->___m_ImplementationData_1))->___U3CpointerTargetU3Ek__BackingField_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_5)->___m_ImplementationData_1))->___U3CpressedRaycastU3Ek__BackingField_6))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_5)->___m_ImplementationData_1))->___U3CpressedRaycastU3Ek__BackingField_6))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_5)->___m_ImplementationData_1))->___U3CpressedGameObjectU3Ek__BackingField_7), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_5)->___m_ImplementationData_1))->___U3CpressedGameObjectRawU3Ek__BackingField_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_5)->___m_ImplementationData_1))->___U3CdraggedGameObjectU3Ek__BackingField_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_5)->___m_RaycastPoints_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_5)->___U3CcurrentRaycastU3Ek__BackingField_10))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_5)->___U3CcurrentRaycastU3Ek__BackingField_10))->___module_1), (void*)NULL);
#endif
// return true;
return (bool)1;
}
IL_0031:
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
int32_t L_10 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0035:
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
int32_t L_11 = V_0;
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_12 = __this->___m_RegisteredInteractors_42;
NullCheck(L_12);
int32_t L_13;
L_13 = List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_inline(L_12, List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_RuntimeMethod_var);
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_0004;
}
}
{
// model = new TrackedDeviceModel(-1);
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_14 = ___model1;
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8 L_15;
memset((&L_15), 0, sizeof(L_15));
TrackedDeviceModel__ctor_m2128F49761ECD982EEC5C86F0B18C9991A3ADE2E((&L_15), (-1), /*hidden argument*/NULL);
*(TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_14 = L_15;
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_14)->___m_ImplementationData_1))->___U3ChoverTargetsU3Ek__BackingField_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_14)->___m_ImplementationData_1))->___U3CpointerTargetU3Ek__BackingField_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_14)->___m_ImplementationData_1))->___U3CpressedRaycastU3Ek__BackingField_6))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_14)->___m_ImplementationData_1))->___U3CpressedRaycastU3Ek__BackingField_6))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_14)->___m_ImplementationData_1))->___U3CpressedGameObjectU3Ek__BackingField_7), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_14)->___m_ImplementationData_1))->___U3CpressedGameObjectRawU3Ek__BackingField_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_14)->___m_ImplementationData_1))->___U3CdraggedGameObjectU3Ek__BackingField_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_14)->___m_RaycastPoints_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_14)->___U3CcurrentRaycastU3Ek__BackingField_10))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8*)L_14)->___U3CcurrentRaycastU3Ek__BackingField_10))->___module_1), (void*)NULL);
#endif
// return false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::DoProcess()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_DoProcess_m3E40FE8EB0244A2390709FCE793271DD8AFB60DF (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IUIInteractor_t5E87AB04096E6A5D1AF1D291E2096599065E94EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_mD1B83CE5C1865EA57FFDC6B54A38BD746329FF24_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m977C691A5E504255565A1351BB052D5D238E20ED_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E V_1;
memset((&V_1), 0, sizeof(V_1));
{
// base.DoProcess();
UIInputModule_DoProcess_m2F3415E90165B1AF36AA82DE27C23B2A9EBBE47C(__this, NULL);
// if (m_EnableXRInput)
bool L_0 = __this->___m_EnableXRInput_36;
if (!L_0)
{
goto IL_0099;
}
}
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
V_0 = 0;
goto IL_0088;
}
IL_0015:
{
// var registeredInteractor = m_RegisteredInteractors[i];
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_1 = __this->___m_RegisteredInteractors_42;
int32_t L_2 = V_0;
NullCheck(L_1);
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_3;
L_3 = List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB(L_1, L_2, List_1_get_Item_m05D07A0B00DDBACAF1FE2958DB6F10D16C2DC4FB_RuntimeMethod_var);
V_1 = L_3;
// if (registeredInteractor.interactor == null)
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_4 = V_1;
RuntimeObject* L_5 = L_4.___interactor_0;
if (L_5)
{
goto IL_0057;
}
}
{
// registeredInteractor.model.Reset(false);
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_6 = (&(&V_1)->___model_1);
TrackedDeviceModel_Reset_m29196B36856087C2404D20AF734005C0BB6B0AA9(L_6, (bool)0, NULL);
// ProcessTrackedDevice(ref registeredInteractor.model, true);
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_7 = (&(&V_1)->___model_1);
UIInputModule_ProcessTrackedDevice_m82718A0C6C9B13B6FEAC0967D3DBAC75BD3C5E86(__this, L_7, (bool)1, NULL);
// m_RegisteredInteractors.RemoveAt(i--);
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_8 = __this->___m_RegisteredInteractors_42;
int32_t L_9 = V_0;
int32_t L_10 = L_9;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1));
NullCheck(L_8);
List_1_RemoveAt_mD1B83CE5C1865EA57FFDC6B54A38BD746329FF24(L_8, L_10, List_1_RemoveAt_mD1B83CE5C1865EA57FFDC6B54A38BD746329FF24_RuntimeMethod_var);
goto IL_0084;
}
IL_0057:
{
// registeredInteractor.interactor.UpdateUIModel(ref registeredInteractor.model);
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_11 = V_1;
RuntimeObject* L_12 = L_11.___interactor_0;
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_13 = (&(&V_1)->___model_1);
NullCheck(L_12);
InterfaceActionInvoker1< TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* >::Invoke(0 /* System.Void UnityEngine.XR.Interaction.Toolkit.UI.IUIInteractor::UpdateUIModel(UnityEngine.XR.Interaction.Toolkit.UI.TrackedDeviceModel&) */, IUIInteractor_t5E87AB04096E6A5D1AF1D291E2096599065E94EA_il2cpp_TypeInfo_var, L_12, L_13);
// ProcessTrackedDevice(ref registeredInteractor.model);
TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* L_14 = (&(&V_1)->___model_1);
UIInputModule_ProcessTrackedDevice_m82718A0C6C9B13B6FEAC0967D3DBAC75BD3C5E86(__this, L_14, (bool)0, NULL);
// m_RegisteredInteractors[i] = registeredInteractor;
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_15 = __this->___m_RegisteredInteractors_42;
int32_t L_16 = V_0;
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_17 = V_1;
NullCheck(L_15);
List_1_set_Item_m977C691A5E504255565A1351BB052D5D238E20ED(L_15, L_16, L_17, List_1_set_Item_m977C691A5E504255565A1351BB052D5D238E20ED_RuntimeMethod_var);
}
IL_0084:
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
int32_t L_18 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
}
IL_0088:
{
// for (var i = 0; i < m_RegisteredInteractors.Count; i++)
int32_t L_19 = V_0;
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_20 = __this->___m_RegisteredInteractors_42;
NullCheck(L_20);
int32_t L_21;
L_21 = List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_inline(L_20, List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_RuntimeMethod_var);
if ((((int32_t)L_19) < ((int32_t)L_21)))
{
goto IL_0015;
}
}
IL_0099:
{
// if (m_EnableMouseInput)
bool L_22 = __this->___m_EnableMouseInput_37;
if (!L_22)
{
goto IL_00a7;
}
}
{
// ProcessMouse();
XRUIInputModule_ProcessMouse_mD684700E9D27203EE72E7DE93F773DF887050EA6(__this, NULL);
}
IL_00a7:
{
// if (m_EnableTouchInput)
bool L_23 = __this->___m_EnableTouchInput_38;
if (!L_23)
{
goto IL_00b5;
}
}
{
// ProcessTouches();
XRUIInputModule_ProcessTouches_m9572050FF91FC957906A77EA725A6A5E288C8354(__this, NULL);
}
IL_00b5:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::ProcessMouse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_ProcessMouse_mD684700E9D27203EE72E7DE93F773DF887050EA6 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_1_ReadValue_m362E05F00FE8CF8FC52F0D673291907EC7FA6541_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (Mouse.current != null)
Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* L_0;
L_0 = Mouse_get_current_m559AE408DFE4F44D811979FE592BBAF7A84CE6F3_inline(NULL);
if (!L_0)
{
goto IL_00a3;
}
}
{
// m_Mouse.position = Mouse.current.position.ReadValue();
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_1 = (&__this->___m_Mouse_39);
Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* L_2;
L_2 = Mouse_get_current_m559AE408DFE4F44D811979FE592BBAF7A84CE6F3_inline(NULL);
NullCheck(L_2);
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_3;
L_3 = Pointer_get_position_m4286004169788483EEDA6AF833CEFDB04FEDF3D8_inline(L_2, NULL);
NullCheck(L_3);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
L_4 = InputControl_1_ReadValue_m362E05F00FE8CF8FC52F0D673291907EC7FA6541(L_3, InputControl_1_ReadValue_m362E05F00FE8CF8FC52F0D673291907EC7FA6541_RuntimeMethod_var);
MouseModel_set_position_mF52DACDB97F269AEC85646486093D6A135C5E509(L_1, L_4, NULL);
// m_Mouse.scrollDelta = Mouse.current.scroll.ReadValue() * (1 / kPixelsPerLine);
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_5 = (&__this->___m_Mouse_39);
Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* L_6;
L_6 = Mouse_get_current_m559AE408DFE4F44D811979FE592BBAF7A84CE6F3_inline(NULL);
NullCheck(L_6);
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_7;
L_7 = Mouse_get_scroll_m309B52001D54F8EEA0F773846829AF03AD6EA8B2_inline(L_6, NULL);
NullCheck(L_7);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
L_8 = InputControl_1_ReadValue_m362E05F00FE8CF8FC52F0D673291907EC7FA6541(L_7, InputControl_1_ReadValue_m362E05F00FE8CF8FC52F0D673291907EC7FA6541_RuntimeMethod_var);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
L_9 = Vector2_op_Multiply_m4EEB2FF3F4830390A53CE9B6076FB31801D65EED_inline(L_8, (0.00833333377f), NULL);
MouseModel_set_scrollDelta_m107437C513BD8F66EFDE6160EF224FEC6DA1F7A9(L_5, L_9, NULL);
// m_Mouse.leftButtonPressed = Mouse.current.leftButton.isPressed;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_10 = (&__this->___m_Mouse_39);
Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* L_11;
L_11 = Mouse_get_current_m559AE408DFE4F44D811979FE592BBAF7A84CE6F3_inline(NULL);
NullCheck(L_11);
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_12;
L_12 = Mouse_get_leftButton_m1015BCBE6BE30B1D1D2702736A4E64120F6B5DFB_inline(L_11, NULL);
NullCheck(L_12);
bool L_13;
L_13 = ButtonControl_get_isPressed_m947621402F6EC1B957C2DE984806A6500D422EA6(L_12, NULL);
MouseModel_set_leftButtonPressed_mF1308166818C7AE8C3083EAE08FF32B24C8DDBF1(L_10, L_13, NULL);
// m_Mouse.rightButtonPressed = Mouse.current.rightButton.isPressed;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_14 = (&__this->___m_Mouse_39);
Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* L_15;
L_15 = Mouse_get_current_m559AE408DFE4F44D811979FE592BBAF7A84CE6F3_inline(NULL);
NullCheck(L_15);
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_16;
L_16 = Mouse_get_rightButton_mFA0FD700624C0DE1B858F9516426414767F09D98_inline(L_15, NULL);
NullCheck(L_16);
bool L_17;
L_17 = ButtonControl_get_isPressed_m947621402F6EC1B957C2DE984806A6500D422EA6(L_16, NULL);
MouseModel_set_rightButtonPressed_m87EF490742E8A801BBAB04A32A4B868C7E6031AE(L_14, L_17, NULL);
// m_Mouse.middleButtonPressed = Mouse.current.middleButton.isPressed;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_18 = (&__this->___m_Mouse_39);
Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* L_19;
L_19 = Mouse_get_current_m559AE408DFE4F44D811979FE592BBAF7A84CE6F3_inline(NULL);
NullCheck(L_19);
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_20;
L_20 = Mouse_get_middleButton_m1E9EB13B53CAA15CD49C6861A6CD542452B3A8A9_inline(L_19, NULL);
NullCheck(L_20);
bool L_21;
L_21 = ButtonControl_get_isPressed_m947621402F6EC1B957C2DE984806A6500D422EA6(L_20, NULL);
MouseModel_set_middleButtonPressed_mF1E5EA114314006CDD15F484FCE7450F3D3B0A39(L_18, L_21, NULL);
// ProcessMouse(ref m_Mouse);
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_22 = (&__this->___m_Mouse_39);
UIInputModule_ProcessMouse_mF90F8EA789274FCD298E5ED801EE9675A9E3EEA4(__this, L_22, NULL);
return;
}
IL_00a3:
{
// else if (Input.mousePresent)
bool L_23;
L_23 = Input_get_mousePresent_m7636BF18F4329EA82F264DA4D87B9B25A8A4923C(NULL);
if (!L_23)
{
goto IL_010e;
}
}
{
// m_Mouse.position = Input.mousePosition;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_24 = (&__this->___m_Mouse_39);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_25;
L_25 = Input_get_mousePosition_m2414B43222ED0C5FAB960D393964189AFD21EEAD(NULL);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_26;
L_26 = Vector2_op_Implicit_m8F73B300CB4E6F9B4EB5FB6130363D76CEAA230B_inline(L_25, NULL);
MouseModel_set_position_mF52DACDB97F269AEC85646486093D6A135C5E509(L_24, L_26, NULL);
// m_Mouse.scrollDelta = Input.mouseScrollDelta;
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_27 = (&__this->___m_Mouse_39);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_28;
L_28 = Input_get_mouseScrollDelta_m41C6379183734C5061C6E8C9B6DEFFC9C084A0CE(NULL);
MouseModel_set_scrollDelta_m107437C513BD8F66EFDE6160EF224FEC6DA1F7A9(L_27, L_28, NULL);
// m_Mouse.leftButtonPressed = Input.GetMouseButton(0);
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_29 = (&__this->___m_Mouse_39);
bool L_30;
L_30 = Input_GetMouseButton_mE545CF4B790C6E202808B827E3141BEC3330DB70(0, NULL);
MouseModel_set_leftButtonPressed_mF1308166818C7AE8C3083EAE08FF32B24C8DDBF1(L_29, L_30, NULL);
// m_Mouse.rightButtonPressed = Input.GetMouseButton(1);
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_31 = (&__this->___m_Mouse_39);
bool L_32;
L_32 = Input_GetMouseButton_mE545CF4B790C6E202808B827E3141BEC3330DB70(1, NULL);
MouseModel_set_rightButtonPressed_m87EF490742E8A801BBAB04A32A4B868C7E6031AE(L_31, L_32, NULL);
// m_Mouse.middleButtonPressed = Input.GetMouseButton(2);
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_33 = (&__this->___m_Mouse_39);
bool L_34;
L_34 = Input_GetMouseButton_mE545CF4B790C6E202808B827E3141BEC3330DB70(2, NULL);
MouseModel_set_middleButtonPressed_mF1E5EA114314006CDD15F484FCE7450F3D3B0A39(L_33, L_34, NULL);
// ProcessMouse(ref m_Mouse);
MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* L_35 = (&__this->___m_Mouse_39);
UIInputModule_ProcessMouse_mF90F8EA789274FCD298E5ED801EE9675A9E3EEA4(__this, L_35, NULL);
}
IL_010e:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::ProcessTouches()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule_ProcessTouches_m9572050FF91FC957906A77EA725A6A5E288C8354 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m2B08809ACCCD8B2CAF21468D0671EB5643A4A2CA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_mEA01B6D51EE3751D4467647ED8D246D6B5F4F0C2_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
TouchU5BU5D_t242545870BFCA81F368CCF82E00F9E2A7FB523B3* V_0 = NULL;
int32_t V_1 = 0;
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 V_2;
memset((&V_2), 0, sizeof(V_2));
int32_t V_3 = 0;
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 V_4;
memset((&V_4), 0, sizeof(V_4));
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 V_8;
memset((&V_8), 0, sizeof(V_8));
int32_t V_9 = 0;
int32_t V_10 = 0;
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 V_11;
memset((&V_11), 0, sizeof(V_11));
{
// if (Input.touchCount > 0)
int32_t L_0;
L_0 = Input_get_touchCount_m7B8EAAB3449A6DC2D90AF3BA36AF226D97C020CF(NULL);
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_01b7;
}
}
{
// var touches = Input.touches;
TouchU5BU5D_t242545870BFCA81F368CCF82E00F9E2A7FB523B3* L_1;
L_1 = Input_get_touches_m884B92DD9A389F7985AB275A9717AC629C258B6B(NULL);
// foreach (var touch in touches)
V_0 = L_1;
V_1 = 0;
goto IL_0143;
}
IL_0018:
{
// foreach (var touch in touches)
TouchU5BU5D_t242545870BFCA81F368CCF82E00F9E2A7FB523B3* L_2 = V_0;
int32_t L_3 = V_1;
NullCheck(L_2);
int32_t L_4 = L_3;
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = L_5;
// var registeredTouchIndex = -1;
V_3 = (-1);
// for (var j = 0; j < m_RegisteredTouches.Count; j++)
V_5 = 0;
goto IL_004d;
}
IL_0027:
{
// if (touch.fingerId == m_RegisteredTouches[j].touchId)
int32_t L_6;
L_6 = Touch_get_fingerId_mC1DCE93BFA0574960A3AE5329AE6C5F7E06962BD((&V_2), NULL);
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_7 = __this->___m_RegisteredTouches_40;
int32_t L_8 = V_5;
NullCheck(L_7);
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 L_9;
L_9 = List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B(L_7, L_8, List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B_RuntimeMethod_var);
int32_t L_10 = L_9.___touchId_1;
if ((!(((uint32_t)L_6) == ((uint32_t)L_10))))
{
goto IL_0047;
}
}
{
// registeredTouchIndex = j;
int32_t L_11 = V_5;
V_3 = L_11;
// break;
goto IL_005c;
}
IL_0047:
{
// for (var j = 0; j < m_RegisteredTouches.Count; j++)
int32_t L_12 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_004d:
{
// for (var j = 0; j < m_RegisteredTouches.Count; j++)
int32_t L_13 = V_5;
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_14 = __this->___m_RegisteredTouches_40;
NullCheck(L_14);
int32_t L_15;
L_15 = List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_inline(L_14, List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_RuntimeMethod_var);
if ((((int32_t)L_13) < ((int32_t)L_15)))
{
goto IL_0027;
}
}
IL_005c:
{
// if (registeredTouchIndex < 0)
int32_t L_16 = V_3;
if ((((int32_t)L_16) >= ((int32_t)0)))
{
goto IL_00fd;
}
}
{
// for (var j = 0; j < m_RegisteredTouches.Count; j++)
V_6 = 0;
goto IL_00b9;
}
IL_0068:
{
// if (!m_RegisteredTouches[j].isValid)
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_17 = __this->___m_RegisteredTouches_40;
int32_t L_18 = V_6;
NullCheck(L_17);
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 L_19;
L_19 = List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B(L_17, L_18, List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B_RuntimeMethod_var);
bool L_20 = L_19.___isValid_0;
if (L_20)
{
goto IL_00b3;
}
}
{
// var pointerId = m_RegisteredTouches[j].model.pointerId;
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_21 = __this->___m_RegisteredTouches_40;
int32_t L_22 = V_6;
NullCheck(L_21);
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 L_23;
L_23 = List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B(L_21, L_22, List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B_RuntimeMethod_var);
V_8 = L_23;
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_24 = (&(&V_8)->___model_2);
int32_t L_25;
L_25 = TouchModel_get_pointerId_mEF567A1F3619C12F6519E4A6335E47BEC45F3D6A_inline(L_24, NULL);
V_7 = L_25;
// m_RegisteredTouches[j] = new RegisteredTouch(touch, pointerId);
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_26 = __this->___m_RegisteredTouches_40;
int32_t L_27 = V_6;
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 L_28 = V_2;
int32_t L_29 = V_7;
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 L_30;
memset((&L_30), 0, sizeof(L_30));
RegisteredTouch__ctor_mEAB697F13AE6A0335886FE62EF14C790C9077324((&L_30), L_28, L_29, /*hidden argument*/NULL);
NullCheck(L_26);
List_1_set_Item_mEA01B6D51EE3751D4467647ED8D246D6B5F4F0C2(L_26, L_27, L_30, List_1_set_Item_mEA01B6D51EE3751D4467647ED8D246D6B5F4F0C2_RuntimeMethod_var);
// registeredTouchIndex = j;
int32_t L_31 = V_6;
V_3 = L_31;
// break;
goto IL_00c8;
}
IL_00b3:
{
// for (var j = 0; j < m_RegisteredTouches.Count; j++)
int32_t L_32 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
}
IL_00b9:
{
// for (var j = 0; j < m_RegisteredTouches.Count; j++)
int32_t L_33 = V_6;
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_34 = __this->___m_RegisteredTouches_40;
NullCheck(L_34);
int32_t L_35;
L_35 = List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_inline(L_34, List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_RuntimeMethod_var);
if ((((int32_t)L_33) < ((int32_t)L_35)))
{
goto IL_0068;
}
}
IL_00c8:
{
// if (registeredTouchIndex < 0)
int32_t L_36 = V_3;
if ((((int32_t)L_36) >= ((int32_t)0)))
{
goto IL_00fd;
}
}
{
// registeredTouchIndex = m_RegisteredTouches.Count;
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_37 = __this->___m_RegisteredTouches_40;
NullCheck(L_37);
int32_t L_38;
L_38 = List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_inline(L_37, List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_RuntimeMethod_var);
V_3 = L_38;
// m_RegisteredTouches.Add(new RegisteredTouch(touch, m_RollingInteractorIndex++));
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_39 = __this->___m_RegisteredTouches_40;
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 L_40 = V_2;
int32_t L_41 = __this->___m_RollingInteractorIndex_41;
V_9 = L_41;
int32_t L_42 = V_9;
__this->___m_RollingInteractorIndex_41 = ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
int32_t L_43 = V_9;
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 L_44;
memset((&L_44), 0, sizeof(L_44));
RegisteredTouch__ctor_mEAB697F13AE6A0335886FE62EF14C790C9077324((&L_44), L_40, L_43, /*hidden argument*/NULL);
NullCheck(L_39);
List_1_Add_m2B08809ACCCD8B2CAF21468D0671EB5643A4A2CA_inline(L_39, L_44, List_1_Add_m2B08809ACCCD8B2CAF21468D0671EB5643A4A2CA_RuntimeMethod_var);
}
IL_00fd:
{
// var registeredTouch = m_RegisteredTouches[registeredTouchIndex];
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_45 = __this->___m_RegisteredTouches_40;
int32_t L_46 = V_3;
NullCheck(L_45);
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 L_47;
L_47 = List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B(L_45, L_46, List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B_RuntimeMethod_var);
V_4 = L_47;
// registeredTouch.model.selectPhase = touch.phase;
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_48 = (&(&V_4)->___model_2);
int32_t L_49;
L_49 = Touch_get_phase_mB82409FB2BE1C32ABDBA6A72E52A099D28AB70B0((&V_2), NULL);
TouchModel_set_selectPhase_m20B064E217FF3B1FC1D408A613E37D482B7ABFE7(L_48, L_49, NULL);
// registeredTouch.model.position = touch.position;
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_50 = (&(&V_4)->___model_2);
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_51;
L_51 = Touch_get_position_m41B9EB0F3F3E1BE98CEB388253A9E31979CB964A((&V_2), NULL);
TouchModel_set_position_mCC5A8772603B39F6EB6440B5592AA3FCB813D908(L_50, L_51, NULL);
// m_RegisteredTouches[registeredTouchIndex] = registeredTouch;
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_52 = __this->___m_RegisteredTouches_40;
int32_t L_53 = V_3;
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 L_54 = V_4;
NullCheck(L_52);
List_1_set_Item_mEA01B6D51EE3751D4467647ED8D246D6B5F4F0C2(L_52, L_53, L_54, List_1_set_Item_mEA01B6D51EE3751D4467647ED8D246D6B5F4F0C2_RuntimeMethod_var);
int32_t L_55 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1));
}
IL_0143:
{
// foreach (var touch in touches)
int32_t L_56 = V_1;
TouchU5BU5D_t242545870BFCA81F368CCF82E00F9E2A7FB523B3* L_57 = V_0;
NullCheck(L_57);
if ((((int32_t)L_56) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_57)->max_length))))))
{
goto IL_0018;
}
}
{
// for (var i = 0; i < m_RegisteredTouches.Count; i++)
V_10 = 0;
goto IL_01a8;
}
IL_0151:
{
// var registeredTouch = m_RegisteredTouches[i];
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_58 = __this->___m_RegisteredTouches_40;
int32_t L_59 = V_10;
NullCheck(L_58);
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 L_60;
L_60 = List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B(L_58, L_59, List_1_get_Item_m7B1F0E1BC17EA2C43AA2D1F510A7A0628893769B_RuntimeMethod_var);
V_11 = L_60;
// ProcessTouch(ref registeredTouch.model);
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_61 = (&(&V_11)->___model_2);
UIInputModule_ProcessTouch_m6E005B10690A60C60030CCB1803BA683337224FE(__this, L_61, NULL);
// if (registeredTouch.model.selectPhase == TouchPhase.Ended || registeredTouch.model.selectPhase == TouchPhase.Canceled)
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_62 = (&(&V_11)->___model_2);
int32_t L_63;
L_63 = TouchModel_get_selectPhase_m8EF259C3B4DE6A8B17699E796E4294405E07450D_inline(L_62, NULL);
if ((((int32_t)L_63) == ((int32_t)3)))
{
goto IL_018b;
}
}
{
TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* L_64 = (&(&V_11)->___model_2);
int32_t L_65;
L_65 = TouchModel_get_selectPhase_m8EF259C3B4DE6A8B17699E796E4294405E07450D_inline(L_64, NULL);
if ((!(((uint32_t)L_65) == ((uint32_t)4))))
{
goto IL_0193;
}
}
IL_018b:
{
// registeredTouch.isValid = false;
(&V_11)->___isValid_0 = (bool)0;
}
IL_0193:
{
// m_RegisteredTouches[i] = registeredTouch;
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_66 = __this->___m_RegisteredTouches_40;
int32_t L_67 = V_10;
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 L_68 = V_11;
NullCheck(L_66);
List_1_set_Item_mEA01B6D51EE3751D4467647ED8D246D6B5F4F0C2(L_66, L_67, L_68, List_1_set_Item_mEA01B6D51EE3751D4467647ED8D246D6B5F4F0C2_RuntimeMethod_var);
// for (var i = 0; i < m_RegisteredTouches.Count; i++)
int32_t L_69 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1));
}
IL_01a8:
{
// for (var i = 0; i < m_RegisteredTouches.Count; i++)
int32_t L_70 = V_10;
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_71 = __this->___m_RegisteredTouches_40;
NullCheck(L_71);
int32_t L_72;
L_72 = List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_inline(L_71, List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_RuntimeMethod_var);
if ((((int32_t)L_70) < ((int32_t)L_72)))
{
goto IL_0151;
}
}
IL_01b7:
{
// }
return;
}
}
// System.Void UnityEngine.XR.Interaction.Toolkit.UI.XRUIInputModule::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRUIInputModule__ctor_mE15B70D3CE192C4622EE2144530F98F6E0CA0829 (XRUIInputModule_tA641266A2621C1465F3C5433D747428A4CDA72F0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m94BD49CB8971447490F93532B823C4E4F3DAE5A4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mF3DDC40240537B6E9B272FDFF5F6335E97934C47_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// float m_MaxTrackedDeviceRaycastDistance = 1000f;
__this->___m_MaxTrackedDeviceRaycastDistance_35 = (1000.0f);
// bool m_EnableXRInput = true;
__this->___m_EnableXRInput_36 = (bool)1;
// bool m_EnableMouseInput = true;
__this->___m_EnableMouseInput_37 = (bool)1;
// bool m_EnableTouchInput = true;
__this->___m_EnableTouchInput_38 = (bool)1;
// readonly List<RegisteredTouch> m_RegisteredTouches = new List<RegisteredTouch>();
List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* L_0 = (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC*)il2cpp_codegen_object_new(List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC_il2cpp_TypeInfo_var);
List_1__ctor_mF3DDC40240537B6E9B272FDFF5F6335E97934C47(L_0, /*hidden argument*/List_1__ctor_mF3DDC40240537B6E9B272FDFF5F6335E97934C47_RuntimeMethod_var);
__this->___m_RegisteredTouches_40 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RegisteredTouches_40), (void*)L_0);
// readonly List<RegisteredInteractor> m_RegisteredInteractors = new List<RegisteredInteractor>();
List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* L_1 = (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54*)il2cpp_codegen_object_new(List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54_il2cpp_TypeInfo_var);
List_1__ctor_m94BD49CB8971447490F93532B823C4E4F3DAE5A4(L_1, /*hidden argument*/List_1__ctor_m94BD49CB8971447490F93532B823C4E4F3DAE5A4_RuntimeMethod_var);
__this->___m_RegisteredInteractors_42 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RegisteredInteractors_42), (void*)L_1);
UIInputModule__ctor_mF6B661E76FF09FEC44404BA11DD54F8D3E2FB827(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* XRInteractionManager_get_activeInteractionManagers_m5A2A2413296876F10164C973358D57FA2B3EB1E5_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// internal static List<XRInteractionManager> activeInteractionManagers { get; } = new List<XRInteractionManager>();
il2cpp_codegen_runtime_class_init_inline(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var);
List_1_t90B2E73B2119C38AE52BD0E0BB04E6B0477F6D7B* L_0 = ((XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_StaticFields*)il2cpp_codegen_static_fields_for(XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD_il2cpp_TypeInfo_var))->___U3CactiveInteractionManagersU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, const RuntimeMethod* method)
{
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = __this->___m_Ptr_0;
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
memset((&L_1), 0, sizeof(L_1));
AutoScope__ctor_m7F63A273E382CB6328736B6E7F321DDFA40EA9E3_inline((&L_1), L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_2 = V_0;
return L_2;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline (AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = __this->___m_Ptr_0;
ProfilerUnsafeUtility_EndSample_mE2F7A0DB4C52105F7CD135ED8816A2BB98E663CC(L_0, NULL);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BaseRegistrationEventArgs_set_manager_mDCA0E4515B5577A245206663B79F1BD793865AA5_inline (BaseRegistrationEventArgs_t9822CF35B956BAF32B523A14F3AFEF6A82987F21* __this, XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* ___value0, const RuntimeMethod* method)
{
{
// public XRInteractionManager manager { get; set; }
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_0 = ___value0;
__this->___U3CmanagerU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CmanagerU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteractorRegisteredEventArgs_set_interactor_mC7D4F7F96D374D0689576F9781A8059692A21B17_inline (InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___value0;
__this->___U3CinteractorU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractorU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* InteractorRegisteredEventArgs_get_interactor_m5941F52A62289266C834D92590783488A171FAD8_inline (InteractorRegisteredEventArgs_t893A4314ACD8A860BFD76CDB09AF89CCC1E84775* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = __this->___U3CinteractorU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteractorUnregisteredEventArgs_set_interactor_m06E8669E5C820661A28255E6983ECD6FE607B4E9_inline (InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___value0;
__this->___U3CinteractorU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractorU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* InteractorUnregisteredEventArgs_get_interactor_m850F10AA69039103E6E674733DB4CA93C4369E65_inline (InteractorUnregisteredEventArgs_t77999252E8CB3198B8F1D16FB9F4F6E3412ECB93* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = __this->___U3CinteractorU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* XRBaseInteractable_get_colliders_m7E5D104638AC4B5E5C77D40094AA52B9ABEB32FB_inline (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, const RuntimeMethod* method)
{
{
// public List<Collider> colliders => m_Colliders;
List_1_t58F89DEDCD7DABB0CFB009AAD9C0CFE061592252* L_0 = __this->___m_Colliders_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteractableRegisteredEventArgs_set_interactable_m8FAF324ECEAFDB5BD64BE2D71A991B9A3FDACBB4_inline (InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractable interactable { get; set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = ___value0;
__this->___U3CinteractableU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractableU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* InteractableRegisteredEventArgs_get_interactable_m8E24757B1B66EF6ED74A2BCC89A63E10364E7C6E_inline (InteractableRegisteredEventArgs_t9E35262DC0C14D7FE2265D47AB2D3FC9CAAE023D* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractable interactable { get; set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = __this->___U3CinteractableU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InteractableUnregisteredEventArgs_set_interactable_m0433D6227E005137B947C8C68C7131B2D3F7E1BF_inline (InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractable interactable { get; set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = ___value0;
__this->___U3CinteractableU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractableU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* InteractableUnregisteredEventArgs_get_interactable_m6B266EFCEBB22E4EE3F3E1F86E9D3D2E6F9BCA05_inline (InteractableUnregisteredEventArgs_tEA628E3D57FA85080BB7D4A958AA2A0F6F82BC21* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractable interactable { get; set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = __this->___U3CinteractableU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* XRBaseInteractor_get_selectTarget_m2888C3BFA4B168C6DDD37CAC1A999BEF406596E4_inline (XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractable selectTarget { get; protected set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = __this->___U3CselectTargetU3Ek__BackingField_17;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* XRBaseInteractable_get_selectingInteractor_mDA5536E167016B048166B2DC5061AE3F752B115A_inline (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractor selectingInteractor { get; private set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = __this->___U3CselectingInteractorU3Ek__BackingField_19;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* XRBaseInteractable_get_hoveringInteractors_mE0B8E9F9A3CFC8FE238AF4148B9B467DEA95F7C7_inline (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, const RuntimeMethod* method)
{
{
// public List<XRBaseInteractor> hoveringInteractors => m_HoveringInteractors;
List_1_tC6684CD164AA8009B3DC3C06499A47813321B877* L_0 = __this->___m_HoveringInteractors_18;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRBaseInteractable_get_isSelected_m48487E7F2E3E1EDB6D9B6985FF146020F628B3CE_inline (XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* __this, const RuntimeMethod* method)
{
{
// public bool isSelected { get; private set; }
bool L_0 = __this->___U3CisSelectedU3Ek__BackingField_21;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BaseInteractionEventArgs_set_interactor_mD8877C3687E32637F0E1F67F83B4B0B8AF91C649_inline (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = ___value0;
__this->___U3CinteractorU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractorU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BaseInteractionEventArgs_set_interactable_m2F82CCB58107BAB47A77981E751779A7A4FA3266_inline (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* ___value0, const RuntimeMethod* method)
{
{
// public XRBaseInteractable interactable { get; set; }
XRBaseInteractable_tC2C966C710AE6AC232E248B1BCF323386110D0F6* L_0 = ___value0;
__this->___U3CinteractableU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CinteractableU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SelectExitEventArgs_set_isCanceled_mCD4C4244EBD5D443FD62B581F29FF05B2751AF42_inline (SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool isCanceled { get; set; }
bool L_0 = ___value0;
__this->___U3CisCanceledU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HoverExitEventArgs_set_isCanceled_mD30ECFAFDE30B96DB1C4BA30800D72D6CC31218C_inline (HoverExitEventArgs_tFFBECDDAF90BF90AA3B7282FAEF1D8E5D19A5AD6* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool isCanceled { get; set; }
bool L_0 = ___value0;
__this->___U3CisCanceledU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
intptr_t L_1;
L_1 = ProfilerUnsafeUtility_CreateMarker_m27DDE00D41B95677982DBFCE074D45B79E50C7CC(L_0, (uint16_t)1, 0, 0, NULL);
__this->___m_Ptr_0 = L_1;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_m154E404AF275A3B2EC99ECAA3879B4CB9F0606DC_inline (float ___value0, float ___min1, float ___max2, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
float V_2 = 0.0f;
{
float L_0 = ___value0;
float L_1 = ___min1;
V_0 = (bool)((((float)L_0) < ((float)L_1))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_000e;
}
}
{
float L_3 = ___min1;
___value0 = L_3;
goto IL_0019;
}
IL_000e:
{
float L_4 = ___value0;
float L_5 = ___max2;
V_1 = (bool)((((float)L_4) > ((float)L_5))? 1 : 0);
bool L_6 = V_1;
if (!L_6)
{
goto IL_0019;
}
}
{
float L_7 = ___max2;
___value0 = L_7;
}
IL_0019:
{
float L_8 = ___value0;
V_2 = L_8;
goto IL_001d;
}
IL_001d:
{
float L_9 = V_2;
return L_9;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* LocomotionProvider_get_system_m2FFD680EAEA3837BF1BE61B34DB6685118760D94_inline (LocomotionProvider_tC65B288AF39EACCD294F953F300BA33E33C2017B* __this, const RuntimeMethod* method)
{
{
// get => m_System;
LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* L_0 = __this->___m_System_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* LocomotionSystem_get_xrRig_m66C8141D2D2FACDEC33DB82CAC8ED5278DEEDDE1_inline (LocomotionSystem_t969449BF16C7ED7A4A08A07CB480440C79AD2D6B* __this, const RuntimeMethod* method)
{
{
// get => m_XRRig;
XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* L_0 = __this->___m_XRRig_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* XRRig_get_rig_mE186F9F6B042C09CA316CFB7137A8CC44D49A573_inline (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// get => m_RigBaseGameObject;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_RigBaseGameObject_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_zero_m009B92B5D35AB02BD1610C2E1ACCE7C9CF964A6E_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ((Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields*)il2cpp_codegen_static_fields_for(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var))->___zeroVector_2;
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = V_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Addition_m704B5B98EAFE885978381E21B7F89D9DF83C2A60_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, const RuntimeMethod* method)
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___a0;
float L_1 = L_0.___x_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___b1;
float L_3 = L_2.___x_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___a0;
float L_5 = L_4.___y_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___b1;
float L_7 = L_6.___y_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
memset((&L_8), 0, sizeof(L_8));
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_8), ((float)il2cpp_codegen_add((float)L_1, (float)L_3)), ((float)il2cpp_codegen_add((float)L_5, (float)L_7)), /*hidden argument*/NULL);
V_0 = L_8;
goto IL_0023;
}
IL_0023:
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = V_0;
return L_9;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Inequality_mCF3935E28AC7B30B279F07F9321CC56718E1311A_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___lhs0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rhs1, const RuntimeMethod* method)
{
bool V_0 = false;
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___lhs0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___rhs1;
bool L_2;
L_2 = Vector2_op_Equality_m5447BF12C18339431AB8AF02FA463C543D88D463_inline(L_0, L_1, NULL);
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
goto IL_000e;
}
IL_000e:
{
bool L_3 = V_0;
return L_3;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___zeroVector_5;
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Inequality_m6A7FB1C9E9DE194708997BFA24C6E238D92D908E_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___lhs0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rhs1, const RuntimeMethod* method)
{
bool V_0 = false;
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___lhs0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___rhs1;
bool L_2;
L_2 = Vector3_op_Equality_m15951D1B53E3BE36C9D265E229090020FBD72EBB_inline(L_0, L_1, NULL);
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
goto IL_000e;
}
IL_000e:
{
bool L_3 = V_0;
return L_3;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Equality_m5447BF12C18339431AB8AF02FA463C543D88D463_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___lhs0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rhs1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float V_1 = 0.0f;
bool V_2 = false;
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___lhs0;
float L_1 = L_0.___x_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___rhs1;
float L_3 = L_2.___x_0;
V_0 = ((float)il2cpp_codegen_subtract((float)L_1, (float)L_3));
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___lhs0;
float L_5 = L_4.___y_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___rhs1;
float L_7 = L_6.___y_1;
V_1 = ((float)il2cpp_codegen_subtract((float)L_5, (float)L_7));
float L_8 = V_0;
float L_9 = V_0;
float L_10 = V_1;
float L_11 = V_1;
V_2 = (bool)((((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_8, (float)L_9)), (float)((float)il2cpp_codegen_multiply((float)L_10, (float)L_11))))) < ((float)(9.99999944E-11f)))? 1 : 0);
goto IL_002e;
}
IL_002e:
{
bool L_12 = V_2;
return L_12;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method)
{
{
float L_0 = ___x0;
__this->___x_2 = L_0;
float L_1 = ___y1;
__this->___y_3 = L_1;
float L_2 = ___z2;
__this->___z_4 = L_2;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_ClampMagnitude_mDEF1E073986286F6EFA1552A5D0E1A0F6CBF4500_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___vector0, float ___maxLength1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
bool V_1 = false;
float V_2 = 0.0f;
float V_3 = 0.0f;
float V_4 = 0.0f;
float V_5 = 0.0f;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_6;
memset((&V_6), 0, sizeof(V_6));
{
float L_0;
L_0 = Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline((&___vector0), NULL);
V_0 = L_0;
float L_1 = V_0;
float L_2 = ___maxLength1;
float L_3 = ___maxLength1;
V_1 = (bool)((((float)L_1) > ((float)((float)il2cpp_codegen_multiply((float)L_2, (float)L_3))))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_004e;
}
}
{
float L_5 = V_0;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_6;
L_6 = sqrt(((double)((double)L_5)));
V_2 = ((float)((float)L_6));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = ___vector0;
float L_8 = L_7.___x_2;
float L_9 = V_2;
V_3 = ((float)((float)L_8/(float)L_9));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___vector0;
float L_11 = L_10.___y_3;
float L_12 = V_2;
V_4 = ((float)((float)L_11/(float)L_12));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13 = ___vector0;
float L_14 = L_13.___z_4;
float L_15 = V_2;
V_5 = ((float)((float)L_14/(float)L_15));
float L_16 = V_3;
float L_17 = ___maxLength1;
float L_18 = V_4;
float L_19 = ___maxLength1;
float L_20 = V_5;
float L_21 = ___maxLength1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_22;
memset((&L_22), 0, sizeof(L_22));
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_22), ((float)il2cpp_codegen_multiply((float)L_16, (float)L_17)), ((float)il2cpp_codegen_multiply((float)L_18, (float)L_19)), ((float)il2cpp_codegen_multiply((float)L_20, (float)L_21)), /*hidden argument*/NULL);
V_6 = L_22;
goto IL_0053;
}
IL_004e:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_23 = ___vector0;
V_6 = L_23;
goto IL_0053;
}
IL_0053:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = V_6;
return L_24;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* XRRig_get_cameraGameObject_m599F292919A35F8427477F95D733377B56C43A73_inline (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// get => m_CameraGameObject;
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CameraGameObject_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___lhs0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rhs1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___lhs0;
float L_1 = L_0.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___rhs1;
float L_3 = L_2.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___lhs0;
float L_5 = L_4.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___rhs1;
float L_7 = L_6.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___lhs0;
float L_9 = L_8.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___rhs1;
float L_11 = L_10.___z_4;
V_0 = ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_1, (float)L_3)), (float)((float)il2cpp_codegen_multiply((float)L_5, (float)L_7)))), (float)((float)il2cpp_codegen_multiply((float)L_9, (float)L_11))));
goto IL_002d;
}
IL_002d:
{
float L_12 = V_0;
return L_12;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1C8DD0BB6A2D22A7DCF09AD7F8EE9ABD12D3F620_inline (float ___a0, float ___b1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
float L_0 = ___b1;
float L_1 = ___a0;
float L_2;
L_2 = fabsf(((float)il2cpp_codegen_subtract((float)L_0, (float)L_1)));
float L_3 = ___a0;
float L_4;
L_4 = fabsf(L_3);
float L_5 = ___b1;
float L_6;
L_6 = fabsf(L_5);
float L_7;
L_7 = Mathf_Max_mA9DCA91E87D6D27034F56ABA52606A9090406016_inline(L_4, L_6, NULL);
float L_8 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon_0;
float L_9;
L_9 = Mathf_Max_mA9DCA91E87D6D27034F56ABA52606A9090406016_inline(((float)il2cpp_codegen_multiply((float)(9.99999997E-07f), (float)L_7)), ((float)il2cpp_codegen_multiply((float)L_8, (float)(8.0f))), NULL);
V_0 = (bool)((((float)L_2) < ((float)L_9))? 1 : 0);
goto IL_0035;
}
IL_0035:
{
bool L_10 = V_0;
return L_10;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_UnaryNegation_m3AC523A7BED6E843165BDF598690F0560D8CAA63_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, const RuntimeMethod* method)
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___a0;
float L_1 = L_0.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___a0;
float L_3 = L_2.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___a0;
float L_5 = L_4.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
memset((&L_6), 0, sizeof(L_6));
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_6), ((-L_1)), ((-L_3)), ((-L_5)), /*hidden argument*/NULL);
V_0 = L_6;
goto IL_001e;
}
IL_001e:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = V_0;
return L_7;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_ProjectOnPlane_mCAFA9F9416EA4740DCA8757B6E52260BF536770A_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___vector0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___planeNormal1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
bool V_1 = false;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
memset((&V_2), 0, sizeof(V_2));
float V_3 = 0.0f;
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___planeNormal1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___planeNormal1;
float L_2;
L_2 = Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8_inline(L_0, L_1, NULL);
V_0 = L_2;
float L_3 = V_0;
float L_4 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon_0;
V_1 = (bool)((((float)L_3) < ((float)L_4))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_0019;
}
}
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___vector0;
V_2 = L_6;
goto IL_005d;
}
IL_0019:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = ___vector0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___planeNormal1;
float L_9;
L_9 = Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8_inline(L_7, L_8, NULL);
V_3 = L_9;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___vector0;
float L_11 = L_10.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12 = ___planeNormal1;
float L_13 = L_12.___x_2;
float L_14 = V_3;
float L_15 = V_0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16 = ___vector0;
float L_17 = L_16.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_18 = ___planeNormal1;
float L_19 = L_18.___y_3;
float L_20 = V_3;
float L_21 = V_0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_22 = ___vector0;
float L_23 = L_22.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = ___planeNormal1;
float L_25 = L_24.___z_4;
float L_26 = V_3;
float L_27 = V_0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_28;
memset((&L_28), 0, sizeof(L_28));
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_28), ((float)il2cpp_codegen_subtract((float)L_11, (float)((float)((float)((float)il2cpp_codegen_multiply((float)L_13, (float)L_14))/(float)L_15)))), ((float)il2cpp_codegen_subtract((float)L_17, (float)((float)((float)((float)il2cpp_codegen_multiply((float)L_19, (float)L_20))/(float)L_21)))), ((float)il2cpp_codegen_subtract((float)L_23, (float)((float)((float)((float)il2cpp_codegen_multiply((float)L_25, (float)L_26))/(float)L_27)))), /*hidden argument*/NULL);
V_2 = L_28;
goto IL_005d;
}
IL_005d:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_29 = V_2;
return L_29;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Multiply_m516FE285F5342F922C6EB3FCB33197E9017FF484_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, float ___d1, const RuntimeMethod* method)
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___a0;
float L_1 = L_0.___x_2;
float L_2 = ___d1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___a0;
float L_4 = L_3.___y_3;
float L_5 = ___d1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___a0;
float L_7 = L_6.___z_4;
float L_8 = ___d1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
memset((&L_9), 0, sizeof(L_9));
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_9), ((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)), ((float)il2cpp_codegen_multiply((float)L_4, (float)L_5)), ((float)il2cpp_codegen_multiply((float)L_7, (float)L_8)), /*hidden argument*/NULL);
V_0 = L_9;
goto IL_0021;
}
IL_0021:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = V_0;
return L_10;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Addition_m087D6F0EC60843D455F9F83D25FE42B2433AAD1D_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___b1, const RuntimeMethod* method)
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___a0;
float L_1 = L_0.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___b1;
float L_3 = L_2.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___a0;
float L_5 = L_4.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___b1;
float L_7 = L_6.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___a0;
float L_9 = L_8.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___b1;
float L_11 = L_10.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
memset((&L_12), 0, sizeof(L_12));
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_12), ((float)il2cpp_codegen_add((float)L_1, (float)L_3)), ((float)il2cpp_codegen_add((float)L_5, (float)L_7)), ((float)il2cpp_codegen_add((float)L_9, (float)L_11)), /*hidden argument*/NULL);
V_0 = L_12;
goto IL_0030;
}
IL_0030:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13 = V_0;
return L_13;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
{
float L_0 = __this->___x_0;
float L_1 = __this->___x_0;
float L_2 = __this->___y_1;
float L_3 = __this->___y_1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_4;
L_4 = sqrt(((double)((double)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_0, (float)L_1)), (float)((float)il2cpp_codegen_multiply((float)L_2, (float)L_3)))))));
V_0 = ((float)((float)L_4));
goto IL_0026;
}
IL_0026:
{
float L_5 = V_0;
return L_5;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Sign_m015249B312238B8DCA3493489FAFC3055E2FFEF8_inline (float ___f0, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float G_B3_0 = 0.0f;
{
float L_0 = ___f0;
if ((((float)L_0) >= ((float)(0.0f))))
{
goto IL_0010;
}
}
{
G_B3_0 = (-1.0f);
goto IL_0015;
}
IL_0010:
{
G_B3_0 = (1.0f);
}
IL_0015:
{
V_0 = G_B3_0;
goto IL_0018;
}
IL_0018:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRBaseController_get_enableInputActions_m4E285A2F619049FF60318453228523C193C9E8CE_inline (XRBaseController_t44C1BB30A7E1D279DD2508F34D3352B33A9AD60C* __this, const RuntimeMethod* method)
{
{
// get => m_EnableInputActions;
bool L_0 = __this->___m_EnableInputActions_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Multiply_m4EEB2FF3F4830390A53CE9B6076FB31801D65EED_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, float ___d1, const RuntimeMethod* method)
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___a0;
float L_1 = L_0.___x_0;
float L_2 = ___d1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___a0;
float L_4 = L_3.___y_1;
float L_5 = ___d1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
memset((&L_6), 0, sizeof(L_6));
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_6), ((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)), ((float)il2cpp_codegen_multiply((float)L_4, (float)L_5)), /*hidden argument*/NULL);
V_0 = L_6;
goto IL_0019;
}
IL_0019:
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_0;
return L_7;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->___x_0;
float L_1 = __this->___x_0;
float L_2 = __this->___y_1;
float L_3 = __this->___y_1;
V_0 = ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_0, (float)L_1)), (float)((float)il2cpp_codegen_multiply((float)L_2, (float)L_3))));
goto IL_001f;
}
IL_001f:
{
float L_4 = V_0;
return L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* BaseInteractionEventArgs_get_interactor_mE0AC419B526DA1A39B56DA244258474047DD0176_inline (BaseInteractionEventArgs_t8B38B6C63C6C9EA4BD179EF5FD40106872B82D7E* __this, const RuntimeMethod* method)
{
{
// public XRBaseInteractor interactor { get; set; }
XRBaseInteractor_tB48889E8D95695ABF46D2012EC55EA660103D158* L_0 = __this->___U3CinteractorU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SelectExitEventArgs_get_isCanceled_m4C9FCCB6A51201B8728DAF9BA356BB589A149FF7_inline (SelectExitEventArgs_t56125CE0360D37AC0B50EB6066B5AB5957EF559A* __this, const RuntimeMethod* method)
{
{
// public bool isCanceled { get; set; }
bool L_0 = __this->___U3CisCanceledU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_blue_m0D04554379CB8606EF48E3091CDC3098B81DD86D_inline (const RuntimeMethod* method)
{
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_0;
memset((&V_0), 0, sizeof(V_0));
{
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0;
memset((&L_0), 0, sizeof(L_0));
Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline((&L_0), (0.0f), (0.0f), (1.0f), (1.0f), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_001d;
}
IL_001d:
{
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = V_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TeleportationProvider_set_currentRequest_m109FD936C57760C70C312B799E6AD6D7651B0581_inline (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE ___value0, const RuntimeMethod* method)
{
{
// protected TeleportRequest currentRequest { get; set; }
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_0 = ___value0;
__this->___U3CcurrentRequestU3Ek__BackingField_8 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TeleportationProvider_set_validRequest_m539A9FBCF21BBCE6062D888442666D0679B27B0D_inline (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, bool ___value0, const RuntimeMethod* method)
{
{
// protected bool validRequest { get; set; }
bool L_0 = ___value0;
__this->___U3CvalidRequestU3Ek__BackingField_9 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TeleportationProvider_get_validRequest_m083A1AF44E1AD7BD791A2B599216067B94D65788_inline (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, const RuntimeMethod* method)
{
{
// protected bool validRequest { get; set; }
bool L_0 = __this->___U3CvalidRequestU3Ek__BackingField_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE TeleportationProvider_get_currentRequest_m0CCE6B6BE488A506F4FD398A18C8D0450ED6C39B_inline (TeleportationProvider_t97A0AC16C69ACC50C842581737181148614AF972* __this, const RuntimeMethod* method)
{
{
// protected TeleportRequest currentRequest { get; set; }
TeleportRequest_t50D2AA5655D559F78FC8138B445FB997858EAFBE L_0 = __this->___U3CcurrentRequestU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_up_mAB5269BFCBCB1BD241450C9BF2F156303D30E0C3_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___upVector_7;
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_forward_mEBAB24D77FC02FC88ED880738C3B1D47C758B3EB_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___forwardVector_11;
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_green_m336EB73DD4A5B11B7F405CF4BC7F37A466FB4FF7_inline (const RuntimeMethod* method)
{
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_0;
memset((&V_0), 0, sizeof(V_0));
{
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0;
memset((&L_0), 0, sizeof(L_0));
Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline((&L_0), (0.0f), (1.0f), (0.0f), (1.0f), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_001d;
}
IL_001d:
{
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = V_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_red_m27D04C1E5FE794AD933B7B9364F3D34B9EA25109_inline (const RuntimeMethod* method)
{
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_0;
memset((&V_0), 0, sizeof(V_0));
{
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0;
memset((&L_0), 0, sizeof(L_0));
Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline((&L_0), (1.0f), (0.0f), (0.0f), (1.0f), /*hidden argument*/NULL);
V_0 = L_0;
goto IL_001d;
}
IL_001d:
{
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = V_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRRig_set_currentTrackingOriginMode_m8808FA6451664B1A54B94D29536F52EAF1C2B50F_inline (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public TrackingOriginModeFlags currentTrackingOriginMode { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CcurrentTrackingOriginModeU3Ek__BackingField_10 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRRig_get_currentTrackingOriginMode_m4E0D1ECA3BB9564009C4ADC500DDF4FCC2D0182B_inline (XRRig_t780336752912CDAF798E4A46C1D940C5EBD21B2F* __this, const RuntimeMethod* method)
{
{
// public TrackingOriginModeFlags currentTrackingOriginMode { get; private set; }
int32_t L_0 = __this->___U3CcurrentTrackingOriginModeU3Ek__BackingField_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Equality_m15951D1B53E3BE36C9D265E229090020FBD72EBB_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___lhs0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rhs1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float V_1 = 0.0f;
float V_2 = 0.0f;
float V_3 = 0.0f;
bool V_4 = false;
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___lhs0;
float L_1 = L_0.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___rhs1;
float L_3 = L_2.___x_2;
V_0 = ((float)il2cpp_codegen_subtract((float)L_1, (float)L_3));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___lhs0;
float L_5 = L_4.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___rhs1;
float L_7 = L_6.___y_3;
V_1 = ((float)il2cpp_codegen_subtract((float)L_5, (float)L_7));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___lhs0;
float L_9 = L_8.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___rhs1;
float L_11 = L_10.___z_4;
V_2 = ((float)il2cpp_codegen_subtract((float)L_9, (float)L_11));
float L_12 = V_0;
float L_13 = V_0;
float L_14 = V_1;
float L_15 = V_1;
float L_16 = V_2;
float L_17 = V_2;
V_3 = ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_12, (float)L_13)), (float)((float)il2cpp_codegen_multiply((float)L_14, (float)L_15)))), (float)((float)il2cpp_codegen_multiply((float)L_16, (float)L_17))));
float L_18 = V_3;
V_4 = (bool)((((float)L_18) < ((float)(9.99999944E-11f)))? 1 : 0);
goto IL_0043;
}
IL_0043:
{
bool L_19 = V_4;
return L_19;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 Quaternion_op_Multiply_m5AC8B39C55015059BDD09122E04E47D4BFAB2276_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___lhs0, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rhs1, const RuntimeMethod* method)
{
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0 = ___lhs0;
float L_1 = L_0.___w_3;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_2 = ___rhs1;
float L_3 = L_2.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_4 = ___lhs0;
float L_5 = L_4.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_6 = ___rhs1;
float L_7 = L_6.___w_3;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_8 = ___lhs0;
float L_9 = L_8.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_10 = ___rhs1;
float L_11 = L_10.___z_2;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_12 = ___lhs0;
float L_13 = L_12.___z_2;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_14 = ___rhs1;
float L_15 = L_14.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_16 = ___lhs0;
float L_17 = L_16.___w_3;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_18 = ___rhs1;
float L_19 = L_18.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_20 = ___lhs0;
float L_21 = L_20.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_22 = ___rhs1;
float L_23 = L_22.___w_3;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_24 = ___lhs0;
float L_25 = L_24.___z_2;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_26 = ___rhs1;
float L_27 = L_26.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_28 = ___lhs0;
float L_29 = L_28.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_30 = ___rhs1;
float L_31 = L_30.___z_2;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_32 = ___lhs0;
float L_33 = L_32.___w_3;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_34 = ___rhs1;
float L_35 = L_34.___z_2;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_36 = ___lhs0;
float L_37 = L_36.___z_2;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_38 = ___rhs1;
float L_39 = L_38.___w_3;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_40 = ___lhs0;
float L_41 = L_40.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_42 = ___rhs1;
float L_43 = L_42.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_44 = ___lhs0;
float L_45 = L_44.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_46 = ___rhs1;
float L_47 = L_46.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_48 = ___lhs0;
float L_49 = L_48.___w_3;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_50 = ___rhs1;
float L_51 = L_50.___w_3;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_52 = ___lhs0;
float L_53 = L_52.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_54 = ___rhs1;
float L_55 = L_54.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_56 = ___lhs0;
float L_57 = L_56.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_58 = ___rhs1;
float L_59 = L_58.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_60 = ___lhs0;
float L_61 = L_60.___z_2;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_62 = ___rhs1;
float L_63 = L_62.___z_2;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_64;
memset((&L_64), 0, sizeof(L_64));
Quaternion__ctor_m868FD60AA65DD5A8AC0C5DEB0608381A8D85FCD8_inline((&L_64), ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_1, (float)L_3)), (float)((float)il2cpp_codegen_multiply((float)L_5, (float)L_7)))), (float)((float)il2cpp_codegen_multiply((float)L_9, (float)L_11)))), (float)((float)il2cpp_codegen_multiply((float)L_13, (float)L_15)))), ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_17, (float)L_19)), (float)((float)il2cpp_codegen_multiply((float)L_21, (float)L_23)))), (float)((float)il2cpp_codegen_multiply((float)L_25, (float)L_27)))), (float)((float)il2cpp_codegen_multiply((float)L_29, (float)L_31)))), ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_33, (float)L_35)), (float)((float)il2cpp_codegen_multiply((float)L_37, (float)L_39)))), (float)((float)il2cpp_codegen_multiply((float)L_41, (float)L_43)))), (float)((float)il2cpp_codegen_multiply((float)L_45, (float)L_47)))), ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_multiply((float)L_49, (float)L_51)), (float)((float)il2cpp_codegen_multiply((float)L_53, (float)L_55)))), (float)((float)il2cpp_codegen_multiply((float)L_57, (float)L_59)))), (float)((float)il2cpp_codegen_multiply((float)L_61, (float)L_63)))), /*hidden argument*/NULL);
V_0 = L_64;
goto IL_00e5;
}
IL_00e5:
{
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_65 = V_0;
return L_65;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method)
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = (*(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)__this);
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
L_1 = Vector3_Normalize_m6120F119433C5B60BBB28731D3D4A0DA50A84DDD_inline(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = V_0;
return L_2;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_SignedAngle_mD30E71B2F64983C2C4D86F17E7023BAA84CE50BE_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___from0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___to1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___axis2, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float V_1 = 0.0f;
float V_2 = 0.0f;
float V_3 = 0.0f;
float V_4 = 0.0f;
float V_5 = 0.0f;
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___from0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___to1;
float L_2;
L_2 = Vector3_Angle_m1B9CC61B142C3A0E7EEB0559983CC391D1582F56_inline(L_0, L_1, NULL);
V_0 = L_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___from0;
float L_4 = L_3.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___to1;
float L_6 = L_5.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = ___from0;
float L_8 = L_7.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9 = ___to1;
float L_10 = L_9.___y_3;
V_1 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_multiply((float)L_4, (float)L_6)), (float)((float)il2cpp_codegen_multiply((float)L_8, (float)L_10))));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_11 = ___from0;
float L_12 = L_11.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13 = ___to1;
float L_14 = L_13.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_15 = ___from0;
float L_16 = L_15.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17 = ___to1;
float L_18 = L_17.___z_4;
V_2 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_multiply((float)L_12, (float)L_14)), (float)((float)il2cpp_codegen_multiply((float)L_16, (float)L_18))));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_19 = ___from0;
float L_20 = L_19.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21 = ___to1;
float L_22 = L_21.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_23 = ___from0;
float L_24 = L_23.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_25 = ___to1;
float L_26 = L_25.___x_2;
V_3 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_multiply((float)L_20, (float)L_22)), (float)((float)il2cpp_codegen_multiply((float)L_24, (float)L_26))));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_27 = ___axis2;
float L_28 = L_27.___x_2;
float L_29 = V_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_30 = ___axis2;
float L_31 = L_30.___y_3;
float L_32 = V_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_33 = ___axis2;
float L_34 = L_33.___z_4;
float L_35 = V_3;
float L_36;
L_36 = Mathf_Sign_m015249B312238B8DCA3493489FAFC3055E2FFEF8_inline(((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_28, (float)L_29)), (float)((float)il2cpp_codegen_multiply((float)L_31, (float)L_32)))), (float)((float)il2cpp_codegen_multiply((float)L_34, (float)L_35)))), NULL);
V_4 = L_36;
float L_37 = V_0;
float L_38 = V_4;
V_5 = ((float)il2cpp_codegen_multiply((float)L_37, (float)L_38));
goto IL_0086;
}
IL_0086:
{
float L_39 = V_5;
return L_39;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* TriggerContactMonitor_get_interactionManager_m962AC519D6229441CA8EB1F2703A6B653E0B9B1F_inline (TriggerContactMonitor_t7534ED632C47D926F92937DE752DA2D4DC79AEA2* __this, const RuntimeMethod* method)
{
{
// public XRInteractionManager interactionManager { get; set; }
XRInteractionManager_t93C7F7F0CFEAD83E1A70F92D05B0E663483746CD* L_0 = __this->___U3CinteractionManagerU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 JoystickModel_get_move_mB60103AA953140276E6BDBFF9E2674048B666B81_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// public Vector2 move { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CmoveU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoystickModel_set_move_m84DB43EE4C57318CE0B7FFC8416A6E9DC7DEDEFD_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 move { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CmoveU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JoystickModel_get_submitButtonDown_m2C594CD060FC1467793EB7D04F3A356D3FF5215F_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// get => m_SubmitButtonDown;
bool L_0 = __this->___m_SubmitButtonDown_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoystickModel_set_submitButtonDelta_mBCE238395763AD138FBF5CAD201B57F4AAF0A838_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState submitButtonDelta { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CsubmitButtonDeltaU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JoystickModel_get_submitButtonDelta_m012B855F15407CE39563A2465270BFE766488E7A_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState submitButtonDelta { get; private set; }
int32_t L_0 = __this->___U3CsubmitButtonDeltaU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JoystickModel_get_cancelButtonDown_m0D382FCC9FD1D913786C962041D034B0A93FABDA_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// get => m_CancelButtonDown;
bool L_0 = __this->___m_CancelButtonDown_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoystickModel_set_cancelButtonDelta_m508A4F611F64F834D6EDB84B6539F80FAD1F98DE_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState cancelButtonDelta { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CcancelButtonDeltaU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JoystickModel_get_cancelButtonDelta_m51F7C586967ECC22CE4DA5F81255F83347A71E9E_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState cancelButtonDelta { get; private set; }
int32_t L_0 = __this->___U3CcancelButtonDeltaU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A JoystickModel_get_implementationData_mE5B08F7B50DD4815D1930845A677CB4620467160_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, const RuntimeMethod* method)
{
{
// internal ImplementationData implementationData { get; set; }
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A L_0 = __this->___U3CimplementationDataU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoystickModel_set_implementationData_m1654E5AEE33F55136D14F090EC47DF7E5C097C39_inline (JoystickModel_t8ADCDAC5A54934FBAD527CAABA8E2DBB7CE87017* __this, ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A ___value0, const RuntimeMethod* method)
{
{
// internal ImplementationData implementationData { get; set; }
ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A L_0 = ___value0;
__this->___U3CimplementationDataU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ImplementationData_get_consecutiveMoveCount_mB600F1F6A45941D8114E410D6014964554D7ADEC_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, const RuntimeMethod* method)
{
{
// public int consecutiveMoveCount { get; set; }
int32_t L_0 = __this->___U3CconsecutiveMoveCountU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_consecutiveMoveCount_mE564012624169F567A720A33E73AA649FD164198_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int consecutiveMoveCount { get; set; }
int32_t L_0 = ___value0;
__this->___U3CconsecutiveMoveCountU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ImplementationData_get_lastMoveDirection_m5795BF4D421FE58497DF6E154592CCC66CA43018_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, const RuntimeMethod* method)
{
{
// public MoveDirection lastMoveDirection { get; set; }
int32_t L_0 = __this->___U3ClastMoveDirectionU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_lastMoveDirection_mE7B0C290F1AB9C8C30172606E3B05C9A9EE0B59B_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public MoveDirection lastMoveDirection { get; set; }
int32_t L_0 = ___value0;
__this->___U3ClastMoveDirectionU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ImplementationData_get_lastMoveTime_mFEE11CE8F3FFDD639707E8064EA99CCD64F5C99F_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, const RuntimeMethod* method)
{
{
// public float lastMoveTime { get; set; }
float L_0 = __this->___U3ClastMoveTimeU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_lastMoveTime_m008BD50A07C1403D58D895BE67A571FF72C914D4_inline (ImplementationData_t8BABAA96682290F649B906B84B7F839E4630048A* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float lastMoveTime { get; set; }
float L_0 = ___value0;
__this->___U3ClastMoveTimeU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MouseButtonModel_get_isDown_m6D25D5D7BE9E1781DF3B00F4C0ADD0942F7A0A8C_inline (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, const RuntimeMethod* method)
{
{
// get => m_IsDown;
bool L_0 = __this->___m_IsDown_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MouseButtonModel_get_lastFrameDelta_mF2AC9472F0D1F820ED76F1D6F759B84B97E3842E_inline (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState lastFrameDelta { get; private set; }
int32_t L_0 = __this->___U3ClastFrameDeltaU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MouseButtonModel_set_lastFrameDelta_m760052CA3C1CA5CE93AA226D9F6D7D46023D5346_inline (MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// internal ButtonDeltaState lastFrameDelta { get; private set; }
int32_t L_0 = ___value0;
__this->___U3ClastFrameDeltaU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ImplementationData_get_isDragging_m4342CE900F2E1C5F378AAF38248795FDB757278A_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = __this->___U3CisDraggingU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool dragging { get; set; }
bool L_0 = ___value0;
__this->___U3CdraggingU3Ek__BackingField_22 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ImplementationData_get_pressedTime_m6BB28908890AC2AA318371062BD0B1825AD011A0_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = __this->___U3CpressedTimeU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float clickTime { get; set; }
float L_0 = ___value0;
__this->___U3CclickTimeU3Ek__BackingField_18 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_m68E4FD86C4F9EC5B81D3A15A9ED5776642075218_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpressedPositionU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 pressPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CpressPositionU3Ek__BackingField_15 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_mBDF58873A81E64D77396EEDD9BA9FDE899807683_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpressedRaycastU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pointerPressRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___value0;
__this->___U3CpointerPressRaycastU3Ek__BackingField_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerPressRaycastU3Ek__BackingField_9))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerPressRaycastU3Ek__BackingField_9))->___module_1), (void*)NULL);
#endif
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_mED5188E469B0B53324D43C84CDC4092BFE81802B_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_mE114B4837644AF9AA92C0AB5952ACC15385A8E35_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectRawU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject rawPointerPress { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CrawPointerPressU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CrawPointerPressU3Ek__BackingField_5), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_m5AABEB516101C86E6A8E7243C2E12B3BD2DDE43E_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CdraggedGameObjectU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerDrag { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpointerDragU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerDragU3Ek__BackingField_6), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public bool dragging { get; set; }
bool L_0 = __this->___U3CdraggingU3Ek__BackingField_22;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_isDragging_m23603F83850AE86ED35D0A35EA577A51A5934912_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = ___value0;
__this->___U3CisDraggingU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public float clickTime { get; set; }
float L_0 = __this->___U3CclickTimeU3Ek__BackingField_18;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedTime_m08CE027B7019E15F97EC2997A310D2E26B2B688A_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = ___value0;
__this->___U3CpressedTimeU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_pressPosition_m8A6788DA6BF81481E4EBCBA2ED1838F786EBAE63_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public Vector2 pressPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpressPositionU3Ek__BackingField_15;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedPosition_m1402B47299E1C642D94FAF5AA83750DCBC61FA10_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CpressedPositionU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public RaycastResult pointerPressRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpointerPressRaycastU3Ek__BackingField_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedRaycast_m3FEA7BEBCA8A181BCBA546A396608AD05E719314_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___value0;
__this->___U3CpressedRaycastU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_3))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_3))->___module_1), (void*)NULL);
#endif
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// get { return m_PointerPress; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_PointerPress_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObject_m43A6B848D7254A1A27999F73ACDEAFC53B69A6E5_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectU3Ek__BackingField_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_rawPointerPress_m8B7A6235A116E26EDDBBDB24473BE0F9634C7B71_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public GameObject rawPointerPress { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CrawPointerPressU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObjectRaw_mBF3547F3629CF684A4151F0EB8EDC49AA6C85D6E_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectRawU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectRawU3Ek__BackingField_5), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public GameObject pointerDrag { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerDragU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_draggedGameObject_m9992F3D5D397185C774C37867A18FED90348B6F6_inline (ImplementationData_t070DC0E12FE9606C72C24B90F29B9047865FB05D* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CdraggedGameObjectU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdraggedGameObjectU3Ek__BackingField_6), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MouseModel_get_pointerId_m4093B901532AE29AF876BDE011E97CDB75B19A48_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// public int pointerId { get; }
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MouseModel_get_changedThisFrame_m9FA4FB5A8C2561339EA712BBD12468ADF6B31500_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = __this->___U3CchangedThisFrameU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MouseModel_set_changedThisFrame_m654FCF5EE83F82EEFF6939869044FE1781239014_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = ___value0;
__this->___U3CchangedThisFrameU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_position_m7E6304F677CAB4B807B518B947B95AA63A2BE95A_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// get => m_Position;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_Position_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Subtraction_m664419831773D5BBF06D9DE4E515F6409B2F92B8_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, const RuntimeMethod* method)
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___a0;
float L_1 = L_0.___x_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___b1;
float L_3 = L_2.___x_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___a0;
float L_5 = L_4.___y_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___b1;
float L_7 = L_6.___y_1;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
memset((&L_8), 0, sizeof(L_8));
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_8), ((float)il2cpp_codegen_subtract((float)L_1, (float)L_3)), ((float)il2cpp_codegen_subtract((float)L_5, (float)L_7)), /*hidden argument*/NULL);
V_0 = L_8;
goto IL_0023;
}
IL_0023:
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = V_0;
return L_9;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MouseModel_set_deltaPosition_mF4C0644A65E3E98A9A397643D0E006B9187654DA_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 deltaPosition { get; private set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CdeltaPositionU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_deltaPosition_m343DD465AA88D7C5DE2A2E8A48CC3645434F70FF_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// public Vector2 deltaPosition { get; private set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CdeltaPositionU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseModel_get_scrollDelta_mE5D60044DDB3DC20CB2660C371DCF359DE7B19E0_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// get => m_ScrollDelta;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_ScrollDelta_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_leftButton_m4E4FEAA3354E2243FC862B4E1212D8C372B399A0_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// get => m_LeftButton;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_0 = __this->___m_LeftButton_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_rightButton_m847C28E359189D4A2D4E39F0F5D3CC9943D5E624_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// get => m_RightButton;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_0 = __this->___m_RightButton_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 MouseModel_get_middleButton_m8997BE389494AA17D6BF696BDF1E4889A68EA3C1_inline (MouseModel_t2F69F33E707572E3123D32A97E370F329CE4DC37* __this, const RuntimeMethod* method)
{
{
// get => m_MiddleButton;
MouseButtonModel_tE3D39670E1934335CA8A468707FCC22184099729 L_0 = __this->___m_MiddleButton_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerId_m5B5FF54AB1DE7BD4454022A7C0535C618049BD9B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int pointerId { get; set; }
int32_t L_0 = ___value0;
__this->___U3CpointerIdU3Ek__BackingField_12 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 position { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CpositionU3Ek__BackingField_13 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 delta { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CdeltaU3Ek__BackingField_14 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_scrollDelta_m58007CAE9A9B333B82C36B9E5431FBD926CB556C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 scrollDelta { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CscrollDeltaU3Ek__BackingField_20 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* InternalData_get_pointerTarget_m4C93CAD2F36BD7E897463C1C3DE6BD07B741BF06_inline (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerTargetU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerEnter { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpointerEnterU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerEnterU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* InternalData_get_hoverTargets_m7B27E64A82CB4C34D900E18D81B2BDCE8336EA4C_inline (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = __this->___U3ChoverTargetsU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_useDragThreshold_m63FE2034E4B240F1A0A902B1EB893B3DBA2D848B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool useDragThreshold { get; set; }
bool L_0 = ___value0;
__this->___U3CuseDragThresholdU3Ek__BackingField_21 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InternalData_set_hoverTargets_m0EBDF30E6181C88E401E66EF7241F8C206B88360_inline (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = ___value0;
__this->___U3ChoverTargetsU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ChoverTargetsU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public GameObject pointerEnter { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerEnterU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InternalData_set_pointerTarget_mC6341AA6C2995C1E180BA15AE61884C000F6D89C_inline (InternalData_t7100B940380492C19774536244433DFD434CEB1F* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpointerTargetU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerTargetU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchModel_get_pointerId_mEF567A1F3619C12F6519E4A6335E47BEC45F3D6A_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// public int pointerId { get; }
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchModel_get_selectPhase_m8EF259C3B4DE6A8B17699E796E4294405E07450D_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// get => m_SelectPhase;
int32_t L_0 = __this->___m_SelectPhase_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchModel_get_selectDelta_mE61F993C8533C9E3BBEB2BDBDC65DB68D19C15C5_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// public ButtonDeltaState selectDelta { get; private set; }
int32_t L_0 = __this->___U3CselectDeltaU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TouchModel_set_selectDelta_m78599CB986783C0797E2C4DFF21B3C41062E29BD_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public ButtonDeltaState selectDelta { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CselectDeltaU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TouchModel_set_changedThisFrame_m6F51A89025E6D541FAD0C743D409CA10F0981ECF_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = ___value0;
__this->___U3CchangedThisFrameU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TouchModel_get_changedThisFrame_mAF76A9DB5F6F80A8BE56ADB2BDD35E55A5BE717B_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = __this->___U3CchangedThisFrameU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TouchModel_get_position_m6D3991EE4E0BD3CF7D530F9BDCB34804A21C431F_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// get => m_Position;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_Position_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TouchModel_set_deltaPosition_m347C7275855704F7257AADD47BCABBBEA82F5499_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 deltaPosition { get; private set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CdeltaPositionU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TouchModel_get_deltaPosition_m8F1A9044D3FFE83FA0E82B3D6268829F6DD2A5CD_inline (TouchModel_t6A16FF54D42255A071B7546129D067548261CE0F* __this, const RuntimeMethod* method)
{
{
// public Vector2 deltaPosition { get; private set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CdeltaPositionU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pointerTarget_m1B2B7AB756D7AB58E4DDD61724B28C5BEA7ED45F_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerTargetU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ImplementationData_get_isDragging_mA2CDC9BC26BCAE431DC2D5556C26C4081C0120EC_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = __this->___U3CisDraggingU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ImplementationData_get_pressedTime_m72D41F1D9D6D5374145B9EA73D48DD514DF57FD8_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = __this->___U3CpressedTimeU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_m521F6BF90F71F5364A9D3C9A7DBEC1B3263C2410_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpressedPositionU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_m449154600AFBECB2454BE161E4F2D8E1C64E2725_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpressedRaycastU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_m1C35ACFE7671A98B1BE4C9E63F99DE6F26F5A701_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_m9ACBBB249DE666C8A4FC22EF9D2738F7769ABC26_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectRawU3Ek__BackingField_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_mE3FA41A9E5B1A53CE2D810ECB6F70E931C8C24D2_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CdraggedGameObjectU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ImplementationData_get_hoverTargets_m4291FA348576902BD6421C43CEF21005B42DDEA2_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = __this->___U3ChoverTargetsU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pointerTarget_m0D4C6DE0126FB9B434079FB0191701AE39D11CFA_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpointerTargetU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerTargetU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_isDragging_mF4D332D1A15D3A25CA9DCD01FA66D1DD3509053A_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = ___value0;
__this->___U3CisDraggingU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedTime_m1DD37E6DF363A9D52AAB0DF5D41FA85D480412AB_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = ___value0;
__this->___U3CpressedTimeU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedPosition_mE0AE62062AD3BB0B3F91FC5A0A72C984838BB6A8_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CpressedPositionU3Ek__BackingField_4 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedRaycast_mD8206A598973DF87B20BDBBEC8E6E470D7EDC8FB_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___value0;
__this->___U3CpressedRaycastU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_5))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_5))->___module_1), (void*)NULL);
#endif
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObject_m0B1B3517DF2991D515A6EE42D9A4E1EEB0F3D1A8_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectU3Ek__BackingField_6), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObjectRaw_m53BFBDBF206350007C3B16570C0D1D1017B4478F_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectRawU3Ek__BackingField_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectRawU3Ek__BackingField_7), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_draggedGameObject_m6E44F10143BEC035EA6D122100AE0E331D40EF45_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CdraggedGameObjectU3Ek__BackingField_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdraggedGameObjectU3Ek__BackingField_8), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_hoverTargets_mA2493C8E719D7734B4B52E0224B269C9265795FE_inline (ImplementationData_tBBFF7DF8F979AC0E9D052F7A2A9C6547487766B3* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = ___value0;
__this->___U3ChoverTargetsU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ChoverTargetsU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_pointerId_m81DDB468147FE75C1474C9C6C35753BB53A21275_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public int pointerId { get; set; }
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField_12;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* TrackedDeviceEventData_get_rayPoints_m634507CA62EF8BCFC3A5F1B7F1DE107480FBFE7D_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, const RuntimeMethod* method)
{
{
// public List<Vector3> rayPoints { get; set; }
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_0 = __this->___U3CrayPointsU3Ek__BackingField_31;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB TrackedDeviceEventData_get_layerMask_m4A2A83C58E6B60DC4ED886236CCB760E70D610DD_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, const RuntimeMethod* method)
{
{
// public LayerMask layerMask { get; set; }
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = __this->___U3ClayerMaskU3Ek__BackingField_33;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceEventData_set_rayHitIndex_m1DBE5C18ABAC0E5B241D10DB6164A391F37D5AF7_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int rayHitIndex { get; set; }
int32_t L_0 = ___value0;
__this->___U3CrayHitIndexU3Ek__BackingField_32 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Distance_m99C722723EDD875852EF854AD7B7C4F8AC4F84AB_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___b1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
float V_1 = 0.0f;
float V_2 = 0.0f;
float V_3 = 0.0f;
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___a0;
float L_1 = L_0.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___b1;
float L_3 = L_2.___x_2;
V_0 = ((float)il2cpp_codegen_subtract((float)L_1, (float)L_3));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___a0;
float L_5 = L_4.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___b1;
float L_7 = L_6.___y_3;
V_1 = ((float)il2cpp_codegen_subtract((float)L_5, (float)L_7));
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___a0;
float L_9 = L_8.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___b1;
float L_11 = L_10.___z_4;
V_2 = ((float)il2cpp_codegen_subtract((float)L_9, (float)L_11));
float L_12 = V_0;
float L_13 = V_0;
float L_14 = V_1;
float L_15 = V_1;
float L_16 = V_2;
float L_17 = V_2;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_18;
L_18 = sqrt(((double)((double)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_12, (float)L_13)), (float)((float)il2cpp_codegen_multiply((float)L_14, (float)L_15)))), (float)((float)il2cpp_codegen_multiply((float)L_16, (float)L_17)))))));
V_3 = ((float)((float)L_18));
goto IL_0040;
}
IL_0040:
{
float L_19 = V_3;
return L_19;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Subtraction_m1690F44F6DC92B770A940B6CF8AE0535625A9824_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___b1, const RuntimeMethod* method)
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___a0;
float L_1 = L_0.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___b1;
float L_3 = L_2.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___a0;
float L_5 = L_4.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___b1;
float L_7 = L_6.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___a0;
float L_9 = L_8.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___b1;
float L_11 = L_10.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
memset((&L_12), 0, sizeof(L_12));
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_12), ((float)il2cpp_codegen_subtract((float)L_1, (float)L_3)), ((float)il2cpp_codegen_subtract((float)L_5, (float)L_7)), ((float)il2cpp_codegen_subtract((float)L_9, (float)L_11)), /*hidden argument*/NULL);
V_0 = L_12;
goto IL_0030;
}
IL_0030:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13 = V_0;
return L_13;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Implicit_m8F73B300CB4E6F9B4EB5FB6130363D76CEAA230B_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___v0, const RuntimeMethod* method)
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___v0;
float L_1 = L_0.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___v0;
float L_3 = L_2.___y_3;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
memset((&L_4), 0, sizeof(L_4));
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_4), L_1, L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_0015;
}
IL_0015:
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_0;
return L_5;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* RaycastHitData_get_graphic_mD7D675E65B6B19526DEC71B273334796C44D7B88_inline (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method)
{
{
// public Graphic graphic { get; }
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_0 = __this->___U3CgraphicU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float RaycastHitData_get_distance_mC2299A0A61CCB9C17D93D532D8DE4109C8291EC0_inline (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method)
{
{
// public float distance { get; }
float L_0 = __this->___U3CdistanceU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// set { m_GameObject = value; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___m_GameObject_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_GameObject_0), (void*)L_0);
// set { m_GameObject = value; }
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 RaycastHitData_get_worldHitPosition_mA36CED27016B4C803EE9129A379C1052152D15F2_inline (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method)
{
{
// public Vector3 worldHitPosition { get; }
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CworldHitPositionU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHitData_get_screenPosition_mAAA69CF11624FC7EA8667F228C640DEFCD6FB2AB_inline (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method)
{
{
// public Vector2 screenPosition { get; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CscreenPositionU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RaycastHitData_get_displayIndex_mA3B5A6BD21766DBCE8EA33251BF23FDE7DFE0C50_inline (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD* __this, const RuntimeMethod* method)
{
{
// public int displayIndex { get; }
int32_t L_0 = __this->___U3CdisplayIndexU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC TrackedDeviceModel_get_implementationData_m95202DC252DDE53560803CED892DDD834686B749_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// internal ImplementationData implementationData => m_ImplementationData;
ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC L_0 = __this->___m_ImplementationData_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TrackedDeviceModel_get_pointerId_m7AEFEA8657A653D0968500004E01A9B8672464DD_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public int pointerId { get; }
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float TrackedDeviceModel_get_maxRaycastDistance_m7D59D0EB9A5D126EB753972241962421E4A41E7A_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public float maxRaycastDistance { get; set; }
float L_0 = __this->___U3CmaxRaycastDistanceU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_maxRaycastDistance_m6EC3C19F85D167D4BFC03883616522D37BFB2648_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float maxRaycastDistance { get; set; }
float L_0 = ___value0;
__this->___U3CmaxRaycastDistanceU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackedDeviceModel_get_select_mF73B603383F4D45021CD0AAFC29324A54AC8D55D_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_SelectDown;
bool L_0 = __this->___m_SelectDown_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TrackedDeviceModel_get_selectDelta_m3F6B5717A4F6C2DC505EA92A11846820A14B35FC_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public ButtonDeltaState selectDelta { get; private set; }
int32_t L_0 = __this->___U3CselectDeltaU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_selectDelta_m61649F57176681CCBD64C07F4A4F0F3974DECE4C_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public ButtonDeltaState selectDelta { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CselectDeltaU3Ek__BackingField_5 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_changedThisFrame_mDE51F8C5DC3A66BA3F13B32F0CEE792E9FF7C1AB_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = ___value0;
__this->___U3CchangedThisFrameU3Ek__BackingField_6 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TrackedDeviceModel_get_changedThisFrame_m4C3C35C841B822ABB3D5DEE90F26FA74D8EE9FE1_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public bool changedThisFrame { get; private set; }
bool L_0 = __this->___U3CchangedThisFrameU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 TrackedDeviceModel_get_position_mA1B101753B4DE6F7142EE4DB49487104019DF4BE_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_Position;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___m_Position_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 TrackedDeviceModel_get_orientation_m870C73AC6F4686930F729F7BDBF5812D7BB0CBCA_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_Orientation;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0 = __this->___m_Orientation_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Quaternion_op_Inequality_mC1922F160B14F6F404E46FFCC10B282D913BE354_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___lhs0, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rhs1, const RuntimeMethod* method)
{
bool V_0 = false;
{
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0 = ___lhs0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_1 = ___rhs1;
bool L_2;
L_2 = Quaternion_op_Equality_m3DF1D708D3A0AFB11EACF42A9C068EF6DC508FBB_inline(L_0, L_1, NULL);
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
goto IL_000e;
}
IL_000e:
{
bool L_3 = V_0;
return L_3;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* TrackedDeviceModel_get_raycastPoints_m3087C3A9A899CDA89FABE930AB7CD63A9856E07B_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_RaycastPoints;
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_0 = __this->___m_RaycastPoints_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 TrackedDeviceModel_get_currentRaycast_mAF58714250F6AB9E34888B19F2449EF2D0FA94E4_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public RaycastResult currentRaycast { get; private set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CcurrentRaycastU3Ek__BackingField_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_currentRaycast_mB605A8C85EFDAEDC5D8A39468CD0933E54F50C73_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult currentRaycast { get; private set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___value0;
__this->___U3CcurrentRaycastU3Ek__BackingField_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CcurrentRaycastU3Ek__BackingField_10))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CcurrentRaycastU3Ek__BackingField_10))->___module_1), (void*)NULL);
#endif
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TrackedDeviceModel_get_currentRaycastEndpointIndex_m2CF4F264EBDDE6EAE7285ED58636F55FB1FCAA9C_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// public int currentRaycastEndpointIndex { get; private set; }
int32_t L_0 = __this->___U3CcurrentRaycastEndpointIndexU3Ek__BackingField_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceModel_set_currentRaycastEndpointIndex_m590E66F5A9635363FE8E140E0F9CC28328AEC2E1_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int currentRaycastEndpointIndex { get; private set; }
int32_t L_0 = ___value0;
__this->___U3CcurrentRaycastEndpointIndexU3Ek__BackingField_11 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB TrackedDeviceModel_get_raycastLayerMask_mB1E60DDB72A91FD2A65B00356D485513174C60AF_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_RaycastLayerMask;
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = __this->___m_RaycastLayerMask_12;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TrackedDeviceModel_get_scrollDelta_mCADE5E90334C1EE03593B0BCB7E21D55D2098E87_inline (TrackedDeviceModel_t38B1BA171F5602138D487005E134580213B4DBE8* __this, const RuntimeMethod* method)
{
{
// get => m_ScrollDelta;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_ScrollDelta_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 Quaternion_get_identity_mB9CAEEB21BC81352CBF32DB9664BFC06FA7EA27B_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0 = ((Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_StaticFields*)il2cpp_codegen_static_fields_for(Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_il2cpp_TypeInfo_var))->___identityQuaternion_4;
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_1 = V_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceEventData_set_rayPoints_m50DE65136BB92487876DC7FA3E8FD98AB95CDE04_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___value0, const RuntimeMethod* method)
{
{
// public List<Vector3> rayPoints { get; set; }
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* L_0 = ___value0;
__this->___U3CrayPointsU3Ek__BackingField_31 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CrayPointsU3Ek__BackingField_31), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedDeviceEventData_set_layerMask_mE98A92C0797C746EE0692EA41121D862C279D76F_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___value0, const RuntimeMethod* method)
{
{
// public LayerMask layerMask { get; set; }
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = ___value0;
__this->___U3ClayerMaskU3Ek__BackingField_33 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pointerTarget_mB2D4D091AC3BC5E937FB7252047DA33AC409FAEB_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerTargetU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ImplementationData_get_isDragging_mEE3BF283FC9C5235D15708D18BE89E06319F781D_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = __this->___U3CisDraggingU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ImplementationData_get_pressedTime_m154FBADD86CD746C703BF37003C64C428CADAC35_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = __this->___U3CpressedTimeU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_position_m421FC9657A48CBED5AD985B2D7905BF7B06CA446_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public Vector2 position { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpositionU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ImplementationData_get_pressedPosition_mE3E33C31F62A5ABF18461C479CA7DA9D8DB32262_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpressedPositionU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ImplementationData_get_pressedRaycast_mA355A412C26FAB49EA39F4DEFDA824465DFDE48E_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpressedRaycastU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObject_m81DA354AA04B9531100A8C8C6A61100493115CF5_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectU3Ek__BackingField_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_pressedGameObjectRaw_mE9702863BC33793FB5DE550F0789A9058F369A2C_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpressedGameObjectRawU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ImplementationData_get_draggedGameObject_mBD53214AA566627B15D7EA5F6080758FF95C1848_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CdraggedGameObjectU3Ek__BackingField_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ImplementationData_get_hoverTargets_m49C9E4E462CC1064607FA5A3BA0EF5AB0360EE0D_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = __this->___U3ChoverTargetsU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pointerTarget_m6A49B7736E5B50E934D4D998648ED2AB2D69C582_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerTarget { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpointerTargetU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerTargetU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_isDragging_m315511026FE53448151B19E47E4902F90E819BC2_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool isDragging { get; set; }
bool L_0 = ___value0;
__this->___U3CisDraggingU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedTime_m0EB8960EE81F4D82A71AAC719999CE01D64DCDA6_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, float ___value0, const RuntimeMethod* method)
{
{
// public float pressedTime { get; set; }
float L_0 = ___value0;
__this->___U3CpressedTimeU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public Vector2 position { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpositionU3Ek__BackingField_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_position_m82C559B25F9B9515CCAE8FA900B78A2072CD3F7E_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 position { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CpositionU3Ek__BackingField_4 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedPosition_m9BBCEC0224F0FCB1572F06B61A01074A0CAD5DCA_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 pressedPosition { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CpressedPositionU3Ek__BackingField_5 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedRaycast_mB79CE5436DFBFAB118F234D25B7D49E72582D9EB_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pressedRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___value0;
__this->___U3CpressedRaycastU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_6))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpressedRaycastU3Ek__BackingField_6))->___module_1), (void*)NULL);
#endif
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObject_mF87125F8EFFBE3ED0609B5C67EA86704715996FE_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectU3Ek__BackingField_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectU3Ek__BackingField_7), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_pressedGameObjectRaw_m3AEB4F85F771C297EAE30B1CAAFDD990446624B4_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject pressedGameObjectRaw { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CpressedGameObjectRawU3Ek__BackingField_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpressedGameObjectRawU3Ek__BackingField_8), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_draggedGameObject_m977BE3A90025D2F50AC30A321D30245423B9CA6A_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___value0, const RuntimeMethod* method)
{
{
// public GameObject draggedGameObject { get; set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___value0;
__this->___U3CdraggedGameObjectU3Ek__BackingField_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdraggedGameObjectU3Ek__BackingField_9), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public RaycastResult pointerCurrentRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpointerCurrentRaycastU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TrackedDeviceEventData_get_rayHitIndex_mF78EEEBC65BFB650372F8AE3736CC747A852D857_inline (TrackedDeviceEventData_tB1688CBC0BDCF364105F2BED2B2F3E71757255E9* __this, const RuntimeMethod* method)
{
{
// public int rayHitIndex { get; set; }
int32_t L_0 = __this->___U3CrayHitIndexU3Ek__BackingField_32;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImplementationData_set_hoverTargets_mCD8DCF11D40DAC82195A1724F2BA0D85FF57E70C_inline (ImplementationData_t175CD17EADED010E9B5BA19575E4AD41F2FE67AC* __this, List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___value0, const RuntimeMethod* method)
{
{
// public List<GameObject> hoverTargets { get; set; }
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = ___value0;
__this->___U3ChoverTargetsU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ChoverTargetsU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RaycastHitArraySegment_set_count_m914E21014BA452D837B277FC9088881160F7AE1D_inline (RaycastHitArraySegment_t524F00515B13A37C0F39D0C416D5779F2377436C* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_Count = value;
int32_t L_0 = ___value0;
__this->___m_Count_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector2_op_Implicit_mCD214B04BC52AED3C89C3BEF664B6247E5F8954A_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___v0, const RuntimeMethod* method)
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___v0;
float L_1 = L_0.___x_0;
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___v0;
float L_3 = L_2.___y_1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4;
memset((&L_4), 0, sizeof(L_4));
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_4), L_1, L_3, (0.0f), /*hidden argument*/NULL);
V_0 = L_4;
goto IL_001a;
}
IL_001a:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = V_0;
return L_5;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
{
{
// get { return m_EventSystem; }
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = __this->___m_EventSystem_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
{
{
// get { return m_CurrentInputModule; }
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_0 = __this->___m_CurrentInputModule_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
{
{
// get { return m_CurrentSelected; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CurrentSelected_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* ExecuteEvents_get_updateSelectedHandler_mB63CDEA5DE1C37F2E0974E9E9679686627E924E6_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_UpdateSelectedHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_UpdateSelectedHandler_12;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pointerCurrentRaycast { get; set; }
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___value0;
__this->___U3CpointerCurrentRaycastU3Ek__BackingField_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerCurrentRaycastU3Ek__BackingField_8))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerCurrentRaycastU3Ek__BackingField_8))->___module_1), (void*)NULL);
#endif
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method)
{
{
// get { return m_GameObject; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_GameObject_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* ExecuteEvents_get_pointerExitHandler_m154D2E32DCA968A218B1AC5997E5D8F68D4E5E77_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerExitHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerExitHandler_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* ExecuteEvents_get_pointerEnterHandler_m590CE74EB8D301A4E92EC941C5E644B7C2DE39E9_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerEnterHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerEnterHandler_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool eligibleForClick { get; set; }
bool L_0 = ___value0;
__this->___U3CeligibleForClickU3Ek__BackingField_11 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* ExecuteEvents_get_pointerDownHandler_mF03E3A959BA9C0FA008013C1A02AE0AF6042DF44_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerDownHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerDownHandler_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_lastPress_m46720C62503214A44EE947679A8BA307BC2AEEDC_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public GameObject lastPress { get; private set; }
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3ClastPressU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_clickCount_m3977011C09DB9F904B1AAC3708B821B8D6AC0F9F_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public int clickCount { get; set; }
int32_t L_0 = __this->___U3CclickCountU3Ek__BackingField_19;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int clickCount { get; set; }
int32_t L_0 = ___value0;
__this->___U3CclickCountU3Ek__BackingField_19 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* ExecuteEvents_get_initializePotentialDrag_mD6C19D7BF028E6319B08CBF2BB7F0B8FDEEB03F1_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_InitializePotentialDragHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_InitializePotentialDragHandler_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* ExecuteEvents_get_pointerUpHandler_mD03905CA3A384EC6AA81326758AB878087DC8C86_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerUpHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerUpHandler_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_eligibleForClick_m4B01A1640C694FD7421BDFB19CF763BC85672C8E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public bool eligibleForClick { get; set; }
bool L_0 = __this->___U3CeligibleForClickU3Ek__BackingField_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* ExecuteEvents_get_pointerClickHandler_m4BF7FB241BD3AE488E0E1BE900666ECC2F2DFA78_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerClickHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerClickHandler_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* ExecuteEvents_get_dropHandler_m61ECC86CEAC77AA7C7E7793F6241D2413858354C_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_DropHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DropHandler_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* ExecuteEvents_get_endDragHandler_m6F1588E368AD932233A5E6BCD8D7259E9C5B921E_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_EndDragHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_EndDragHandler_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventSystem_get_pixelDragThreshold_m2F7B0D1B5ACC63EB507FD7CCFE74F2B2804FF2E3_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
{
{
// get { return m_DragThreshold; }
int32_t L_0 = __this->___m_DragThreshold_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* ExecuteEvents_get_beginDragHandler_m330A9FEFFAF518FC1DAABE7A425BEB345B019421_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_BeginDragHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_BeginDragHandler_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* ExecuteEvents_get_dragHandler_m301F931ED0A78DBF5838822F836FBD221A57C76A_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_DragHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DragHandler_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
{
{
// public Vector2 scrollDelta { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CscrollDeltaU3Ek__BackingField_20;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* ExecuteEvents_get_scrollHandler_m2C857BD9AD23E281213BEAFD9ECCE080A784CF08_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_ScrollHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_ScrollHandler_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public InputButton button { get; set; }
int32_t L_0 = ___value0;
__this->___U3CbuttonU3Ek__BackingField_23 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___x0, float ___y1, const RuntimeMethod* method)
{
{
float L_0 = ___x0;
__this->___x_0 = L_0;
float L_1 = ___y1;
__this->___y_1 = L_1;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* UIInputModule_get_uiCamera_mE7FE3483DD96250D5E9C4EEA0E4ADD4FAC1E7647_inline (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, const RuntimeMethod* method)
{
{
// public Camera uiCamera { get; set; }
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = __this->___U3CuiCameraU3Ek__BackingField_15;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UIInputModule_set_uiCamera_m37C392685DE455B9197AC432551BA808A1A9001D_inline (UIInputModule_t9F252B720B55B1976F4B2A1D2726E3D3D46781F7* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___value0, const RuntimeMethod* method)
{
{
// public Camera uiCamera { get; set; }
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = ___value0;
__this->___U3CuiCameraU3Ek__BackingField_15 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CuiCameraU3Ek__BackingField_15), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EventSystem_get_sendNavigationEvents_m8BA21E58E633B2C5B477E49DAABAD3C97A8158AF_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
{
{
// get { return m_sendNavigationEvents; }
bool L_0 = __this->___m_sendNavigationEvents_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AxisEventData_set_moveVector_mC744F8B3519A6EE5E60482E8FB39641181C62914_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method)
{
{
// public Vector2 moveVector { get; set; }
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___value0;
__this->___U3CmoveVectorU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AxisEventData_set_moveDir_mD82A8AEB52FEFAC48CA064BB77A381B9A3E1B24B_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public MoveDirection moveDir { get; set; }
int32_t L_0 = ___value0;
__this->___U3CmoveDirU3Ek__BackingField_3 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* ExecuteEvents_get_moveHandler_mDFB011B3A254EBA2556ACBBF08AAD475466B885F_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_MoveHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_MoveHandler_15;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* ExecuteEvents_get_submitHandler_m22E457BC6DEF2DE3EFBA851643491A70C02C9CB9_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_SubmitHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_SubmitHandler_16;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* ExecuteEvents_get_cancelHandler_mE98A451E87161D0AC02028FBBB3A1F136AFAAB8E_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_CancelHandler; }
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_CancelHandler_17;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* Mouse_get_current_m559AE408DFE4F44D811979FE592BBAF7A84CE6F3_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public new static Mouse current { get; private set; }
Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* L_0 = ((Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F_StaticFields*)il2cpp_codegen_static_fields_for(Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField_52;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* Pointer_get_position_m4286004169788483EEDA6AF833CEFDB04FEDF3D8_inline (Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* __this, const RuntimeMethod* method)
{
{
// public Vector2Control position { get; protected set; }
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_0 = __this->___U3CpositionU3Ek__BackingField_39;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* Mouse_get_scroll_m309B52001D54F8EEA0F773846829AF03AD6EA8B2_inline (Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* __this, const RuntimeMethod* method)
{
{
// public Vector2Control scroll { get; protected set; }
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_0 = __this->___U3CscrollU3Ek__BackingField_45;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Mouse_get_leftButton_m1015BCBE6BE30B1D1D2702736A4E64120F6B5DFB_inline (Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* __this, const RuntimeMethod* method)
{
{
// public ButtonControl leftButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CleftButtonU3Ek__BackingField_46;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Mouse_get_rightButton_mFA0FD700624C0DE1B858F9516426414767F09D98_inline (Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* __this, const RuntimeMethod* method)
{
{
// public ButtonControl rightButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CrightButtonU3Ek__BackingField_48;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Mouse_get_middleButton_m1E9EB13B53CAA15CD49C6861A6CD542452B3A8A9_inline (Mouse_t9A9CC4636FA9CDBAD7FB7A02DB0D6395EDCC338F* __this, const RuntimeMethod* method)
{
{
// public ButtonControl middleButton { get; protected set; }
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CmiddleButtonU3Ek__BackingField_47;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
int32_t L_7 = V_1;
RuntimeObject* L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
return;
}
IL_0034:
{
RuntimeObject* L_9 = ___item0;
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* RegistrationList_1_get_registeredSnapshot_mB07CB8F0D54483210DCB65E3485609E0ABBE490E_gshared_inline (RegistrationList_1_t99EE15A7482978101DC3214641F5003F17001659* __this, const RuntimeMethod* method)
{
{
// public List<T> registeredSnapshot { get; } = new List<T>();
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___U3CregisteredSnapshotU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
if (!true)
{
goto IL_0035;
}
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_0 = (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HashSet_1_get_Count_m41CC85EEB7855CEFA3BC7A32F115387939318ED3_gshared_inline (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____count_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m139A176CD271A0532D75BE08DA7831C8C45CE28F_gshared_inline (Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m46EEFFA770BE665EA0CB3A5332E941DA4B3C1D37_gshared_inline (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mEF6F24F9B19B3360DC8CAAD446C7696B33FC39B8_gshared_inline (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
if (!true)
{
goto IL_0035;
}
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F* L_3 = (RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD Enumerator_get_Current_m4EB063F639AF28B245521BD522C30F593726BBB7_gshared_inline (Enumerator_tAA4A4BD7D355FBF42A3A7F697B4879732B7C0E63* __this, const RuntimeMethod* method)
{
{
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD L_0 = (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___item0, const RuntimeMethod* method)
{
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* L_1 = (RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* L_6 = V_0;
int32_t L_7 = V_1;
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023)L_8);
return;
}
IL_0034:
{
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_9 = ___item0;
(( void (*) (List_1_t8292C421BBB00D7661DC07462822936152BAB446*, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mE6C474BBCAFBE5F68FF0E6FF95C034FE7AD19956_gshared_inline (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F* __this, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD ___item0, const RuntimeMethod* method)
{
RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F* L_1 = (RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
RaycastHitDataU5BU5D_t63FC3E1D1CEA04182A5AAF2036D63621400B6A3F* L_6 = V_0;
int32_t L_7 = V_1;
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD)L_8);
return;
}
IL_0034:
{
RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD L_9 = ___item0;
(( void (*) (List_1_t91BC45BAAA80A09253B338C6334A8106CD4B8A3F*, RaycastHitData_tC602FBF6250942C226E1EA0D0FDE0257B29B1AFD, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m455780C5A45049F9BDC25EAD3BA10A681D16385D_gshared_inline (List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
if (!false)
{
goto IL_0035;
}
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_3 = (Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mBB1C1097E6EAB4F19E432E94B29D294EC9313A1F_gshared_inline (List_1_t616BC508412283D06A62FEEDA7C4D4C3E75D63D9* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
if (!false)
{
goto IL_0035;
}
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_3 = (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 Enumerator_get_Current_mCD34ACB6BE5F6BEEEE297AD23C2C1FC1174813FF_gshared_inline (Enumerator_t7FB9A864B8E4C5DE8CF91F553331D279B482FE9F* __this, const RuntimeMethod* method)
{
{
RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 L_0 = (RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
if (!true)
{
goto IL_0035;
}
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* L_3 = (RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF71CF488380BF346F8EEF192F87913D21BC4D9B1_gshared_inline (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m45F907169865B34600173F8463808BC00FE4120B_gshared_inline (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54* __this, RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E ___item0, const RuntimeMethod* method)
{
RegisteredInteractorU5BU5D_t33AC6CD1C7F2D832B7436B5E1F4F4914E9F078B7* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
RegisteredInteractorU5BU5D_t33AC6CD1C7F2D832B7436B5E1F4F4914E9F078B7* L_1 = (RegisteredInteractorU5BU5D_t33AC6CD1C7F2D832B7436B5E1F4F4914E9F078B7*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
RegisteredInteractorU5BU5D_t33AC6CD1C7F2D832B7436B5E1F4F4914E9F078B7* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
RegisteredInteractorU5BU5D_t33AC6CD1C7F2D832B7436B5E1F4F4914E9F078B7* L_6 = V_0;
int32_t L_7 = V_1;
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E)L_8);
return;
}
IL_0034:
{
RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E L_9 = ___item0;
(( void (*) (List_1_t8B7AF2436BEFB337AA2685419EFEB9E9098EFE54*, RegisteredInteractor_tE007297C2DFA8EA7A2DFA2CECBF98837726B775E, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m8BC63AC1C158DDA21860D4A424BCAB4A01363FDF_gshared_inline (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m2B08809ACCCD8B2CAF21468D0671EB5643A4A2CA_gshared_inline (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC* __this, RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 ___item0, const RuntimeMethod* method)
{
RegisteredTouchU5BU5D_tC266F7A4629252045ECEBE7BFA7219C15AF92FD7* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
RegisteredTouchU5BU5D_tC266F7A4629252045ECEBE7BFA7219C15AF92FD7* L_1 = (RegisteredTouchU5BU5D_tC266F7A4629252045ECEBE7BFA7219C15AF92FD7*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
RegisteredTouchU5BU5D_tC266F7A4629252045ECEBE7BFA7219C15AF92FD7* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
RegisteredTouchU5BU5D_tC266F7A4629252045ECEBE7BFA7219C15AF92FD7* L_6 = V_0;
int32_t L_7 = V_1;
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37)L_8);
return;
}
IL_0034:
{
RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37 L_9 = ___item0;
(( void (*) (List_1_t7DDD0E2914630BFA9481B4871C63EE6D87CF03CC*, RegisteredTouch_t8EB3F6F234A7EDE6AD3F6A37F7F2FE3EE85E6C37, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AutoScope__ctor_m7F63A273E382CB6328736B6E7F321DDFA40EA9E3_inline (AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139* __this, intptr_t ___markerPtr0, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___markerPtr0;
__this->___m_Ptr_0 = L_0;
intptr_t L_1 = ___markerPtr0;
ProfilerUnsafeUtility_BeginSample_m1C6D6ED1C8E0CB2FD0934EB6EA333276F67C14F6(L_1, NULL);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->___x_2;
float L_1 = __this->___x_2;
float L_2 = __this->___y_3;
float L_3 = __this->___y_3;
float L_4 = __this->___z_4;
float L_5 = __this->___z_4;
V_0 = ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_0, (float)L_1)), (float)((float)il2cpp_codegen_multiply((float)L_2, (float)L_3)))), (float)((float)il2cpp_codegen_multiply((float)L_4, (float)L_5))));
goto IL_002d;
}
IL_002d:
{
float L_6 = V_0;
return L_6;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mA9DCA91E87D6D27034F56ABA52606A9090406016_inline (float ___a0, float ___b1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float G_B3_0 = 0.0f;
{
float L_0 = ___a0;
float L_1 = ___b1;
if ((((float)L_0) > ((float)L_1)))
{
goto IL_0008;
}
}
{
float L_2 = ___b1;
G_B3_0 = L_2;
goto IL_0009;
}
IL_0008:
{
float L_3 = ___a0;
G_B3_0 = L_3;
}
IL_0009:
{
V_0 = G_B3_0;
goto IL_000c;
}
IL_000c:
{
float L_4 = V_0;
return L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, float ___r0, float ___g1, float ___b2, float ___a3, const RuntimeMethod* method)
{
{
float L_0 = ___r0;
__this->___r_0 = L_0;
float L_1 = ___g1;
__this->___g_1 = L_1;
float L_2 = ___b2;
__this->___b_2 = L_2;
float L_3 = ___a3;
__this->___a_3 = L_3;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Quaternion__ctor_m868FD60AA65DD5A8AC0C5DEB0608381A8D85FCD8_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974* __this, float ___x0, float ___y1, float ___z2, float ___w3, const RuntimeMethod* method)
{
{
float L_0 = ___x0;
__this->___x_0 = L_0;
float L_1 = ___y1;
__this->___y_1 = L_1;
float L_2 = ___z2;
__this->___z_2 = L_2;
float L_3 = ___w3;
__this->___w_3 = L_3;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_Normalize_m6120F119433C5B60BBB28731D3D4A0DA50A84DDD_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___value0, const RuntimeMethod* method)
{
float V_0 = 0.0f;
bool V_1 = false;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
memset((&V_2), 0, sizeof(V_2));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___value0;
float L_1;
L_1 = Vector3_Magnitude_m6AD0BEBF88AAF98188A851E62D7A32CB5B7830EF_inline(L_0, NULL);
V_0 = L_1;
float L_2 = V_0;
V_1 = (bool)((((float)L_2) > ((float)(9.99999975E-06f)))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_001e;
}
}
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___value0;
float L_5 = V_0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
L_6 = Vector3_op_Division_mD7200D6D432BAFC4135C5B17A0B0A812203B0270_inline(L_4, L_5, NULL);
V_2 = L_6;
goto IL_0026;
}
IL_001e:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7;
L_7 = Vector3_get_zero_m9D7F7B580B5A276411267E96AA3425736D9BDC83_inline(NULL);
V_2 = L_7;
goto IL_0026;
}
IL_0026:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = V_2;
return L_8;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Angle_m1B9CC61B142C3A0E7EEB0559983CC391D1582F56_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___from0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___to1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
float V_1 = 0.0f;
bool V_2 = false;
float V_3 = 0.0f;
{
float L_0;
L_0 = Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline((&___from0), NULL);
float L_1;
L_1 = Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline((&___to1), NULL);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_2;
L_2 = sqrt(((double)((double)((float)il2cpp_codegen_multiply((float)L_0, (float)L_1)))));
V_0 = ((float)((float)L_2));
float L_3 = V_0;
V_2 = (bool)((((float)L_3) < ((float)(1.0E-15f)))? 1 : 0);
bool L_4 = V_2;
if (!L_4)
{
goto IL_002c;
}
}
{
V_3 = (0.0f);
goto IL_0056;
}
IL_002c:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___from0;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___to1;
float L_7;
L_7 = Vector3_Dot_m4688A1A524306675DBDB1E6D483F35E85E3CE6D8_inline(L_5, L_6, NULL);
float L_8 = V_0;
float L_9;
L_9 = Mathf_Clamp_m154E404AF275A3B2EC99ECAA3879B4CB9F0606DC_inline(((float)((float)L_7/(float)L_8)), (-1.0f), (1.0f), NULL);
V_1 = L_9;
float L_10 = V_1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_11;
L_11 = acos(((double)((double)L_10)));
V_3 = ((float)il2cpp_codegen_multiply((float)((float)((float)L_11)), (float)(57.2957802f)));
goto IL_0056;
}
IL_0056:
{
float L_12 = V_3;
return L_12;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Quaternion_op_Equality_m3DF1D708D3A0AFB11EACF42A9C068EF6DC508FBB_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___lhs0, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rhs1, const RuntimeMethod* method)
{
bool V_0 = false;
{
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0 = ___lhs0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_1 = ___rhs1;
float L_2;
L_2 = Quaternion_Dot_m4A80D03D7B7DEC054E2175E53D072675649C6713_inline(L_0, L_1, NULL);
bool L_3;
L_3 = Quaternion_IsEqualUsingDot_m5C6AC5F5C56B27C25DDF612BEEF40F28CA44CA31_inline(L_2, NULL);
V_0 = L_3;
goto IL_0010;
}
IL_0010:
{
bool L_4 = V_0;
return L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Magnitude_m6AD0BEBF88AAF98188A851E62D7A32CB5B7830EF_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___vector0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___vector0;
float L_1 = L_0.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___vector0;
float L_3 = L_2.___x_2;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___vector0;
float L_5 = L_4.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___vector0;
float L_7 = L_6.___y_3;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___vector0;
float L_9 = L_8.___z_4;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___vector0;
float L_11 = L_10.___z_4;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_12;
L_12 = sqrt(((double)((double)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_1, (float)L_3)), (float)((float)il2cpp_codegen_multiply((float)L_5, (float)L_7)))), (float)((float)il2cpp_codegen_multiply((float)L_9, (float)L_11)))))));
V_0 = ((float)((float)L_12));
goto IL_0034;
}
IL_0034:
{
float L_13 = V_0;
return L_13;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Division_mD7200D6D432BAFC4135C5B17A0B0A812203B0270_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___a0, float ___d1, const RuntimeMethod* method)
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___a0;
float L_1 = L_0.___x_2;
float L_2 = ___d1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___a0;
float L_4 = L_3.___y_3;
float L_5 = ___d1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___a0;
float L_7 = L_6.___z_4;
float L_8 = ___d1;
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
memset((&L_9), 0, sizeof(L_9));
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_9), ((float)((float)L_1/(float)L_2)), ((float)((float)L_4/(float)L_5)), ((float)((float)L_7/(float)L_8)), /*hidden argument*/NULL);
V_0 = L_9;
goto IL_0021;
}
IL_0021:
{
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = V_0;
return L_10;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Quaternion_Dot_m4A80D03D7B7DEC054E2175E53D072675649C6713_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___a0, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___b1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0 = ___a0;
float L_1 = L_0.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_2 = ___b1;
float L_3 = L_2.___x_0;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_4 = ___a0;
float L_5 = L_4.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_6 = ___b1;
float L_7 = L_6.___y_1;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_8 = ___a0;
float L_9 = L_8.___z_2;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_10 = ___b1;
float L_11 = L_10.___z_2;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_12 = ___a0;
float L_13 = L_12.___w_3;
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_14 = ___b1;
float L_15 = L_14.___w_3;
V_0 = ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_1, (float)L_3)), (float)((float)il2cpp_codegen_multiply((float)L_5, (float)L_7)))), (float)((float)il2cpp_codegen_multiply((float)L_9, (float)L_11)))), (float)((float)il2cpp_codegen_multiply((float)L_13, (float)L_15))));
goto IL_003b;
}
IL_003b:
{
float L_16 = V_0;
return L_16;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Quaternion_IsEqualUsingDot_m5C6AC5F5C56B27C25DDF612BEEF40F28CA44CA31_inline (float ___dot0, const RuntimeMethod* method)
{
bool V_0 = false;
{
float L_0 = ___dot0;
V_0 = (bool)((((float)L_0) > ((float)(0.999998987f)))? 1 : 0);
goto IL_000c;
}
IL_000c:
{
bool L_1 = V_0;
return L_1;
}
}
|
40bd0de984c2d8f21a7ac8afcd8789daba6b5f37 | 6150f5bfbecf86305e1ff0bc18efc1cec3acff64 | /DESERT_Framework/DESERT/physical/uwahoimodem/ahoitypes.h | 6347887c178d20e22ef039abbdf21b7bde678604 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | obolo/DESERT_Underwater | 7938f5a9b195eb00104297525f3120ad864480d0 | 0a5ea70a61ad65e682f1340ba30bf9e36b782558 | refs/heads/master | 2023-02-08T12:31:47.466974 | 2023-01-22T22:57:29 | 2023-01-22T22:57:29 | 382,600,706 | 0 | 0 | BSD-3-Clause | 2021-12-17T00:12:59 | 2021-07-03T11:40:18 | null | UTF-8 | C++ | false | false | 6,865 | h | ahoitypes.h | //
// Copyright (c) 2019 Regents of the SIGNET lab, University of Padova.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// 3. Neither the name of the University of Padova (SIGNET lab) nor the
// names of its contributors may be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef AHOIPACKETTYPES_H
#define AHOIPACKETTYPES_H
#include <map>
#include <stdint.h>
#include <sys/types.h>
namespace ahoi
{
enum class Command {
send,
confirm,
id,
batvol,
reset,
agc,
rxgain,
txgain,
range_delay,
distance,
packetstat,
packetstatreset,
syncstat,
syncstatreset,
sfdstat,
sfdstatreset,
allstat,
allstatreset
};
extern std::map<ahoi::Command, uint8_t> commands_id;
// TYPES AND VARIABLE
constexpr uint AHOI_TYPE_ACK = ((1 << (8 * sizeof(uint8_t) - 1)) - 1);
constexpr uint AHOI_SERIAL_ACK = ((1 << (8 * sizeof(uint8_t))) - 1);
constexpr uint AHOI_ADDR_BCAST = ((1 << (8 * sizeof(uint8_t))) - 1);
// maximum payload length of a packet
constexpr uint PAYLOAD_MAXLEN = 128;
// PACKET STRUCTS
// packet header
struct __attribute__((__packed__)) header_t {
uint8_t src; // source address
uint8_t dst; // destination address
uint8_t type; // packet type
uint8_t status; // status flags
uint8_t dsn; // sequence number
uint8_t len; // payload length in bytes
};
struct __attribute__((__packed__)) footer_t {
uint8_t power;
uint8_t rssi;
uint8_t biterrors;
uint8_t agcMean;
uint8_t agcMin;
uint8_t agcMax;
};
struct __attribute__((__packed__)) packet_t {
ahoi::header_t header;
uint8_t payload[PAYLOAD_MAXLEN];
ahoi::footer_t footer;
};
constexpr uint MAX_PKT_LEN = (sizeof(packet_t));
constexpr uint HEADER_LEN = (sizeof(header_t));
constexpr uint FOOTER_LEN = (sizeof(footer_t));
constexpr uint MM_PAYLOAD_CRC_LEN = 2; /* bytes */
constexpr uint MM_HEADER_CRC_LEN = 1; /* bytes */
// ack setup
constexpr uint ACK_NONE = 0x00; // do not request ack
constexpr uint ACK_PLAIN = 0x01; // request ack
constexpr uint ACK_RANGING = 0x02; // request ack with ranging info
// STRUCT FOR COMMAND PACKETS
struct __attribute__((__packed__)) agc_cmd {
bool en; // agc enable/disable (true/false)
};
struct __attribute__((__packed__)) batvoltage_rsp {
uint16_t voltage;
};
struct __attribute__((__packed__)) config_rsp {
char descr[1];
};
struct __attribute__((__packed__)) filterraw_cmd {
uint8_t stage; // filter stage
uint8_t value; // raw value
};
struct __attribute__((__packed__)) filterraw_rsp {
struct __attribute__((__packed__)) {
uint8_t stage; // filter stage
uint8_t value; // raw value
} stages[1];
};
struct __attribute__((__packed__)) freqsetup_numbands_cmd {
uint8_t numBands;
};
struct __attribute__((__packed__)) freqsetup_numcarriers_cmd {
uint8_t numCarriers;
};
struct __attribute__((__packed__)) id_cmd {
uint8_t id; // modem id (optional)
};
struct __attribute__((__packed__)) packetstat_rsp {
uint16_t numTx; // sent packets
uint16_t numSync; // successful syncs
uint16_t numSfd; // successful sfds
uint16_t numRxComplete; // received (intact) packets
uint16_t numRxHeaderBadCrc; // crc
uint16_t numRxHeaderBitErr; // repairable bit errors
uint16_t numRxHeaderBitErrFatal; // non-repairable bit errors
uint16_t numRxPayloadBadCrc; // crc
uint16_t numRxPayloadBitErr; // repairable bit errors
uint16_t numRxPayloadBitErrFatal; // non-repairable bit errors
uint16_t numRxCritError; // critical errors (unexpected behavior)
};
struct __attribute__((__packed__)) peakwinlen_cmd {
uint16_t winlen; // length in micro seconds
};
struct __attribute__((__packed__)) powerlevel_rsp {
uint8_t power; // power value (only for reply)
};
struct __attribute__((__packed__)) rxgain_cmd {
uint8_t stage; // filter stage
uint8_t level; // gain level
};
struct __attribute__((__packed__)) rxgain_rsp {
struct __attribute__((__packed__)) {
uint8_t stage; // filter stage
uint8_t level; // gain level
uint8_t num; // number of levels
} stages[1];
};
struct __attribute__((__packed__)) rxthresh_cmd {
uint8_t rxThresh; // in % of max amplitude
};
struct __attribute__((__packed__)) sample_cmd {
uint8_t trigger; // the required trigger (ACI_SAMPLE_TRIGGER_*)
uint16_t numSamples; // total number of samples (including delay)
uint16_t numDelay; // additional samples after the trigger event
};
struct __attribute__((__packed__)) sniff_cmd {
bool en;
};
struct __attribute__((__packed__)) spreadcode_cmd {
uint8_t codelen; // code length (1, ..., max code len)
};
struct __attribute__((__packed__)) synclen_cmd {
uint8_t txlen;
uint8_t rxlen;
};
struct __attribute__((__packed__)) test_dirac_cmd {
uint8_t rep; // number of repetitions
};
struct __attribute__((__packed__)) test_freq_cmd {
uint8_t freqNum; // frequency number "n * df" (0 < n <= FREQ_LIST_NUM)
uint8_t lvl; // loudness level (% of max. (<=100), 0 == gain compensated)
};
struct __attribute__((__packed__)) test_noise_cmd {
bool gc; // gain compensation?
uint8_t step; // stepping (only every nth frequency)
uint8_t dur; // duration in multiple of symbol (>= 1)
};
struct __attribute__((__packed__)) test_sweep_cmd {
bool gc; // gain compensation?
uint8_t gap; // gap between frequencies in multiple of symbol
};
struct __attribute__((__packed__)) transducer_cmd {
uint8_t type; // transducer to use
};
struct __attribute__((__packed__)) transducer_rsp {
uint8_t type; // currently used transducer
char descr[1]; // textual description of tansducer type
};
struct __attribute__((__packed__)) txgain_cmd {
uint8_t lvl;
};
} // namespace ahoi
#endif
|
5df3d34372e34e4c0d59ba02e05ec0e64487f31a | 3ae80dbc18ed3e89bedf846d098b2a98d8e4b776 | /src/Media/VideoFilter/UVOffsetFilter.cpp | 54d517976ca3dffad565ce757659b90981521615 | [] | no_license | sswroom/SClass | deee467349ca249a7401f5d3c177cdf763a253ca | 9a403ec67c6c4dfd2402f19d44c6573e25d4b347 | refs/heads/main | 2023-09-01T07:24:58.907606 | 2023-08-31T11:24:34 | 2023-08-31T11:24:34 | 329,970,172 | 10 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 2,762 | cpp | UVOffsetFilter.cpp | #include "Stdafx.h"
#include "MyMemory.h"
#include "Media/VideoFilter/UVOffsetFilter.h"
void Media::VideoFilter::UVOffsetFilter::ProcessVideoFrame(UInt32 frameTime, UInt32 frameNum, UInt8 **imgData, UOSInt dataSize, Media::IVideoSource::FrameStruct frameStruct, void *userData, Media::FrameType frameType, Media::IVideoSource::FrameFlag flags, Media::YCOffset ycOfst)
{
if (this->videoInfo.fourcc == *(UInt32*)"YV12")
{
Int32 uOfst = this->uOfst;
Int32 vOfst = this->vOfst;
UOSInt w = this->videoInfo.storeSize.x;
UOSInt h = this->videoInfo.storeSize.y;
UOSInt hh = h >> 1;
UOSInt wh = w >> 1;
UInt8 *imgPtr = imgData[0] + w * h;
if (vOfst > 0)
{
UOSInt moveSize = wh - (UOSInt)(OSInt)vOfst;
UOSInt hLeft = hh;
UOSInt wLeft;
UInt8 v;
while (hLeft-- > 0)
{
MemCopyO(imgPtr + vOfst, imgPtr, moveSize);
v = *imgPtr;
wLeft = (UOSInt)vOfst;
while (wLeft-- > 1)
{
imgPtr[wLeft] = v;
}
imgPtr += wh;
}
}
else if (vOfst < 0)
{
UOSInt moveSize = wh + (UOSInt)(OSInt)vOfst;
UOSInt hLeft = hh;
UOSInt wLeft;
UInt8 v;
while (hLeft-- > 0)
{
MemCopyO(imgPtr, imgPtr - vOfst, moveSize);
imgPtr += wh;
v = imgPtr[-1];
wLeft = (UOSInt)-vOfst;
while (wLeft-- > 1)
{
imgPtr[-1 - (OSInt)wLeft] = v;
}
}
}
else
{
imgPtr = imgPtr + wh * hh;
}
if (uOfst > 0)
{
UOSInt moveSize = wh - (UOSInt)(OSInt)uOfst;
UOSInt hLeft = hh;
UOSInt wLeft;
UInt8 v;
while (hLeft-- > 0)
{
MemCopyO(imgPtr + uOfst, imgPtr, moveSize);
v = *imgPtr;
wLeft = (UOSInt)uOfst;
while (wLeft-- > 1)
{
imgPtr[wLeft] = v;
}
imgPtr += wh;
}
}
else if (uOfst < 0)
{
UOSInt moveSize = wh + (UOSInt)(OSInt)uOfst;
UOSInt hLeft = hh;
UOSInt wLeft;
UInt8 v;
while (hLeft-- > 0)
{
MemCopyO(imgPtr, imgPtr - uOfst, moveSize);
imgPtr += wh;
v = imgPtr[-1];
wLeft = (UOSInt)-uOfst;
while (wLeft-- > 1)
{
imgPtr[-1 - (OSInt)wLeft] = v;
}
}
}
}
if (this->videoCb)
{
this->videoCb(frameTime, frameNum, imgData, dataSize, frameStruct, this->userData, frameType, flags, ycOfst);
}
}
Media::VideoFilter::UVOffsetFilter::UVOffsetFilter(Media::IVideoSource *srcVideo) : Media::VideoFilter::VideoFilterBase(srcVideo)
{
this->uOfst = 0;
this->vOfst = 0;
}
Media::VideoFilter::UVOffsetFilter::~UVOffsetFilter()
{
}
Text::CString Media::VideoFilter::UVOffsetFilter::GetFilterName()
{
return CSTR("UVOffsetFilter");
}
void Media::VideoFilter::UVOffsetFilter::SetOffset(Int32 uOfst, Int32 vOfst)
{
this->uOfst = uOfst;
this->vOfst = vOfst;
}
|
371cccbc5c5f981f8763b492e75bf80ca576cfe3 | 15abfc1e458635249d1c082a3ccba68bbfa5f89c | /src/glpp/utils/info.hpp | 973c591f7e31cbf92f042011310671a5b9557d2c | [
"MIT"
] | permissive | sque/glpp | 7e301e8ee57e3d91cc70b6823911b1670c938c7d | f2ffee025e4925d9986023bf3a9d1f21687890b8 | refs/heads/master | 2020-04-23T20:59:50.841865 | 2017-02-10T16:46:27 | 2017-02-10T16:46:27 | 8,701,998 | 11 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,687 | hpp | info.hpp | /**
* Copyright (c) 2012 Konstantinos Paliouras <squarious _ gmail _dot com>.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef GLPP_UTILS_DEBUG_HPP_INCLUDED
#define GLPP_UTILS_DEBUG_HPP_INCLUDED
#include "../base.hpp"
#include "../context.hpp"
#if (GLPP_LANG != GLPP_LANG_CXX0X) && (GLPP_LANG != GLPP_LANG_CXX11)
# error Info depends on C++11 version.
#endif
namespace glpp {
namespace utils {
template<class E>
class bitflags {
public:
typedef E opt;
typedef unsigned base_type;
bitflags();
bitflags (E val):
m_val(val) {
}
bitflags(std::initializer_list<E> flags) :
m_val(E(0)){
for(auto f : flags) {
m_val = E((base_type)m_val | (base_type)f);
}
}
base_type get_base() const{
return (base_type)m_val;
}
bitflags operator~() const {
base_type inter = ~get_base();
return bitflags((E)inter);
}
bitflags operator&(const bitflags & r) const {
return bitflags(E(get_base() & r.get_base()));
}
bitflags operator|(const bitflags & r) const {
return bitflags(E(get_base() | r.get_base()));
}
bool has_flag(E val) const {
return (base_type(m_val) & base_type(val)) != 0;
}
operator E () {
return m_val;
}
static bitflags _and(E lv, E rv) {
return bitflags(lv) & bitflags(rv);
}
protected:
E m_val;
};
enum class info_filter : unsigned{
NONE = 0,
LIMITS = 1,
EXTENSIONS = 2,
COMPRESSED_FORMATS = 4,
BINARY_FORMATS = 8,
ALL = BINARY_FORMATS | COMPRESSED_FORMATS | EXTENSIONS | LIMITS
};
//! Get information about a context
extern std::string info(context & ctx, bitflags<info_filter> filter = info_filter::ALL);
}
}
#endif
|
af599f58c757ac09d641ef46c2d948c44ab19c6b | b9404a88c13d723be44f7c247e1417689ce7981a | /SRC/Set/Manifold/Manifold.h | 3a9ebc51f3541789e83f8ce3458b59d8077ed9c0 | [
"BSD-2-Clause"
] | permissive | bxl295/m4extreme | c3d0607711e268d22d054a8c3d9e6d123bbf7d78 | 2a4a20ebb5b4e971698f7c981de140d31a5e550c | refs/heads/master | 2022-12-06T19:34:30.460935 | 2020-08-29T20:06:40 | 2020-08-29T20:06:40 | 291,333,994 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,213 | h | Manifold.h | // Manifold.h: interface for the Manifold class.
// Copyright (c) 2017-2018 Extreme Computation Technology and Solutions, LLC
// All rights reserved
// see file License.txt for license details
//////////////////////////////////////////////////////////////////////
#if !defined(SET_MANIFOLD_H__INCLUDED_)
#define SET_MANIFOLD_H__INCLUDED_
#pragma once
#include <iostream>
#include "../Algebraic/VectorSpace/Vector/Vector.h"
using namespace std;
namespace Set
{
namespace Manifold
{
//////////////////////////////////////////////////////////////////////
// Point class
//////////////////////////////////////////////////////////////////////
class Point
{
public:
Point() {}
virtual Point *Clone() const=0;
virtual ~Point() {}
virtual Point & operator = (const Point &)=0;
virtual bool operator != (const Point &) const=0;
virtual bool operator == (const Point &) const=0;
virtual void Randomize()=0;
virtual void operator += (const Set::VectorSpace::Vector &)=0;
virtual void operator -= (const Set::VectorSpace::Vector &)=0;
virtual unsigned int size() const=0;
virtual void print(ostream *)=0;
};
}
}
#endif // !defined(SET_MANIFOLD_H__INCLUDED_)
|
23246a8f8502f09163c9c9f44bd46e2be44b20f0 | 379ab7d0e4b1539bfb2e0c7064da96a2727d2233 | /W03/myCheck03a.cpp | a8649b8e757bc2567d6f5ffe10b30de683a18ae5 | [] | no_license | RationalSolutions/cs165 | 89c314824446afad67cbbf2edce86a7f19d2a5fc | 3b243ad9d1acdad7e8470fd7e350c6ba133e2f33 | refs/heads/master | 2020-05-18T14:35:43.882036 | 2019-12-17T03:45:53 | 2019-12-17T03:45:53 | 184,476,795 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,504 | cpp | myCheck03a.cpp | /***********************************************************************
* Program:
* Checkpoint 03a, Exceptions
* Brother Alvey, CS165
* Author:
* Coby Jenkins
* Summary:
* Summaries are not necessary for checkpoint assignments.
* ***********************************************************************/
#include <iostream>
#include <string>
using namespace std;
/**********************************************************************
* Function: prompt
* Purpose: Prompt the user for a positive integer less than 100
***********************************************************************/
int prompt() throw(const char *)
{
int number;
cout << "Enter a number: ";
cin >> number;
if (number < 0)
throw "negative."; //exception
if (number > 100)
throw "greater than 100."; //exception
if (number % 2)
throw "odd."; //exception
return number;
}
/**********************************************************************
* Function: main
* Purpose: This is the entry point and driver for the program.
***********************************************************************/
int main()
{
try // try block to signal there might be an exception
{
int number = prompt();
cout << "The number is "
<< number
<< "."
<< endl;
} catch (const char *error) //catch the potential exception
{
cout << "Error: The number cannot be "
<< error
<< endl;
}
return 0;
} |
a47ee7fcfcf9045cb1bb27af7196ded37c9b755f | b0cb567d6075a7e94617b922031bf62e00b08ba5 | /TremoloEffectNode/src/TremoloEffectNodeApp.cpp | 20a817d713a5cb4e285c6da03b864b564b5b4ee4 | [
"MIT"
] | permissive | jeremyfromearth/boing-boom-tschak | fe2e7aaf1dead0ea9a8dac6345fe0d70e744227f | 0bd9ab12ffe090f9f001efe8436f016e65a75e6d | refs/heads/master | 2021-06-12T18:23:49.586697 | 2017-04-25T05:11:39 | 2017-04-25T05:11:39 | 49,552,480 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,139 | cpp | TremoloEffectNodeApp.cpp | #include "cinder/app/App.h"
#include "cinder/app/RendererGl.h"
#include "cinder/gl/gl.h"
#include "cinder/audio/Context.h"
#include "cinder/audio/GainNode.h"
#include "cinder/audio/GenNode.h"
#include "cinder/audio/Node.h"
using namespace std;
using namespace ci;
using namespace ci::app;
using namespace cinder::audio;
class Tremolo : public Node {
public:
Tremolo(const Format &format = Format()) : Node(format) {};
Param * freq;
Param * mix;
protected:
float phase;
virtual void initialize() override {
phase = 0.0f;
freq = new Param(this, 2.1f);
mix = new Param(this, 0.5f);
};
virtual void process(ci::audio::Buffer * buffer) override {
int numFrames = buffer->getNumFrames();
int numChannels = buffer->getNumChannels();
float phaseInc = (freq->getValue() / getSampleRate()) * (float)M_PI * 2.0f;
auto data = buffer->getData();
for(int i = 0; i < numFrames; i++) {
phase = fmodf(phase + phaseInc, 2.0f * M_PI);
float pan = abs(sin(phase)) * mix->getValue();
for(int j = 0; j < numChannels; j++) {
int index = j * numFrames + i;
float initial = data[index];
data[index] *= pan;
data[index] += initial * (1.0f - mix->getValue());
}
}
}
};
typedef std::shared_ptr<Tremolo> TremoloRef;
class TremoloEffectNodeApp : public App {
public:
void setup() override;
void draw() override;
audio::Context * ctx;
TremoloRef pan;
audio::GainNodeRef gain;
audio::GenTriangleNodeRef osc;
};
void TremoloEffectNodeApp::setup() {
ctx = audio::master();
Node::Format f;
f.setChannels(2);
osc = ctx->makeNode(new GenTriangleNode(f));
osc->setFreq(220);
pan = ctx->makeNode(new Tremolo(f));
gain = ctx->makeNode(new audio::GainNode);
osc >> pan >> gain >> ctx->getOutput();
pan->enable();
osc->enable();
ctx->enable();
}
void TremoloEffectNodeApp::draw() {
gl::clear( Color( 0, 0, 0 ) );
}
CINDER_APP(TremoloEffectNodeApp, RendererGl)
|
fa9e71d41e65764fb46c3184edcca9f2858a6c3c | 2277375bd4a554d23da334dddd091a36138f5cae | /Source/Primitives/Puppet.cpp | b62297d79928a106bc9e26c25461eed53276e30e | [] | no_license | kevinmore/Project-Nebula | 9a0553ccf8bdc1b4bb5e2588fc94516d9e3532bc | f6d284d4879ae1ea1bd30c5775ef8733cfafa71d | refs/heads/master | 2022-10-22T03:55:42.596618 | 2020-06-19T09:07:07 | 2020-06-19T09:07:07 | 25,372,691 | 6 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,245 | cpp | Puppet.cpp | #include "Puppet.h"
#include <QTimer>
Puppet::Puppet( GameObject* go, Variable val, const vec3& speed, float duration /*= 0.0f*/ )
: m_target(go),
m_variable(val),
m_speed(speed),
m_duration(duration),
m_updateRate(0.016f)
{
// if a duration is assigned, destroy the thread when timed out
if (duration > 0)
{
QTimer::singleShot((int)(duration * 1000), this, SLOT(destroy()));
}
// add this puppet to the game object
go->addPuppet(PuppetPtr(this));
QTimer* timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(update()));
timer->start(m_updateRate);
}
void Puppet::update()
{
// only update when the game object exist
if (m_target)
{
// process the required operation
switch(m_variable)
{
case Position:
m_target->translate(m_speed * m_updateRate);
break;
case Rotation:
m_target->rotate(m_speed * m_updateRate);
break;
case Scale:
m_target->scale(m_speed * m_updateRate);
break;
}
}
else
destroy();
}
void Puppet::destroy()
{
m_target->removePuppet(this);
}
const int Puppet::getVariable() const
{
return m_variable;
}
const vec3& Puppet::getSpeed() const
{
return m_speed;
}
const float Puppet::getDuration() const
{
return m_duration;
}
|
f4aa6b74c6bcab81d4d70d643a0a8ee670db1a85 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/rsync/gumtree/rsync_function_309.cpp | 259d138e85f0ae11818a21ddfea0b5e8e3dd865a | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 210 | cpp | rsync_function_309.cpp | static int match_file_name(char *fname,struct stat *st)
{
if (check_exclude(fname,local_exclude_list)) {
if (verbose > 2)
fprintf(FERROR,"excluding file %s\n",fname);
return 0;
}
return 1;
} |
9b71599012cdc84dd43f62bf90ff41b854b9c729 | 5475d17b3ed14195b33d483845831adaf8fa90f1 | /2dT.cpp | e57487564283cd897e1ae90ba34c8f1048b4d54e | [] | no_license | prinzz1208/acad-ComputerGraphics | 0ac16c37bab61a0580ad2b3752a9f6f279f12256 | 87a60add766cdab387fc89c59ba4425a53fd032f | refs/heads/master | 2022-11-10T16:08:29.062073 | 2020-06-25T13:37:30 | 2020-06-25T13:37:30 | 258,469,717 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,528 | cpp | 2dT.cpp | #include <iostream>
#include <math.h>
#include <GL/glut.h>
#define _USE_MATH_DEFINES
#define M 20
#define N 20
using namespace std;
float xPos=-5;
int inputM[M][N];
int outputM[M][N];
int n = 0;
void show(int n)
{
cout<<endl;
int x = 0,y = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < 3; j++)
switch (j)
{
case 0:
x = inputM[j][i];
break;
case 1:
y = inputM[j][i];
break;
case 2:
break;
}
glVertex2i(x,y);
}
}
void show2(int n)
{
cout<<endl;
int x = 0,y = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < 3; j++)
switch (j)
{
case 0:
x = outputM[j][i];
break;
case 1:
y = outputM[j][i];
break;
case 2:
break;
}
glVertex2i(x,y);
}
}
void matrixMul(int T[][N],int n1,int m1,int n,int m)
{
for (int i = 0; i < n; i++)
{
for (int k = 0; k < m ; k++)
{
int sum = 0;
for (int j = 0; j < m ; j++)
{
//cout<<"\ninputM[j][k]:"<<inputM[j][k];
//cout<<"\nT[i][j]:"<<T[i][j];
sum += inputM[j][k] * T[i][j];
}
outputM[i][k] = sum;
}
}
}
void scaling(int n,int m,int dx,int dy)
{
int S[M][N] = { {dx,0,0},
{0,dy,0},
{0,0,1}};
matrixMul(S,3,3,n,m);
show2(m);
}
void rotation(int n,int m,int theta)
{
int R[M][N] = { {(int)cos(theta),(int)(-sin(theta)),0},
{(int)sin(theta),(int)cos(theta),0},
{0,0,1}};
matrixMul(R,3,3,n,m);
show2(m);
}
void translate(int n,int m,int dx,int dy)
{
int T[M][N] = { {1,0,dx},
{0,1,dy},
{0,0,1}};
matrixMul(T,3,3,n,m);
show2(m);
}
void display()
{
glClear(GL_COLOR_BUFFER_BIT); //flag for frame buffer
glLoadIdentity(); //reset the matrix from previous frame
glPointSize(10.0);
//draw stuff
//glBegin(GL_POLYGONS) should always be given coordinates in anticlockwise order to get the front size
glBegin(GL_LINE_LOOP);
show(n);
//glVertex2f(xPos,1);
//glVertex2f(xPos+2,0);
//glVertex2f(xPos,0);
glEnd(); //vertices are specified and drawing of shapes can be done now
glColor3i(0,0,0);
glBegin(GL_LINE_LOOP);
translate(3,n,2,2);
//glVertex2f(xPos,1);
//glVertex2f(xPos+2,0);
//glVertex2f(xPos,0);
glEnd(); //vertices are specified and drawing of shapes can be done now
//glFlush(); //displays the buffer on the screen
glutSwapBuffers(); //to swap buffer
}
void reshape(int width,int height) //arguments passed by API
{
//viewport- the rectangular area in which we'll work
glViewport(2,2,(GLsizei)width,(GLsizei)height);
//we are currently in model view matrix GL_MODELVIEW
glMatrixMode(GL_PROJECTION);
//we can manipulate GL_PROJECTION matrix for projection
glLoadIdentity(); // resets the projection matrix
gluOrtho2D(-10,10,-10,10);
glMatrixMode(GL_MODELVIEW);
}
void init()
{
glClearColor(1.0,0.0,0,1.0);
}
int main(int argc,char** argv)
{
cout<<"Enter number of vertices:";
cin>>n;
cout<<"\nEnter vertices:\n"<<endl;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < 3; j++)
{
switch (j)
{
case 0:
cout<<"\tx:";
cin>>inputM[j][i];
break;
case 1:
cout<<"\ty:";
cin>>inputM[j][i];
break;
case 2:
inputM[j][i] = 1;
break;
}
}
}
glutInit(&argc,argv);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE);
glutInitWindowPosition(200,100);
glutInitWindowSize(500,500);
glutCreateWindow("Window 1");
glutDisplayFunc(display);
glutReshapeFunc(reshape); //called whenever window in reshaped
//glutTimerFunc(1000,timer,0);
init() ;//to fill the color in frame buffer
glutMainLoop();
}
|
5a8f57225b3e60a0a7d6cf2008af6f8021b1267d | 105c8b984d29ec7949fca2fc15cd63831edbf537 | /CIS2013_Week09_Lab1.cpp | 34cc632896c1a461a9bdb707161fa81cd7e4db1c | [] | no_license | sonnyicks/CIS2013_Week09_Lab1 | 9de3ec36cb5897e66f13099f82eacb60f327128e | cf69fd12c374be561154b6d35c78eb6b5b47c996 | refs/heads/master | 2021-04-06T06:24:31.000666 | 2018-03-15T01:25:51 | 2018-03-15T01:25:51 | 125,293,879 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 442 | cpp | CIS2013_Week09_Lab1.cpp | #include <iostream>
#include <string>
using namespace std;
int main(){
string test = "Sonny";
cout << test << endl;
test = "Icks";
cout << test << endl;
cout << " The length of test is: " << test.length() << endl;
cout << " The 3rd char is: " << test[2] << endl;
for (int i=0; i<test.length(); i++){
cout << " You spell Sonny with a " << test[i] << endl;
cin >> test;
cout << "Test is now equal to " << test << endl;
}
return 0;
} |
1b5026836f10c0cacffecd70094ba38f0cd6d8ae | 2115644c20007f31b4efeb1ea309f33eec382621 | /src/graph/code/cpp/graph_view.cpp | d3f2a540e17f77bc6e56e475726e8d188fc349da | [] | no_license | ongbe/xchart | a433f76a2a5a37c35319e86b3152e805de24e91b | 612357b4dc6339bbcdba1eda72c9ef62260ec580 | refs/heads/master | 2020-12-25T17:44:37.122349 | 2013-01-31T02:24:07 | 2013-01-31T02:24:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,698 | cpp | graph_view.cpp | #include "graph_view.h"
#include "graph_renderer.h"
#include "igraph_interactive_renderer.h"
#include "graph_qt_renderer.h"
#include "graph_qt_interactive_renderer.h"
#include "graph_doc.h"
#include "graph_data.h"
#include "graph_handle.h"
#include "graph_object.h"
#ifdef GRAPH_PATH_RENDERER
//#include "graph_path_renderer.h"
//#include "graph_path_interactive_renderer.h"
#endif
#ifdef GRAPH_AGG_RENDERER
//#include "graph_agg_renderer.h"
//#include "graph_agg_interactive_renderer.h"
#endif
#include <QPainter>
#include <QScrollBar>
#include <QPaintEvent>
#include <QMouseEvent>
#include <QResizeEvent>
#include <QTransform>
#include <QDebug>
namespace GraphLib
{
struct View::PrivateData
{
GraphData *graphData;
Doc *doc;
GraphRenderer *renderer;
IGraphInteractiveRenderer *iRenderer;
QScrollBar *hBar;
QScrollBar *vBar;
Point origo; /* the origo positon. **/
float zoomFactor;
std::list<Rectangle *> updateAreas;
std::list<Rectangle *> displayAreas;
Rectangle *visible;
};
View::View(Doc *data, QWidget *parent) :
QWidget(parent)
{
init(data, data->graphData());
}
View::View(GraphData *data, QWidget *parent) :
QWidget(parent)
{
init(NULL, data);
}
View::~View()
{
if (m_data->doc) {
m_data->doc->removeView(this);
}
delete m_data->visible;
delete m_data->iRenderer;
delete m_data->renderer;
delete m_data;
}
void View::init(Doc *doc, GraphData *data)
{
m_data = new PrivateData;
m_data->visible = new Rectangle;
m_data->doc = doc;
if (doc)
doc->addView(this);
#ifdef GRAPH_PATH_RENDERER
// m_data->renderer = new GraphPathRenderer();
// m_data->iRenderer = new GraphPathInteractiveRenderer(m_data->renderer);
// m_data->iRenderer->setSize(NULL, 1000, 32768);
#elif GRAPH_AGG_RENDERER
// m_data->renderer = new GraphAggRenderer();
// m_data->iRenderer = new GraphAggInteractiveRenderer(m_data->renderer);
// m_data->iRenderer->setSize(NULL, 1000, 32768);
#else
m_data->renderer = new GraphQtRenderer;
m_data->iRenderer = new GraphQtInteractiveRenderer(m_data->renderer);
m_data->iRenderer->setSize(NULL, 1000, 32768);
#endif
m_data->hBar = new QScrollBar(Qt::Horizontal, this);
connect(m_data->hBar, SIGNAL(valueChanged(int)),
this, SLOT(hsbUpdate(int)));
m_data->vBar = new QScrollBar(Qt::Vertical, this);
connect(m_data->vBar, SIGNAL(valueChanged(int)),
this, SLOT(vsbUpdate(int)));
m_data->graphData = data;
if (m_data->doc) {
connect(m_data->doc, SIGNAL(selectionChanged(int)),
this, SLOT(selectionChanged(int)));
}
// 左上角起始坐标为0,0点
setOrigo(0, 0);
updateScrollbars();
addUpdateAll();
}
void View::hsbUpdate(int v)
{
setOrigo(v, m_data->origo.y());
addUpdateAll();
update();
}
void View::vsbUpdate(int v)
{
setOrigo(m_data->origo.x(), v);
addUpdateAll();
update();
}
void View::addUpdateAll()
{
if (m_data->updateAreas.size() > 0)
freeUpdateAreas();
addUpdate(m_data->visible);
}
void View::setOrigo(int x, int y)
{
Rectangle extents = m_data->graphData->extents();
Rectangle *visible = m_data->visible;
// 设定左上角的坐标起始点
m_data->origo.setX(x);
m_data->origo.setY(y);
int width = m_data->renderer->widthPixels();
int height = m_data->renderer->heightPixels();
visible->setX(x);
visible->setY(y);
visible->setWidth(x + width);
visible->setHeight(y + height);
}
void View::updateScrollbars()
{
Rectangle extents = m_data->graphData->extents();
Rectangle *visible = m_data->visible;
m_data->hBar->setMinimum(qMin(visible->left(), extents.left()));
m_data->hBar->setMaximum(qMax(visible->right(), extents.right()));
m_data->hBar->setPageStep(visible->right() - visible->left() - 0.0001);
m_data->hBar->setValue(visible->left());
m_data->vBar->setMinimum(qMin(visible->top(), extents.top()));
m_data->vBar->setMaximum(qMax(visible->bottom(), extents.bottom()));
m_data->vBar->setValue(visible->top());
}
void View::mousePressEvent(QMouseEvent *e)
{
QWidget::mousePressEvent(e);
if (m_data->doc) {
Point pos(e->pos().x(), e->pos().y());
QTransform transform;
transform.translate(m_data->hBar->value(), m_data->vBar->value());
pos = transform.map(pos);
Object *obj = m_data->doc->findClickedObject(
&pos, 1.0);
if (obj) {
m_data->doc->select(obj);
} else {
std::list<Object *> already = m_data->doc->graphData()->selectedObjects();
std::list<Object *>::iterator it;
for (it = already.begin(); it != already.end(); it++)
m_data->doc->unselectObject(*it);
}
}
}
void View::mouseReleaseEvent(QMouseEvent *e)
{
QWidget::mouseReleaseEvent(e);
}
void View::mouseMoveEvent(QMouseEvent *e)
{
QWidget::mouseMoveEvent(e);
}
void View::selectionChanged(int)
{
update();
}
void View::renderPixmap1(Rectangle *update)
{
if (!m_data->graphData)
return;
GraphData *data = m_data->graphData;
// clean background;
Color color(Qt::white);
IGraphInteractiveRenderer *iRenderer = m_data->iRenderer;
GraphRenderer *renderer = m_data->renderer;
iRenderer->fillPixelRect(0, 0,
renderer->widthPixels(), renderer->heightPixels(), &color);
renderer->beginRender();
#ifdef GRAPH_PATH_RENDERER
//其中的update参数,是为了优化裁剪。
//在qt renderer中起作用,在path renderer中使用空
// data->render(renderer, NULL, NULL, NULL);
#elif GRAPH_AGG_RENDERER
// data->render(renderer, NULL, NULL, NULL);
#else
data->render(renderer, update, NULL, NULL);
#endif
renderer->endRender();
// 绘制选中的对象
typedef std::list<Object *> List;
typedef std::list<Object *>::iterator It;
List objs = m_data->graphData->selectedObjects();
It it;
for (it = objs.begin(); it != objs.end(); it++) {
typedef std::vector<Handle *> Vector;
typedef std::vector<Handle *>::iterator VIt;
Vector handles = (*it)->handles();
VIt handle;
for (handle = handles.begin(); handle < handles.end(); handle++)
(*handle)->draw(m_data->renderer);
}
}
GraphRenderer *View::renderer()
{
m_data->renderer;
}
void View::paintEvent(QPaintEvent *event)
{
QPainter painter(this);
IGraphInteractiveRenderer *iRenderer = m_data->iRenderer;
typedef std::list<Rectangle *> List;
typedef std::list<Rectangle *>::iterator It;
List &list = m_data->updateAreas;
It it;
if (list.size() > 0) {
it = list.begin();
Rectangle totrect = *(*it);
iRenderer->clipRegionClear();
while (it != list.end()) {
Rectangle r = *(*it);
totrect = totrect.united(r);
iRenderer->clipRegionAddRect(&r);
it++;
}
renderPixmap1(&totrect);
}
freeUpdateAreas();
/*
areasType &vector1 = m_data->displayAreas;
it = vector1.begin();
while (it != vector1.end()) {
Rectangle r = *it;
QPixmap pixmap(r.width(), r.height());
pixmap.fill();
iRenderer->copyToWindow(&pixmap,
r.x(), r.y(), r.width(), r.height());
painter.drawPixmap(r.topLeft(), pixmap);
}
vector1.clear();
*/
/* 窗口本身还是会存一个和窗口大小相同的buffer */
QPixmap pixmap(width(), height());
pixmap.fill();
m_data->iRenderer->copyToWindow(&pixmap,
m_data->hBar->value(),
m_data->vBar->value(), width(), height());
painter.drawPixmap(QPoint(0, 0), pixmap);
//m_data->graphData->updateExtents();
//qDebug() << "extents " << m_data->graphData->extents();
//painter.drawRect(m_data->graphData->extents());
}
void View::resizeEvent(QResizeEvent *event)
{
QWidget::resizeEvent(event);
QSize size = event->size();
setOrigo(size.width(), size.height());
int vBarWidth = m_data->vBar->sizeHint().width();
int vBarHeight = size.height() - m_data->hBar->sizeHint().height();
int vBarX = size.width() - vBarWidth;
m_data->vBar->move(vBarX, 0);
m_data->vBar->resize(vBarWidth, vBarHeight);
m_data->vBar->setRange(0, m_data->renderer->heightPixels() - height());
int hBarHeight = m_data->hBar->sizeHint().height();
int hBarWidth = size.width() - vBarWidth;
int hBarY = size.height() - hBarHeight;
m_data->hBar->move(0, hBarY);
m_data->hBar->resize(hBarWidth, hBarHeight);
}
void View::addUpdatePixels(Point *point, int pixelWidth,
int pixelHeight)
{
Rectangle rect;
float sizeX, sizeY;
sizeX = pixelWidth + 1;
sizeY = pixelHeight + 1;
rect.setLeft(point->x() - sizeX/2.0);
rect.setTop(point->y() - sizeY/2.0);
rect.setRight(point->x() + sizeX/2.0);
rect.setBottom(point->y() + sizeY/2.0);
addUpdate(&rect);
}
void View::addUpdateWithBorder(Rectangle *rect, int pixelBorder)
{
}
void View::addUpdate(Rectangle *rect)
{
Rectangle *r;
int top, bottom, left, right;
Rectangle *visible;
int width, height;
width = m_data->renderer->widthPixels();
height = m_data->renderer->heightPixels();
/*
if (!m_data->visible.intersects(*rect))
return;
*/
typedef std::list<Rectangle *> List;
typedef std::list<Rectangle *>::iterator It;
List &list = m_data->updateAreas;
It it;
if (list.size() == 0) {
r = new Rectangle;
*r = *rect;
//计算交集后保存
/*r = m_data->visible.intersected(r);*/
m_data->updateAreas.push_front(r);
} else {
// 先与update中的求并集,然后和visible求交集
it = list.begin();
*(*it) = (*it)->united(*rect);
//*(*it) = (*it)->intersected(m_data->visible);
//qDebug() << "updateAreas " << *(*it);
}
//更新visible
visible = m_data->visible;
}
void View::freeUpdateAreas()
{
typedef std::list<Rectangle *> List;
typedef std::list<Rectangle *>::iterator It;
List &list = m_data->updateAreas;
It it;
for (it = list.begin(); it != list.end(); it++) {
Rectangle *r = *it;
delete r;
}
list.clear();
}
IDoc *View::doc()
{
return m_data->doc;
}
void View::flush()
{
update();
}
}
|
18b28b807a824943582d429eb0614bf79aed9737 | 8438ba4a65b4b587271ee7d9a7cbe63ee594af0d | /Shader.hpp | eee366484f03c2e5e7da05513ea2a5f2b427152f | [] | no_license | LGriggles/3DGameEngine | 1531b74b6c0bdef511eed1498a8daf3c8d526391 | e98da894655bfb073f934d0c6619ef573db5713d | refs/heads/master | 2016-09-06T17:42:40.785926 | 2015-03-29T01:51:44 | 2015-03-29T01:51:44 | 30,948,327 | 2 | 5 | null | 2015-03-28T17:29:27 | 2015-02-18T02:09:27 | C++ | UTF-8 | C++ | false | false | 1,449 | hpp | Shader.hpp | #ifndef SHADER_HPP
#define SHADER_HPP
//C++
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <sstream>
#include <map>
#include <string>
using std::ifstream;
using std::string;
using std::map;
//GLM
#include <GL\glew.h>
#include <glm.hpp>
/*! Handles shader creation */
class Shader
{
private:
GLuint _uniforms[50]; //!< Stored uniforms, used for caching locations of uniforms in the shaders
map<string,GLuint> _shaderVariableLinks; //!< Stored variable links, used for caching variables in shaders to their respective names
GLuint _shaderProgramID; //!< The shader program ID
public:
void createShader(string vertShaderFile, string fragShaderFile); //!< Create the shader
void loadVariable(string variable); //!< load a variable from the shader
void storeUniform(int setUniformIndex, string uniformName); //!< Cache the uniform to the specified index
void compileShaderFile(string shaderFilePath,
GLuint& shaderProgram,
GLenum shaderType); //!< Compile the shader file
GLuint getVariable(string variable); //!< Get the handle of the specified variable
GLuint getUniformLocation(string uniform); //!< Cache the uniform shader location for the CPU
GLuint getStoredUniform(int uniformIndex); //!< Return the OpenGL uniform handle using the memory index
GLuint getProgramID() { return _shaderProgramID; }; //!< Return the program ID
};
#endif |
22f85e66bf6297fbcd63a0e04660c502242f0388 | 8ea3fac40c8c61bdd29c5546629a74ac69d4071c | /Proj1/Orange.cpp | fc11741eba422eb963f4f27817d4ffd664005d22 | [] | no_license | luisfsantos/CG-2015 | 17baa14546c5e913a40721de30a276adee0d5adf | 7b113fd5217967f7a2ff23be2ef4fb9c2d1ffa7f | refs/heads/master | 2020-05-28T11:50:01.532460 | 2015-11-23T18:32:16 | 2015-11-23T18:32:16 | 43,371,881 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,972 | cpp | Orange.cpp | //
// Orange.cpp
// Proj1
//
// Created by Luis Santos on 28/09/15.
// Copyright © 2015 Luis Santos. All rights reserved.
//
#include "Orange.hpp"
Orange::Orange() {
}
Orange::Orange(double x, double y, double z, double radius) {
_radius = radius;
_position.set(x, y, z);
setBoundingBox(_radius, _radius);
_vertices.push_back(new Vector3(_position.getX()-_halfWidth, _position.getY()-_halfHeight,0));
_vertices.push_back(new Vector3(_position.getX()+_halfWidth, _position.getY()-_halfHeight,0));
_vertices.push_back(new Vector3(_position.getX()+_halfWidth, _position.getY()+_halfHeight,0));
_vertices.push_back(new Vector3(_position.getX()-_halfWidth, _position.getY()+_halfHeight,0));
_direction = 0;
_rotation = 0;
}
Orange::~Orange() {
}
void Orange::update(double delta_t) {
std::vector<Vector3*>::iterator iter;
int i = 0;
_position = _position + _speed * delta_t;
double modulo = sqrt(_speed.getX()*_speed.getX() + _speed.getY()*_speed.getY());
_rotation += ((modulo * delta_t) / _radius) * (180/M_PI);
//addRotation(_right, angle);
if(_rotation >= 360) {
_rotation -= 360;
if(_rotation < 360) _rotation = 0;
}
for (iter = _vertices.begin(); iter != _vertices.end(); ++iter, i++) {
double temp [4][2] = {{-_Width, _Height},{-_Width, -_Height},{_Width, -_Height},{_Width, _Height}};
double tempX = temp[i][0];
double tempY = temp[i][1];
// translate back
(*iter)->set(tempX + _position.getX(), tempY + _position.getY(), 0);
}
}
void Orange::setSpeed(const Vector3& speed) {
_speed = speed;
_right.set(_speed.getY(), -_speed.getX(), 0);
_absSpeed = sqrt(_speed.getX()*_speed.getX() + _speed.getY()*_speed.getY());
_direction = atan(_speed.getY() / _speed.getX());
//checkMagnitude();
}
void Orange::setSpeed(double x, double y, double z) {
_speed.set(x, y, z);
_right.set(-y, x, z);
_absSpeed = sqrt(x*x + y*y);
_direction = atan(y / x);
//checkMagnitude();
}
void Orange::setAbsSpeed(double abs) {
setSpeed(cos((getDirection() * M_PI) / 180.0) * abs, sin((getDirection() * M_PI) / 180.0)* abs, 0);
}
void Orange::draw() {
double lengh = _radius * 3/4;
GLfloat amb_leaf[]={0.03f,0.36f,0.16f,1.0f};
GLfloat diff_leaf[]={0.0f,0.49f,0.0f,1.0f};
GLfloat spec_leaf[]={0.28f,0.13f,0.0f,1.0f};
GLfloat amb_orang[]={0.63f,0.36f,0.16f,1.0f};
GLfloat diff_orang[]={1.0f,0.49f,0.0f,1.0f};
GLfloat spec_orang[]={0.28f,0.13f,0.0f,1.0f};
GLfloat amb_stem[]={0.24f,0.44f,0.0f,1.0f};
GLfloat diff_stem[]={0.0f,0.2f,0.0f,1.0f};
GLfloat spec_stem[]={0.21f,0.14f,0.17f,1.0f};
GLfloat shine_stem=90;
GLfloat shine=88;
glPushMatrix();
glTranslated(_position.getX(), _position.getY(), _position.getZ()+_radius);
glRotated(_rotation, _right.getX(), _right.getY(), _right.getZ());
//Sphere
glMaterialfv(GL_FRONT_AND_BACK,GL_AMBIENT,amb_orang);
glMaterialfv(GL_FRONT_AND_BACK,GL_DIFFUSE,diff_orang);
glMaterialfv(GL_FRONT_AND_BACK,GL_SPECULAR,spec_orang);
glMaterialf(GL_FRONT_AND_BACK,GL_SHININESS,shine);
glPushMatrix();
glColor3ub(255, 128, 0);
glutSolidSphere(_radius, 20, 20);
glPopMatrix();
glMaterialfv(GL_FRONT_AND_BACK,GL_AMBIENT,amb_leaf);
glMaterialfv(GL_FRONT_AND_BACK,GL_DIFFUSE,diff_leaf);
glMaterialfv(GL_FRONT_AND_BACK,GL_SPECULAR,spec_leaf);
glMaterialf(GL_FRONT_AND_BACK,GL_SHININESS,shine);
//Leaf
glPushMatrix();
glTranslated(0, lengh / 2, _radius);
glScaled(0.5, 1, 0.1);
glColor3ub(65, 235, 49);
glutSolidSphere(lengh/2, 15, 15);
glPopMatrix();
//Stem
glMaterialfv(GL_FRONT_AND_BACK,GL_AMBIENT,amb_stem);
glMaterialfv(GL_FRONT_AND_BACK,GL_DIFFUSE,diff_stem);
glMaterialfv(GL_FRONT_AND_BACK,GL_SPECULAR,spec_stem);
glMaterialf(GL_FRONT_AND_BACK,GL_SHININESS,shine_stem);
glPushMatrix();
glTranslated(0, 0, _radius);
glRotated(-30, 0, 0, 1);
glRotated(-30, 1, 0, 0);
glScaled(1, 1, 5);
glColor3ub(45, 181, 33);
glutSolidCube(_radius / 10);
glPopMatrix();
glPopMatrix();
}
void Orange::collide(GameObject* car) {
((DynamicObject*)car)->setAbsSpeed(0);
((DynamicObject*)car)->setDirection(90);
((DynamicObject*)car)->setMovement(false, false, false, false);
if (((DynamicObject*)car)->getPosition()->getX() != 105 || ((DynamicObject*)car)->getPosition()->getY() != 300) {
((DynamicObject*)car)->die();
}
((DynamicObject*)car)->setPosition(105, 300, 0);
}
void Orange::reset(double abs) {
double x;
double y;
do {
x = rand() % 1280;
} while ( x < 0 || x > 1280);
do {
y = rand() % 1280;
} while ( y < 0 || y > 720);
setPosition(x, y, 0);
_direction = rand() % 360;
setSpeed(cos((getDirection() * M_PI) / 180.0) * abs, sin((getDirection() * M_PI) / 180.0)* abs, 0);
}
|
156413ced53f9022ac130c896786aa3e8effe026 | 427c347634cd17e47b8f9d0b4493bbcf02df1632 | /MEIClient/AMTHIClient/Src/StartConfigurationExCommand.cpp | 57bc8285a1ddfd8145291dbd7984a95af1151244 | [
"Apache-2.0"
] | permissive | conceptslearningmachine-FEIN-85-1759293/lms | 8aa9e8ed61b65a89676106d2f73736a3e1733e48 | f90fa51f07514b7644cc57846c90e46b146b23ae | refs/heads/master | 2022-02-03T16:21:36.836695 | 2019-08-01T09:49:50 | 2019-08-05T05:52:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,228 | cpp | StartConfigurationExCommand.cpp | /* SPDX-License-Identifier: Apache-2.0 */
/*
* Copyright (C) 2010-2015 Intel Corporation
*/
/*++
@file: StartConfigurationExCommand.cpp
--*/
#include "StartConfigurationExCommand.h"
#include <string.h>
using namespace std;
using namespace Intel::MEI_Client::AMTHI_Client;
StartConfigurationExCommand::StartConfigurationExCommand(bool IPv6Enable)
{
shared_ptr<MEICommandRequest> tmp(new StartConfigurationExRequest(IPv6Enable));
m_request = tmp;
Transact();
}
void StartConfigurationExCommand::reTransact(bool IPv6Enable)
{
shared_ptr<MEICommandRequest> tmp(new StartConfigurationExRequest(IPv6Enable));
m_request = tmp;
Transact();
}
START_CONFIGURATION_EX_RESPONSE
StartConfigurationExCommand::getResponse()
{
return m_response->getResponse();
}
void
StartConfigurationExCommand::parseResponse(const vector<uint8_t>& buffer)
{
shared_ptr<AMTHICommandResponse<START_CONFIGURATION_EX_RESPONSE>> tmp(
new AMTHICommandResponse<START_CONFIGURATION_EX_RESPONSE>(buffer, RESPONSE_COMMAND_NUMBER));
m_response = tmp;
}
std::vector<uint8_t>
StartConfigurationExRequest::SerializeData()
{
vector<uint8_t> output((std::uint8_t*)&_IPv6Enable, (std::uint8_t*)&_IPv6Enable + sizeof(_IPv6Enable));
return output;
}
|
02134606880837c0483466311ec3ed409a09c4b7 | f6d5e525335ed4033775e72fb13652851ab3fed4 | /sqrt(x)/sqrt(x).cpp | b9310841330ab3c900435710a7c02ba3d84f61dd | [] | no_license | weekend27/leetcode | 51bf19efa677e785d16777ba1ffc6b647f1b3cd5 | c8fe5170cf2d0b5b5287833e47d49f8a97c0844a | refs/heads/master | 2020-04-06T15:00:35.701006 | 2016-09-15T09:40:55 | 2016-09-15T09:40:55 | 46,421,231 | 14 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 908 | cpp | sqrt(x).cpp | // Source : https://leetcode.com/problems/sqrtx/
// Author : weekend27
// Date : 2015-12-24
/**********************************************************************************
Implement int sqrt(int x).
Compute and return the square root of x.
**********************************************************************************/
// How to do it:
// binary search
// note that the final return number
class Solution {
public:
int mySqrt(int x) {
long long l = 0;
long long r = x / 2 + 1;
while (l <= r)
{
long long mid = l + (r - l) / 2;
long long sq = mid * mid;
if (sq == x)
{
return mid;
}
else if (sq < x)
{
l = mid + 1;
}
else
{
r = mid - 1;
}
}
return r;
}
};
|
344a4fbb20428e8592de379bdacfb5f80fbbc135 | 9435c95e85123c6004076ab2ef9ce357d676909e | /src/System/iScript.cpp | 9e29bfddadf8b65f33936f721cc8a1fba10e4818 | [] | no_license | bodusb/UI_Mestrado | 0420aab66cdbc585282083a1aed2e18c013b4a32 | 52ba0b00a5c9dad20ce15d613279df349afd7679 | refs/heads/master | 2021-01-21T10:46:33.692347 | 2017-02-28T22:50:10 | 2017-02-28T22:50:10 | 83,487,166 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 324 | cpp | iScript.cpp | ///////////////////////////////////////////////////////////
// iScript.cpp
// Implementation of the Class iScript
// Created on: 06-set-2013 14:20:12
// Original author: Christopher
///////////////////////////////////////////////////////////
#include "iScript.h"
iScript::iScript(){
}
iScript::~iScript(){
} |
c2f82a1dbed688b6038c7c5206e3524310d02a78 | 31e658bea4044cee0a07eff023106673521566ca | /Algo/bridge.cpp | eebc4581a97bb682affc4727aec137724d0ce719 | [] | no_license | HelloKuldeep/_temp-public | a256a03ba1c0ca33a29e57504a04a9139221f5a5 | 5bf485dccdeb250a2d0316ab85d9d1b3e6927c78 | refs/heads/master | 2020-04-07T09:43:15.544019 | 2018-11-19T16:32:32 | 2018-11-19T16:32:32 | 158,262,675 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,182 | cpp | bridge.cpp | // O(v+e)
#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i = a; i < b; i++)
#define XL printf("\n")
#define S(x) scanf("%d",&x)
#define S2(x,y) scanf("%d%d",&x,&y)
#define P(x,y) printf("%d %d\n",x,y)
vector<int> visit,dist,parent,low; int V,e;
vector<pair<int,int> > bridge;
void traverse(vector< vector<int> > &adjl,int u){
static int time=0;
visit[u]=1;
low[u]=dist[u]=++time;
for(vector<int>::iterator it=adjl[u].begin();it!=adjl[u].end();it++){
int v=*it;
if(!visit[v]){
parent[v]=u;
traverse(adjl,v);
low[u]=min(low[u],low[v]);
if(low[v]>dist[u]) bridge.push_back(make_pair(u,v));
}
else if(v!=parent[u]) low[u]=min(low[u],dist[v]);
}
}
int main(){
freopen("input.txt","r",stdin); freopen("output.txt","w",stdout);
int a,b,x=0; S2(V,e);
vector< vector<int> > adjl(V);
rep(i,0,e){
S2(a,b); adjl[a].push_back(b); adjl[b].push_back(a);
}
rep(i,0,V){
visit.push_back(0); parent.push_back(0); low.push_back(0); dist.push_back(0);
}
rep(i,0,V) if(!visit[i]) traverse(adjl,i);
int r=bridge.size(); cout<<r; XL;
rep(i,0,r) P(bridge[i].first,bridge[i].second);
return 0;
}
|
3d4197acb754472dddbf19e3ee7db3ea80a71a49 | be7a45fa11de12a6f61f3039151c7cf81bc359a6 | /bench/main.cpp | 9f480e4d7033ec2983af0c1d2c769135342c06dd | [
"MIT"
] | permissive | thedanschmidt/ximd | 155c7c6cfa6e0c564051a8e9719247dbc75c999f | 0e9b03bdc08aa540f22c0c263deeff27113b2ccf | refs/heads/main | 2023-01-03T15:48:01.003198 | 2020-10-26T05:24:44 | 2020-10-26T05:24:44 | 306,144,299 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,262 | cpp | main.cpp | #include <iostream>
#include <string>
#include <string.h>
#include <benchmark/benchmark.h>
#include "ximd_ascii.hpp"
using namespace ximd;
void gen_long_test_str(char* buff)
{
const char* test_str = "a (noT So) Carefully conStruCted test sTr";
size_t len = strlen(test_str);
for (size_t i=0; i < 4096 / len; ++i)
{
strcpy(buff + i * len, test_str);
}
}
static void BM_ToLowerStd(benchmark::State& state)
{
char buff[4096];
gen_long_test_str(buff);
size_t len = strlen(buff);
for (auto _ : state)
{
to_lower_std(buff, len);
}
}
static void BM_ToLowerNaive(benchmark::State& state)
{
char buff[4096];
gen_long_test_str(buff);
size_t len = strlen(buff);
for (auto _ : state)
{
to_lower_naive(buff, len);
}
}
static void BM_ToLower64(benchmark::State& state)
{
char buff[4096];
gen_long_test_str(buff);
size_t len = strlen(buff);
for (auto _ : state)
{
to_lower_64(buff, len);
}
}
static void BM_ToLower128(benchmark::State& state)
{
char buff[4096];
gen_long_test_str(buff);
size_t len = strlen(buff);
for (auto _ : state)
{
to_lower_128(buff, len);
}
}
BENCHMARK(BM_ToLowerStd);
BENCHMARK(BM_ToLowerNaive);
BENCHMARK(BM_ToLower64);
BENCHMARK(BM_ToLower128);
BENCHMARK_MAIN();
|
b22e144e0b564c544c3a363d8a5428ad84e30984 | e91b7432ac78b5aae4d9b47d1d23fbe71e39f08f | /contrib/yarsClient/YarsClientMainWidget.cpp | de11958dbd994a43120d5057e8e7a3498ea0f8e9 | [
"MIT"
] | permissive | kzahedi/YARS | 90818b69c3fee12b3812b52f722ac52b728f064b | 48d9fe4178d699fba38114d3b299a228da41293d | refs/heads/master | 2020-05-21T03:29:48.826895 | 2019-04-24T13:44:25 | 2019-04-24T13:44:25 | 64,328,589 | 4 | 1 | null | 2017-02-23T19:55:08 | 2016-07-27T17:30:54 | C++ | UTF-8 | C++ | false | false | 975 | cpp | YarsClientMainWidget.cpp | #include "YarsClientMainWidget.h"
#include "ControlWidget.h"
#include "YarsControlWidget.h"
#include "CanvasWidget.h"
#include "StatusBarControl.h"
#include "InputPanel.h"
#define __MAIN_WIDTH 440
#define __MAIN_HEIGHT 350
YarsClientMainWidget::YarsClientMainWidget()
:QMainWindow()
{
setWindowTitle(QString("YARS Client"));
setFixedSize(QSize(__MAIN_WIDTH, __MAIN_HEIGHT));
QWidget *centralWidget = new QWidget();
QGridLayout *layout = new QGridLayout();
ControlWidget *cw = new ControlWidget();
YarsControlWidget *ycw = new YarsControlWidget();
CanvasWidget *caw = new CanvasWidget();
StatusBarControl *sbc = new StatusBarControl(this);
InputPanel *ip = new InputPanel();
layout->addWidget(ip, 0, 0, 1, 3);
layout->addWidget(ycw, 1, 0, 1, 1);
layout->addWidget(caw, 1, 1, 1, 1);
layout->addWidget(cw, 1, 2, 1, 1);
centralWidget->setLayout(layout);
setCentralWidget(centralWidget);
show();
}
|
24ba8bd2579d2b2ed3833d89eaff1ae4256ac7b3 | a77f6c76114b62bbc5cefed05476e7b7b093496e | /ultrasonic.h | 363e76a76209f9e9d20eb349a65fe64801dcf56e | [] | no_license | ThoriatedFlash/ARC | d6e64b69d15387565807dd34ea57e6f0c2e3f79d | 69411f5b7bb26ddd0ad2ed495bb4671e6cbe231f | refs/heads/master | 2023-01-23T15:41:46.362922 | 2020-11-25T01:26:58 | 2020-11-25T01:26:58 | 293,383,208 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,163 | h | ultrasonic.h | /* Easy Ultrasonic Reader
* Written by Isaiah Knorr
* 21 October, 2020
*
* For use with the HC-SR04 Ultrasonic module
*/
#ifndef ULTRASONIC_H
#define ULTRASONIC_H
class Ultrasonic {
private:
int triggerPin;
int echoPin;
public:
Ultrasonic();
Ultrasonic(int triggerPin,int echoPin);
double getDistance();
double getDistance(int repeatNumber);
};
// Constructors
Ultrasonic::Ultrasonic() {
}
Ultrasonic::Ultrasonic(int triggerPin,int echoPin) {
this->triggerPin = triggerPin;
this->echoPin = echoPin;
}
// Returns the distance to the sensor in inches
double Ultrasonic::getDistance() {
// Set trigger high for 10 micro seconds
digitalWrite(triggerPin,HIGH);
delayMicroseconds(10);
digitalWrite(triggerPin,LOW);
// See datasheet to see where this conversion came from - was refined based on tests for increaced accuracy
double distance = (pulseIn(echoPin,HIGH)/ 146.591) - 0.088;
// Check set error value of -1 if out of sensor range
if(distance > 400)
return -1.0;
// Return average value
return distance;
}
#endif
|
bbe0014af3ee30d405db4ebec68752fc5375bda0 | 4a0e4eee641fc1a9e554224f9758a2b975fabcbc | /Diferential Equations/Euler.cpp | aa81d5165f5b602174bb6d261b021bc7001f398a | [] | no_license | GeraJuarez/numerical-methods | 3566cbdb1f325968dcd4572b882732e6446b9692 | 8afab7cd8b757f06b36cf43dc98cceaa2d1d8e99 | refs/heads/master | 2021-06-16T13:31:00.557203 | 2017-05-07T00:43:34 | 2017-05-07T00:43:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 770 | cpp | Euler.cpp | #include <iostream>
#include <cmath>
using namespace std;
double df( double x ) {
return - ( 2* pow (x, 3 ) ) + ( 12 * pow( x, 2 ) ) - ( 20 * x ) + 8.5;
}
double euler( double x0, double y0, double xDeseada, double h ) {
double y1;
while ( x0 < xDeseada ) {
cout << "x:" << x0 << "\ty:" << y0 << endl;
y1 = y0 + ( df( x0 ) * h );
x0 += h;
y0 = y1;
}
cout << "\ny at " << xDeseada << " = " << y0 << endl;
}
int main() {
double x;
double y;
double h; //Intervalo
double x_deseada;
cout << "Initial x: "; cin >> x;
cout << "Initial y: "; cin >> y;
cout << "Wanted x: "; cin >> x_deseada;
cout << "Steps: "; cin >> h;
euler( x, y, x_deseada, h );
return 0;
}
|
53d87cf6eef862f4b25b0b49fa578e02e0a4e0b9 | 748ae5463007deeeadb37a0cab797e251fc7b41f | /aadcUser/frAIburg_ObjectDetection/object_detection.cpp | 25f41d6c138df4fadb5041993985838598d9c239 | [
"BSD-3-Clause"
] | permissive | PhilJd/frAIburg | 30682c866728a6b64545b5194b753fad62674f18 | 7585999953486bceb945f1eb7a96cbe94ea72186 | refs/heads/master | 2021-04-25T12:47:24.859040 | 2019-03-23T10:29:02 | 2019-03-23T10:29:02 | 110,755,031 | 10 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 30,907 | cpp | object_detection.cpp | /**********************************************************************
Copyright (c) 2017, team frAIburg
Licensed under BSD-3.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**********************************************************************/
#include "stdafx.h"
#include "object_detection.h"
#include <vector>
#include <sys/stat.h>
#include <unistd.h> // usleep, wait for thread to finish
#include <algorithm> // std::min
#include <boost/thread.hpp>
#include "bounding_box_visualization.h"
#include "camera_transformations.h"
#include "map_element.hpp"
#include "map_element_types.h"
#include "map_helper.hpp"
#include "opencv_tools.h" // AdtfMediaSampleToCvMat
#include "tensorflow_opencv_bridge.h" // cv::Mat to Tensor
#include "xml_helper.hpp"
// ToDo(phil): remove Debug
#include <sys/time.h>
#include "opencv2/imgcodecs.hpp"
#include "opencv2/imgproc/imgproc.hpp"
namespace tf = tensorflow;
namespace fmap = frAIburg::map;
// define the ADTF property names to avoid errors
ADTF_FILTER_PLUGIN(ADTF_FILTER_DESC, OID_ADTF_FILTER_DEF, ObjectDetection)
ObjectDetection::ObjectDetection(const tChar* __info)
: cFilter(__info) {
// ToDo(Phil): set SessionOptions to GPU.allow growth
SetAdtfParameters(__info);
// ToDo(Phil): Check if it's necessary to initialize with correct size
int tmp_boxes_shape_array[] = {1, 300, 4};
std::vector<int64_t> shape_boxes(tmp_boxes_shape_array,
tmp_boxes_shape_array + 3);
detection_boxes_ = tf::Tensor(TF_FLOAT, shape_boxes);
int tmp_scores_shape_array[] = {1, 300};
std::vector<int64_t> shape_scores(tmp_scores_shape_array,
tmp_scores_shape_array + 2);
/*! The scrores corresponding to each box in detection_boxes */
detection_scores_ = tf::Tensor(TF_FLOAT, shape_scores);
int tmp_classes_shape_array[] = {1, 300};
std::vector<int64_t> shape_classes(tmp_classes_shape_array,
tmp_classes_shape_array + 2);
/*! The classes corresponding to each box in detection_boxes */
detection_classes_ = tf::Tensor(TF_FLOAT, shape_classes);
fetch.reserve(3);
fetch.push_back(tf::OpAndTensor("detection_boxes", &detection_boxes_));
fetch.push_back(tf::OpAndTensor("detection_scores", &detection_scores_));
fetch.push_back(tf::OpAndTensor("detection_classes", &detection_classes_));
thread_is_active_ = false;
member_write_mutex_ = false;
}
// ____________________________________________________________________________
tResult ObjectDetection::Start(__exception) {
tf_controller_.ActivateSession();
return cFilter::Start(__exception_ptr);
}
// ____________________________________________________________________________
tResult ObjectDetection::Stop(__exception) {
while (thread_is_active_) {
usleep(100000);
}
tf_controller_.DeactivateSession();
return cFilter::Stop(__exception_ptr);
}
// ____________________________________________________________________________
tResult ObjectDetection::Init(tInitStage stage, __exception) {
RETURN_IF_FAILED(cFilter::Init(stage, __exception_ptr));
if (stage == StageFirst) {
slim::register_pin_func func = &ObjectDetection::RegisterPin;
RETURN_IF_FAILED(
basler_input_pin_.StageFirst(this, func, "basler_rgb"));
RETURN_IF_FAILED(
basler_output_pin_.StageFirst(this, func, "basler_viz"));
// Use session options to allow gpu growth
// options_buf_ =
// tf::Buffer("/home/aadc/ADTF/weights/faster_rcnn_resnet101_coco_11_"
// "06_2017/session_config_gpugrowth.pb");
// options_buf_ =
// tf::Buffer("/home/aadc/ADTF/weights/faster_rcnn_resnet101_coco_11_"
// "06_2017/session_config_gpugrowth.pb");
// options_buf_ = tf::Buffer(
// "/home/aadc/ADTF/session_config/"
// "SessionConfig_XLA_on_allowgroth.pb");
// options_buf_ =
// tf::Buffer("/home/aadc/ADTF/src/models/session_configs/session_config_85percent_gpu_fraction.pb");
options_buf_ =
tf::Buffer("/home/aadc/ADTF/src/models/session_configs/session_config_allowgrowth_85percent_gpu_fraction.pb");
opts_.SetConfig(options_buf_.GetDataPtr(), options_buf_.ByteSize());
// tf_controller_ = TensorflowController(GetPropertyStr("weightspath"),
// opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/ADTF/weights/faster_rcnn_resnet101_coco_"
// "11_06_2017/frozen_inference_graph.pb", opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/ADTF/weights/rfcn_resnet101_coco_11_06_2017"
// "/frozen_inference_graph.pb", opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/ADTF/weights/59286vanilla_ssd_mobilenet_v1_9class_inference_graph_optimized/frozen_inference_graph.pb",
// opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/ADTF/weights/340665_kitti_dolls_9class_rfcn_resnet101/frozen_inference_graph.pb",
// opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/ADTF/weights/662289vanilla_rfcn_resnet101_9class_inference_graph_optimized/frozen_inference_graph.pb",
// opts_);
// tf_controller_ = TensorflowController(
// "/home/aadc/ADTF/weights/"
// "1042585vanilla_rfcn_resnet101_9class_inference_graph_optimized/"
// "frozen_inference_graph.pb",
// opts_);
tf_controller_ = TensorflowController("/home/aadc/ADTF/weights/1469616_kitti_dolls_9class_rfcn_resnet101/frozen_inference_graph.pb", opts_);
// tf_controller_ = TensorflowController("/home/aadc/ADTF/weights/30973_rfcn_resnet101_nokittipeds/frozen_inference_graph.pb", opts_);
// tf_controller_ = TensorflowController("/home/aadc/ADTF/weights/200000_rfcn_resnet101_nochild/frozen_inference_graph.pb", opts_);
// tf_controller_ = TensorflowController("/home/aadc/ADTF/weights/403012_rfcn_resnet101_nochild/frozen_inference_graph.pb", opts_);
// tf_controller_ = TensorflowController("/home/aadc/ADTF/weights/faster_rcnn_resnet101_lowproposals_coco_2017_11_08/frozen_inference_graph.pb", opts_);
// tf_controller_ = TensorflowController("/home/aadc/ADTF/weights/faster_rcnn_resnet50_lowproposals_coco_2017_11_08/frozen_inference_graph.pb", opts_);
// tf_controller_ = TensorflowController("/home/aadc/ADTF/weights/faster_rcnn_inception_v2_coco_2017_11_08/frozen_inference_graph.pb", opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/ADTF/weights/64275_ssd_mobilenet_v1_9class_3ratio_inference_graph_optimized/frozen_inference_graph.pb",
// opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/ADTF/weights/79687_vanilla_ssd_mobilenet_v1_9class_padaugmented_inference_graph_optimized/frozen_inference_graph.pb",
// opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/ADTF/weights/18019vanilla_rfcn_resnet101_9class_inference_graph_optimized/frozen_inference_graph.pb",
// opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/ADTF/weights/ssd_mobilenet_v1_coco_11_06_2017"
// "/frozen_inference_graph.pb", opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/test_code/tensorflow/exported/early_vanilla_ssd_mobilenet_v1_9class_inference_graph"
// "/frozen_inference_graph.pb", opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/test_code/tensorflow/exported/early_vanilla_ssd_mobilenet_v1_9class_inference_graph_optimized"
// "/frozen_inference_graph.pb", opts_);
// tf_controller_ =
// TensorflowController("/home/aadc/ADTF/weights/ssd_inception_v2_coco_11_06_2017"
// "/frozen_inference_graph.pb", opts_);
// tf_controller_.ReadLabels("/home/aadc/ADTF/src/tests/cpp/tensorflow_tests/mscoco_labels.txt");
tf_controller_.ReadLabels(
"/home/aadc/ADTF/src/models/labels/audicup_label.txt");
// tf_controller_.DeactivateSession();
} else if (stage == StageGraphReady) {
basler_input_pin_.StageGraphReady();
SetRegionOfInterest();
min_score_ = GetPropertyFloat("Minimum_detection_confidence");
display_connected_ = basler_output_pin_.IsConnected();
map_ = fmap::getInstance();
SetupMinScoreMap();
std::string xml_path = GetPropertyStr("fraiburgxmlconfigpath");
basler_transform_ = CameraTransformations(xml_path, "camera basler cropped");
RETURN_IF_FAILED(InitTensorflow());
}
RETURN_NOERROR;
}
// ____________________________________________________________________________
tResult ObjectDetection::InitTensorflow() {
// Try to setup tensorflow. First run is slow as the graph gets
// optimized. If the second run is still slow, return an error.
cv::Mat dummy(roi_.size(), CV_8UC3);
cv::randn(dummy, cv::Scalar(0), cv::Scalar(255));
cString error_msg = "Tensorflow Init failed. Check that nvidia driver "
"is installed. Close/Reopen ADTF.";
if (!DetectObjects(dummy)) {
LOG_ERROR(error_msg);
RETURN_ERROR(-1);
}
// the second run should be fast. If it's not, we're likely running on
// CPU only.
struct timeval tv1, tv2;
gettimeofday(&tv1, NULL);
if (!DetectObjects(dummy)) {
LOG_ERROR(error_msg);
RETURN_ERROR(-1);
}
gettimeofday(&tv2, NULL);
double span = static_cast<double>(tv2.tv_usec - tv1.tv_usec) / 1000000 +
static_cast<double>(tv2.tv_sec - tv1.tv_sec);
if (span > 0.5) {
LOG_ERROR(error_msg);
RETURN_ERROR(-1);
}
RETURN_NOERROR;
}
// ____________________________________________________________________________
tResult ObjectDetection::Shutdown(tInitStage stage,
ucom::IException** __exception_ptr) {
return cFilter::Shutdown(stage, __exception_ptr);
}
// ____________________________________________________________________________
tResult ObjectDetection::OnPinEvent(IPin* source, tInt event_code,
tInt param1, tInt param2,
IMediaSample* media_sample) {
RETURN_IF_POINTER_NULL(media_sample);
RETURN_IF_POINTER_NULL(source);
if (event_code == IPinEventSink::PE_MediaSampleReceived) {
HandleMediaPinEvent(media_sample);
} else if (event_code == IPinEventSink::PE_MediaTypeChanged) {
if (basler_input_pin_.IsSource(source)) {
basler_input_pin_.UpdateInputFormat();
}
}
RETURN_NOERROR;
}
// ____________________________________________________________________________
void ObjectDetection::HandleMediaPinEvent(IMediaSample* media_sample) {
if (thread_is_active_) {
return;
}
if (basler_input_pin_.PixelFormatIsUnknown()) {
basler_input_pin_.UpdateInputFormat();
}
// Create a cv::Mat from media sample without copying as this happens for
// the roi later to get a contiguous buffer.
// todo(phil): check if roi can be removed altogether when the image is
// cropped in the camera filter directly
const tVoid* sample_buffer;
if (!IS_OK(media_sample->Lock(&sample_buffer))) {
return;
}
tBitmapFormat format = basler_input_pin_.GetFormat();
tVoid* buffer = const_cast<tVoid*>(sample_buffer);
cv::Mat img = slim::cvtools::NoCopyAdtfMediaSampleToCvMat(buffer, format);
img = img(roi_).clone();
cv::cvtColor(img, img, CV_BGR2RGB);
media_sample->Unlock(sample_buffer);
if (img.rows == 0) {
return;
}
thread_is_active_ = true;
boost::thread(&ObjectDetection::HandleMediaPinEventThreadFunc, this,
img);
}
// ____________________________________________________________________________
void ObjectDetection::HandleMediaPinEventThreadFunc(cv::Mat img) {
struct timeval tv1, tv2;
timestamp_at_input_received_ = _clock->GetStreamTime();
map_->GetGlobalCarPosition(&car_position_at_input_received_);
gettimeofday(&tv1, NULL);
bool detection_success = false;
try { // OpenCV rarely produces a transformation error. todo(phil)
// find the cause of it...
detection_success = DetectObjects(img);
} catch (...) {
LOG_ERROR(
"ObjectDetection: Function DetectObjects(img) threw an"
"exception.");
thread_is_active_ = false;
return;
}
if (detection_success) {
member_write_mutex_ = true;
AddObjectsToMap(img.size());
member_write_mutex_ = false;
}
if (display_connected_) {
VisualizeOutput(&img);
basler_output_pin_.Transmit(img, _clock->GetStreamTime());
}
gettimeofday(&tv2, NULL);
thread_is_active_ = false;
printf("Total time for handle media pin event = %f seconds\n",
static_cast<double>(tv2.tv_usec - tv1.tv_usec) / 1000000 +
static_cast<double>(tv2.tv_sec - tv1.tv_sec));
}
// ____________________________________________________________________________
bool ObjectDetection::DetectObjects(const cv::Mat& img) {
std::vector<tf::OpAndTensor> feed;
tf::Tensor image_tensor;
image_tensor = TfOpenCvBridge::NoCopyCvMatToTfTensor(img);
if (image_tensor.NumDims() == 0) { // tensor empty
return false;
}
feed.push_back(tf::OpAndTensor("image_tensor", &image_tensor));
if (!tf_controller_.ForwardPass(feed, &fetch)) {
LOG_ERROR("TF forward pass failed.");
return false;
}
return true;
}
// ____________________________________________________________________________
void ObjectDetection::VisualizeOutput(cv::Mat* img) {
typedef BoundingBoxVisualization viz;
FontStyle font_style(cv::Scalar(255, 255, 255), 1, 1);
std::vector<std::string> labels;
labels.reserve(valid_indices_.size());
for (size_t i = 0; i < valid_indices_.size(); ++i) {
int index = valid_indices_[i];
int id = detection_classes_.get<float>(0, index, false);
std::string label =
viz::GetLabel(detection_scores_.get<float>(0, index, false), id,
tf_controller_.id_to_label_);
labels.push_back(label);
}
viz::DrawBoundingBoxes(img, valid_boxes_, labels, cv::Scalar(0, 108, 239),
2, font_style);
}
// ____________________________________________________________________________
float ObjectDetection::ApproximateHeight(
const cv::Rect& bounding_box, const fmap::tMapPoint& p1,
const fmap::tMapPoint& p2) {
float ratio = bounding_box.height / static_cast<float>(bounding_box.width);
return ratio * std::abs((p1.y() - p2.y()));
}
// ____________________________________________________________________________
bool ObjectDetection::RectsToMapPoints(
std::vector<fmap::tMapPoint>* world_coordinates) {
// apply transformation to image
if (!basler_transform_.Initialized()) {
LOG_ERROR(
"Transformation matrix for camera is empty. Most likely "
"the file path to the xml config is invalid.");
return false;
}
std::vector<cv::Point2i> source;
std::vector<cv::Point2f> transformed;
source.reserve(valid_boxes_.size() * 2);
world_coordinates->reserve(valid_boxes_.size() * 2);
cv::Point2i offset(roi_.tl());
for (size_t i = 0; i < valid_boxes_.size(); ++i) {
cv::Point2i box_width = cv::Point2i(valid_boxes_[i].width, 0);
cv::Point2i bl = valid_boxes_[i].br() - box_width;
source.push_back(bl + offset);
source.push_back(valid_boxes_[i].br() + offset);
}
basler_transform_.PixelToStreet(source, &transformed);
for (size_t i = 0; i < transformed.size(); ++i) {
world_coordinates->push_back(
fmap::tMapPoint(transformed[i].y, transformed[i].x));
}
return true;
}
// ____________________________________________________________________________
void ObjectDetection::RemoveNoisyDetections(
std::vector<fmap::tMapPoint>* world_coordinates) {
if (valid_boxes_.size() * 2 != world_coordinates->size()) {
std::cout << "Error: world positions must be double the size of boxes.";
}
std::vector<cv::Rect> tmp_boxes;
std::vector<fmap::tMapPoint> tmp_world_coordinates;
std::vector<int> tmp_indices;
tmp_indices.reserve(valid_indices_.size());
tmp_boxes.reserve(valid_boxes_.size());
tmp_world_coordinates.reserve(world_coordinates->size());
for (size_t i = 0; i < valid_indices_.size(); ++i) {
// If objects are too tall or too far away, continue
if (((*world_coordinates)[(i * 2)].x() > MAXIMUM_OBJECT_DISTANCE) |
((*world_coordinates)[(i * 2) + 1].x() > MAXIMUM_OBJECT_DISTANCE)) {
// (approx_height > MAXIMUM_APPROX_OBJECT_HEIGHT)) {
continue;
}
// remove badly projected points
if (((*world_coordinates)[(i * 2)].x() < 0.01) |
((*world_coordinates)[(i * 2) + 1].x() < 0.01)) {
continue;
}
// if it's a person, check if height > width; not more, due to children
if ((detection_classes_.get<float>(0, i, false) == 1.0) &&
valid_boxes_[i].width > valid_boxes_[i].height) {
std::cout << "width > height" << std::endl;
continue;
}
tmp_indices.push_back(valid_indices_[i]);
tmp_boxes.push_back(valid_boxes_[i]);
tmp_world_coordinates.push_back((*world_coordinates)[i]);
}
valid_indices_ = tmp_indices;
valid_boxes_ = tmp_boxes;
*world_coordinates = tmp_world_coordinates;
}
// ____________________________________________________________________________
void ObjectDetection::AddObjectsToMap(const cv::Size& img_size) {
typedef BoundingBoxVisualization viz;
valid_indices_.clear();
valid_boxes_.clear();
UpdateValidDetectionsIndices();
if (valid_indices_.size() == 0) {
return;
}
TfBoxesToCvRect(detection_boxes_, img_size);
std::vector<fmap::tMapPoint> world_coordinates;
if (!RectsToMapPoints(&world_coordinates)) {
return;
}
RemoveNoisyDetections(&world_coordinates); // also updates indices
for (size_t i = 0; i < valid_indices_.size(); ++i) {
std::vector<fmap::tMapPoint> points;
points.push_back(world_coordinates[(2 * i) + 1]);
points.push_back(world_coordinates[(2 * i)]);
int idx = valid_indices_[i];
float score = detection_scores_.get<float>(0, idx, false);
int id = static_cast<int>(detection_classes_.get<float>(0, idx, false));
fmap::tSptrMapElement el = LabelToMapElement(id, &points,
valid_boxes_[i]);
// don't enter real persons into the map
if (id == 1 &&
dynamic_cast<fmap::MapElementPedestrian*>(el.get())
->GetPedestrianType() == fmap::REAL_PERSON) {
continue;
}
el->LocalToGlobal(car_position_at_input_received_);
std::string caption =
viz::GetLabel(score, id, tf_controller_.id_to_label_);
el->user_tag_ui_ = caption;
// el->user_tag_ = caption;
el->EnableTimeOfLife(1e6); // in microseconds, rest with fuse
map_->AddFuseElement(el, 0.4, // max distance to fuse
-1, // max area to fuse, -1 to deactivate
_clock->GetStreamTime(), fmap::MAP_FUSE_REPLACE);
}
}
// ____________________________________________________________________________
void ObjectDetection::SetAdtfParameters(const tChar* __info) {
// Path to the binary protobuf file containing the weights
SetPropertyStr("weightspath",
"/home/aadc/ADTF/weights/faster_rcnn_resnet101_coco_"
"11_06_2017/frozen_inference_graph.pb");
cString info =
"Path to the weights file used to load the tensorflow graph.";
SetPropertyStr("weightspath" NSSUBPROP_DESCRIPTION, info);
// The minimum confidence for a detection
SetPropertyFloat("Minimum_detection_confidence", 0.8);
// The region of interest's dims
SetPropertyInt("ROI_y", 0);
SetPropertyStr("ROI_y" NSSUBPROP_DESCRIPTION,
"y value of the ROI's topleft corner.");
SetPropertyInt("ROI_x", 0);
SetPropertyStr("ROI_x" NSSUBPROP_DESCRIPTION,
"x value of the ROI's topleft corner.");
SetPropertyInt("ROI_Height", 400);
SetPropertyStr("ROI_Height" NSSUBPROP_DESCRIPTION, "Height of the ROI");
SetPropertyInt("ROI_Width", 1280);
SetPropertyStr("ROI_Width" NSSUBPROP_DESCRIPTION, "Width of the ROI");
SetPropertyStr("fraiburgxmlconfigpath",
"/home/aadc/ADTF/configuration"
"_files/frAIburg_configuration");
SetPropertyStr(
"fraiburgxmlconfigpath" NSSUBPROP_FILENAME NSSUBSUBPROP_EXTENSIONFILTER,
"XML Files (*.xml)");
// info = "Path to the xml config file containing the camera calibration.";
// SetPropertyStr("fraiburgxmlconfigpath" NSSUBPROP_DESCRIPTION, info);
}
// ____________________________________________________________________________
void ObjectDetection::SetRegionOfInterest() {
roi_.y = GetPropertyInt("ROI_y");
roi_.x = GetPropertyInt("ROI_x");
roi_.height = GetPropertyInt("ROI_Height");
roi_.width = GetPropertyInt("ROI_Width");
}
// ____________________________________________________________________________
void ObjectDetection::SetupMinScoreMap() {
// the last element in the map has the highest key
if (tf_controller_.id_to_label_.size() == 0) {
std::cout << "Error: SetupMinScoreMap: id_to_label has no entries."
<< std::endl;
return;
}
// Get the overall minimum score
min_score_ = GetPropertyFloat("Minimum_detection_confidence");
std::cout << "min score from adtf:" << min_score_ << std::endl;
int num_labels = tf_controller_.id_to_label_.rbegin()->first;
std::cout << "num_labels:" << num_labels << std::endl;
min_score_for_label_.resize(num_labels);
for (int i = 0; i < num_labels; ++i) {
min_score_for_label_[i] = min_score_;
}
// min_score_for_label_[1] = 1.1; // example how to set a custom min score
for (size_t i = 0; i < tf_controller_.id_to_label_.size(); ++i) {
min_score_ = std::min(min_score_for_label_[i], min_score_);
}
}
// ____________________________________________________________________________
fmap::tSptrMapElement ObjectDetection::LabelToMapElement(
int label, std::vector<fmap::tMapPoint>* points,
const cv::Rect& bounding_box) {
if (label <= 5) { // is pedestrian
return CreatePedestrian(label, points, bounding_box);
} else {
return CreateCar(label, points);
}
}
// ____________________________________________________________________________
fmap::MapElementOrientation OrientationFromLabel(int label) {
switch (label) {
case 1:
case 6:
return fmap::LEFT;
break;
case 2:
case 7:
return fmap::RIGHT;
break;
case 3:
case 8:
return fmap::TOWARDS;
break;
case 4:
case 9:
return fmap::AWAY;
break;
default:
return fmap::UNKNOWN_ORIENTATION;
}
}
// ____________________________________________________________________________
fmap::tSptrMapElement ObjectDetection::CreatePedestrian(
int label, std::vector<fmap::tMapPoint>* points,
const cv::Rect& bounding_box) {
fmap::MapPedestrianType type;
// make square polygon
float width = std::abs((*points)[1].y() - (*points)[0].y());
points->push_back(
fmap::tMapPoint((*points)[1].x() + width, (*points)[1].y()));
points->push_back(
fmap::tMapPoint((*points)[0].x() + width, (*points)[0].y()));
type = label == 5 ? fmap::CHILD : fmap::ADULT;
// To filter out all real persons, only use
// the ones that have the right width and height
float height = ApproximateHeight(bounding_box, (*points)[0], (*points)[1]);
std::cout << "estimated height: " << height << std::endl;
if ((width <= 0.02) | (width >= 0.2) || height > 0.38) {
type = fmap::REAL_PERSON;
}
return fmap::tSptrMapElement(
new fmap::MapElementPedestrian(type, OrientationFromLabel(label),
*points, timestamp_at_input_received_));
}
// ____________________________________________________________________________
fmap::tSptrMapElement ObjectDetection::CreateCar(
int label, std::vector<fmap::tMapPoint>* points) {
// move points that are close to the car's front but on the very edges
// a bit more towards the edges as these contain the most error from
// cars that sit diagonally in their bounding boxes.
// --> if the point is within 19 cm distance in the forward direction
// and only one of the points is close to the bumper
float x0 = (*points)[0].x();
float x1 = (*points)[1].x();
float y0 = (*points)[0].y();
float y1 = (*points)[1].y();
if ((x0 < 0.19 || x1 < 0.19) &&
((std::abs(y0) < 0.15) || (std::abs(y1) < 0.15)) &&
(y1*y0) > 0) {
y0 = (y0 < 0 ? -1.0 : 1.0) * std::max(0.23f, std::abs(y0));
y1 = (y1 < 0 ? -1.0 : 1.0) * std::max(0.23f, std::abs(y1));
(*points)[0] = fmap::tMapPoint(x0, y0);
(*points)[1] = fmap::tMapPoint(x1, y1);
}
// In a normal car you wouldn't reduce detected object's sizes, but as one
// gets zero points for not finishing a sector, we prefer to touch objects
// instead of waiting infinitely.
// make a trapezoid polygon and make box 5 cm smaller in each direction
y1 = std::max(y0 + 0.06f, y1 - 0.05f);
y0 = std::min(y1 - 0.01f, y0 + 0.05f);
(*points)[1] = fmap::tMapPoint(x1, y1);
(*points)[0] = fmap::tMapPoint(x0, y0);
float width = y1 - y0;
float trapezoid_offset = 0.2f * width;
points->push_back(fmap::tMapPoint(x1 + width, y1 - trapezoid_offset));
points->push_back(fmap::tMapPoint(x0 + width, y0 + trapezoid_offset));
return fmap::tSptrMapElement(new fmap::MapElementCar(
OrientationFromLabel(label), *points, timestamp_at_input_received_));
}
// ____________________________________________________________________________
void ObjectDetection::UpdateValidDetectionsIndices() {
for (int i = 0; i < detection_scores_.Shape()[1]; ++i) {
float score = detection_scores_.get<float>(0, i, false);
int label =
static_cast<int>(detection_classes_.get<float>(0, i, false));
if (score < min_score_) {
return; // no matches possible anymore
}
float min_x = detection_boxes_.get<float>(0, i, 1, false);
float min_y = detection_boxes_.get<float>(0, i, 0, false);
float max_x = detection_boxes_.get<float>(0, i, 3, false);
float max_y = detection_boxes_.get<float>(0, i, 2, false);
int x_left = roi_.width * min_x;
int x_right = roi_.width * max_x;
int y_bottom = roi_.height * max_y;
int y_top = roi_.height * min_y;
if (((x_right - x_left) < MINIMUM_BOUNDINGBOX_SIZE_PX) |
((y_bottom - y_top) < MINIMUM_BOUNDINGBOX_SIZE_PX)) {
continue;
}
if (score >= min_score_for_label_[label]) {
valid_indices_.push_back(i);
}
}
}
// ____________________________________________________________________________
void ObjectDetection::TfBoxesToCvRect(const tf::Tensor& boxes,
const cv::Size& img_size) {
for (size_t i = 0; i < valid_indices_.size(); ++i) {
float width = static_cast<float>(img_size.width);
float height = static_cast<float>(img_size.height);
float min_x = boxes.get<float>(0, valid_indices_[i], 1, false);
float min_y = boxes.get<float>(0, valid_indices_[i], 0, false);
float max_x = boxes.get<float>(0, valid_indices_[i], 3, false);
float max_y = boxes.get<float>(0, valid_indices_[i], 2, false);
int x_left = width * min_x;
int x_right = width * max_x;
int y_bottom = height * max_y;
int y_top = height * min_y;
valid_boxes_.push_back(
cv::Rect(cv::Point(x_left, y_top), cv::Point(x_right, y_bottom)));
}
}
|
5fed8be842d852ecd2d667d5dd567352d7ce293e | 19c7e0531498892328f5c6581de6f09175c6c1f7 | /src/fakesim.h | 30628ebd407e57275baefcfc17058d0049abc221 | [] | no_license | mls-m5/coppelia-simulator-api | e347f6adf9c11d9efa676293e17875af30d88e58 | b9ddeb21c457ef681f858a61901eeac4979ac6c4 | refs/heads/master | 2022-08-03T07:22:50.626868 | 2020-05-25T07:27:11 | 2020-05-25T07:27:11 | 263,713,323 | 0 | 0 | null | 2020-05-13T20:42:08 | 2020-05-13T18:34:59 | C++ | UTF-8 | C++ | false | false | 88 | h | fakesim.h |
#pragma once
#include "isimclient.h"
std::unique_ptr<ISimClient> createFakeClient();
|
a8ba28e07e939da67801e75ee95acf9d2c25cdcb | e45583762b5f2ae3166f0365df0c5edd98b82f6b | /NETWorker.h | bab53bdbe81175f49f3f25ee3ff91e07a611238c | [] | no_license | zadockmaloba/QtWeatherApp | 149d8cc02695667b90637c70e2acb5aa3b901e47 | 3fd2504c1efa87875cc8b832f4f7caa49658a2d9 | refs/heads/master | 2022-11-10T03:22:19.290076 | 2020-06-28T07:39:14 | 2020-06-28T07:39:14 | 275,129,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 806 | h | NETWorker.h | #pragma once
#include <qobject.h>
#include <curl/curl.h>
#include <curlpp/cURLpp.hpp>
#include <iostream>
#include <sstream>
#ifndef ERRLOG(x)
#define ERRLOG(x) std::cout<<"[ERROR] "<<x<<std::endl;
#endif // !LOG(x)
class NETWorker : public QObject
{
Q_OBJECT
private:
struct weatherInfo
{
std::string maxTemp, minTemp, cloudCover;
};
public:
NETWorker(std::string cityName = "nairobi");
~NETWorker();
size_t netCallBack_impl(char* contents, size_t size, size_t numMemb);
static size_t netCallback(char* contents, size_t size, size_t numMemb, void *user);
void getWeather(std::string city);
public slots:
//void updateGui();
private:
std::string searchToken;
CURL* curl;
CURLcode result;
static weatherInfo nbm;
const char zURL[45] = "http://www.meteo.go.ke/pages/fetch.php?town=";
};
|
8169a803ab8e97ca332af4f9ad2df0888fd60ca4 | 002df2aecf110b3718c22aa99db1c74c8e66c0fe | /Problems/0547. Number of Provinces.cpp | 1c460e7d7f9ea8d69064002d91d7f006f6ba2339 | [
"MIT"
] | permissive | KrKush23/LeetCode | ddde2f95ac745ed3751486439b81873069706ed7 | 2a87420a65347a34fba333d46e1aa6224c629b7a | refs/heads/master | 2023-08-23T16:28:02.852347 | 2021-10-12T20:52:02 | 2021-10-12T20:52:02 | 234,703,492 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 676 | cpp | 0547. Number of Provinces.cpp | class Solution {
int n;
vector<bool> vis;
public:
int findCircleNum(vector<vector<int>>& isConnected) {
n = isConnected.size();
vis.resize(n);
int cc{0};
for(int i=0; i<n; i++){
if(!vis[i]){
dfs(i, isConnected);
cc++;
}
}
return cc; // connected components
}
// DFS on adjcency MATRIX
void dfs(int src, vector<vector<int>>& isConnected){
vis[src] = 1;
for(int nbr=0; nbr<n; nbr++){
if(nbr!=src and isConnected[src][nbr] and !vis[nbr])
dfs(nbr, isConnected);
}
}
};
|
af4a7e2628f2ee300b5c66f2a1b5bcd1444964d2 | 0cf94ba93e29f574a08f1c9b0d9dbf98e5984c6e | /VisionAgent/VisionAgentECSJobHistoryDlg.cpp | 512e4fc08a12b7f16d5b6e8f790d5a75da403603 | [] | no_license | jtendless/G8H_VisionAgent | aa1c41bcdb0e9f54471ef5f7cfa5b5720d2f32f2 | 07a613533cadf0741cfaa31b65f41c441e1267cc | refs/heads/main | 2023-08-21T14:03:50.921147 | 2021-09-24T00:42:35 | 2021-09-24T00:42:35 | 409,556,921 | 0 | 1 | null | 2023-07-21T07:59:10 | 2021-09-23T11:05:39 | C++ | UTF-8 | C++ | false | false | 9,829 | cpp | VisionAgentECSJobHistoryDlg.cpp | // VisionAgentECSJobHistoryDlg.cpp : ±¸Çö ÆÄÀÏÀÔ´Ï´Ù.
//
#include "stdafx.h"
#include "VisionAgent.h"
#include "VisionAgentECSJobHistoryDlg.h"
#include "VisionAgentDlg.h"
#include "afxdialogex.h"
// CVisionAgentECSJobHistoryDlg ´ëÈ »óÀÚÀÔ´Ï´Ù.
IMPLEMENT_DYNAMIC(CVisionAgentECSJobHistoryDlg, CDialogEx)
CVisionAgentECSJobHistoryDlg::CVisionAgentECSJobHistoryDlg(CWnd* pParent /*=NULL*/)
: CDialogEx(IDD_VISION_AGENT_ECS_JOB_HISTORY_DIALOG, pParent)
{
Create(IDD_VISION_AGENT_ECS_JOB_HISTORY_DIALOG, pParent);
}
CVisionAgentECSJobHistoryDlg::~CVisionAgentECSJobHistoryDlg()
{
}
void CVisionAgentECSJobHistoryDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
}
void CVisionAgentECSJobHistoryDlg::InitListControlPara()
{
CVisionAgentDlg *pVisionAgentDlg;
pVisionAgentDlg = (CVisionAgentDlg *)theApp.m_pMainWnd;
CString Str;
CRect Rect;
GetDlgItem(IDC_LIST_RECIPE_DATA)->GetClientRect(&Rect);
int nPreSize = Rect.Width() - 250;
CImageList m_ImageList;
CString strTeg[JOB_HISTORY_LISTCTRL_MAX_COL] = { _T("No"),_T("Time"), _T("Job ID") };
CString strComboData[3] = { _T("Warning"), _T("Alarm"), _T("NA") };
INT nColSize[JOB_HISTORY_LISTCTRL_MAX_COL];
COLORREF m_BkColor[JOB_HISTORY_LISTCTRL_MAX_COL];
COLORREF m_TextColor[JOB_HISTORY_LISTCTRL_MAX_COL];
INT nInpuMethod[JOB_HISTORY_LISTCTRL_MAX_COL] = { eMETHOD_NO_USE, eMETHOD_NO_USE, eMETHOD_NO_USE };
m_ImageList.Create(1, 22, ILC_COLOR, 1, 1);
m_pListCtrl = new CCommonListCtrl;
m_pListCtrl->SubclassDlgItem(IDC_LIST_RECIPE_DATA, this);
/// Setting
m_pListCtrl->SetImageList(&m_ImageList, LVSIL_SMALL);
m_pListCtrl->SetExtendedStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES);
for (int i = 0; i < JOB_HISTORY_LISTCTRL_MAX_COL; i++)
{
if (i == 0)
{
nColSize[i] = 50;
m_BkColor[i] = RGB(215, 215, 215);
m_TextColor[i] = RGB(0, 0, 0);
}
else if (i == 1)
{
nColSize[i] = 150;
m_BkColor[i] = RGB(126, 205, 150);
m_TextColor[i] = RGB(0, 0, 0);
}
else if (i == 6)
{
nColSize[i] = nPreSize;
m_BkColor[i] = RGB(126, 205, 150);
m_TextColor[i] = RGB(0, 0, 0);
}
else
{
nColSize[i] = 80;
m_BkColor[i] = RGB(126, 205, 150);
m_TextColor[i] = RGB(0, 0, 0);
}
}
m_pListCtrl->SetListColumn(strTeg, nColSize, JOB_HISTORY_LISTCTRL_MAX_COL, m_BkColor, m_TextColor, nInpuMethod);
m_pListCtrl->SetColData(1, 3, strComboData);
m_pListCtrl->m_nListCnt = 0;
}
void CVisionAgentECSJobHistoryDlg::ChangeUI()
{
int nRowCount = 0;
CString szMsg[JOB_HISTORY_LISTCTRL_MAX_COL] = { _T(""), };
m_pListCtrl->DeleteAllItems();
nRowCount = m_pListCtrl->GetMaxListCount();
for (int nRowCount = 0; nRowCount < JOB_HISTORY_LISTCTRL_MAX_ROW; nRowCount++)
{
szMsg[0].Format(_T("%d"), nRowCount + 1);
m_pListCtrl->AddListData(nRowCount, szMsg);
}
}
//void CVisionAgentECSJobHistoryDlg::InitSpread()
//{
// CRect rect;
// CString szMsg, szMsgTmp;
// USES_CONVERSION;
//
//
//
// int RowCnt = 1;;
//
// m_procsTexts.Add(_T("No"));
// m_procsTexts.Add(_T("Type"));
// m_procsTexts.Add(_T("Code"));
// m_procsTexts.Add(_T("Message"));
//
// m_spread = (TSpread*)GetDlgItem(IDD_ECS_ERROR_CST);
// m_spread->SetBool(SSB_HORZSCROLLBAR, FALSE);
// m_spread->SetMaxRows(100);
// m_spread->SetMaxCols(3);
// for (int i = 0; i < 4; i++)
// {
//
// m_spread->SetData(i, 0, (LPCTSTR)T2A(m_procsTexts.GetAt(i)));
// }
// m_spread->GetClientRect(&rect);
// m_spread->SetColHeaderDisplay(SS_HEADERDISPLAY_LETTERS);
//
// m_spread->SetColWidthInPixels(1, 50);
//
// m_spread->SetColWidthInPixels(2, 50);
//
// m_spread->SetColWidthInPixels(3, rect.Width() - 100);
//
//}
BEGIN_MESSAGE_MAP(CVisionAgentECSJobHistoryDlg, CDialogEx)
ON_WM_SHOWWINDOW()
ON_WM_TIMER()
ON_BN_CLICKED(IDC_ECS_ERROR_ALL_CLEAR_BTN, &CVisionAgentECSJobHistoryDlg::OnBnClickedEcsErrorAllClearBtn)
ON_BN_CLICKED(IDC_ECS_ERROR_CLEAR_BTN, &CVisionAgentECSJobHistoryDlg::OnBnClickedEcsErrorClearBtn)
ON_WM_DESTROY()
ON_NOTIFY(NM_CLICK, IDC_LIST_RECIPE_DATA, &CVisionAgentECSJobHistoryDlg::OnNMClickListRecipeData)
END_MESSAGE_MAP()
// CVisionAgentECSJobHistoryDlg ¸Þ½ÃÁö 󸮱âÀÔ´Ï´Ù.
BOOL CVisionAgentECSJobHistoryDlg::OnInitDialog()
{
CDialogEx::OnInitDialog();
// TODO: ¿©±â¿¡ Ãß°¡ ÃʱâÈ ÀÛ¾÷À» Ãß°¡ÇÕ´Ï´Ù.
//InitSpread();
InitListControlPara();
ChangeUI();
return TRUE; // return TRUE unless you set the focus to a control
// ¿¹¿Ü: OCX ¼Ó¼º ÆäÀÌÁö´Â FALSE¸¦ ¹ÝÈ¯ÇØ¾ß ÇÕ´Ï´Ù.
}
void CVisionAgentECSJobHistoryDlg::OnShowWindow(BOOL bShow, UINT nStatus)
{
CDialogEx::OnShowWindow(bShow, nStatus);
// TODO: ¿©±â¿¡ ¸Þ½ÃÁö 󸮱â Äڵ带 Ãß°¡ÇÕ´Ï´Ù.
if (bShow == TRUE)
SetTimer(1, 100, NULL);
else
KillTimer(1);
}
void CVisionAgentECSJobHistoryDlg::OnTimer(UINT_PTR nIDEvent)
{
// TODO: ¿©±â¿¡ ¸Þ½ÃÁö 󸮱â Äڵ带 Ãß°¡ ¹×/¶Ç´Â ±âº»°ªÀ» È£ÃâÇÕ´Ï´Ù.
CString szMsg[JOB_HISTORY_LISTCTRL_MAX_COL] = { 0, };
char ConvertValue[20];
if (nIDEvent == 1)
{
//m_spread->SetData(1, 1, (LPCTSTR)T2A(szMsg));
for (int i = 0; i < JOB_HISTORY_LISTCTRL_MAX_ROW; i++)
{
memset(ConvertValue, 0x0, sizeof(ConvertValue));
if (!memcmp(SharedInfo::StoredJob[i].MaskJobDataBlock.Mask_JobID , ConvertValue, sizeof(ConvertValue)))
{
//memset(&CimInfo::AlarmBlock[i], 0x0, sizeof(LW_LTM_ALARM_BLOCK));
szMsg[0].Format(_T(""));
szMsg[1].Format(_T(""));
szMsg[2].Format(_T(""));
}
else
{
szMsg[0].Format(_T("%2d/%2d/%2d %2d:%2d:%2d"), CimInfo::AlarmOccuredTime[i].GetYear(), CimInfo::AlarmOccuredTime[i].GetMonth(), CimInfo::AlarmOccuredTime[i].GetDay(), CimInfo::AlarmOccuredTime[i].GetHour(), CimInfo::AlarmOccuredTime[i].GetMinute(), CimInfo::AlarmOccuredTime[i].GetSecond());
memcpy(ConvertValue, SharedInfo::StoredJob[i].MaskJobDataBlock.Mask_JobID, sizeof(SharedInfo::StoredJob[i].MaskJobDataBlock.Mask_JobID));
szMsg[1].Format(_T("%S"), ConvertValue);
}
m_pListCtrl->SetItemTextEx(i, 1, szMsg[0]);
m_pListCtrl->SetItemTextEx(i, 2, szMsg[1]);
}
}
CDialogEx::OnTimer(nIDEvent);
}
void CVisionAgentECSJobHistoryDlg::OnBnClickedEcsErrorAllClearBtn()
{
if (IDOK != AfxMessageBox(_T("Remove?"), MB_OKCANCEL)) return;
CString szMsg;
MASK_JOB_MANUAL_MOVE_REPORT_BLOCK MaskManualReportBlock;
for (int i = 0; i < 20; i++)
{
if (!memcmp(CimInfo::MaskJobData.MaskJobDataBlock.Mask_JobID, SharedInfo::StoredJob[i].MaskJobDataBlock.Mask_JobID, sizeof(CimInfo::MaskJobData.MaskJobDataBlock.Mask_JobID)))
{
for (int j = i; j < 20; j++)
{
memcpy(&SharedInfo::StoredJob[j], &SharedInfo::StoredJob[j + 1], sizeof(SharedInfo::StoredJob[j]));
}
memset(&SharedInfo::StoredJob[19], 0x0, sizeof(SharedInfo::StoredJob[19]));
break;
}
}
MaskManualReportBlock.JobPosition = 0;
MaskManualReportBlock.LotSequenceNumber = CimInfo::MaskJobData.MaskJobDataBlock.Mask_LotSequenceNumber;
memcpy(MaskManualReportBlock.MaskJobID, CimInfo::MaskJobData.MaskJobDataBlock.Mask_JobID, sizeof(CimInfo::MaskJobData.MaskJobDataBlock));
memcpy((BYTE*)MaskManualReportBlock.OperatorID, ConvertPlcString(szMsg), 10);
MaskManualReportBlock.OperatorID;
MaskManualReportBlock.ReportOption = 2;
MaskManualReportBlock.SlotNumber = 1;
MaskManualReportBlock.SlotSequenceNumber = CimInfo::MaskJobData.MaskJobDataBlock.Mask_SlotSequenceNumber;
MaskManualReportBlock.UnitNumber_or_PortNumber = 1;
MaskManualReportBlock.Uni_or_Port = 1;
memset(&CimInfo::MaskJobData, 0x0, sizeof(CimInfo::MaskJobData));
Devs::CimMotion.ReportJobManualMove(MaskManualReportBlock);
Etc_Msg(_T("[Cim] Send : Job Manual Move Report"));
}
void CVisionAgentECSJobHistoryDlg::OnBnClickedEcsErrorClearBtn()
{
if (IDOK != AfxMessageBox(_T("Recovery?"), MB_OKCANCEL)) return;
CString szMsg;
MASK_JOB_MANUAL_MOVE_REPORT_BLOCK MaskManualReportBlock;
INT nPos = m_pListCtrl->GetSelectedItemNumber();
if (nPos < 0 || nPos > 100)
{
AfxMessageBox(_T("Select Job ID"));
return;
}
GetDlgItem(IDC_ECS_JOB_HISTORY_OPERATOR_ID_EDIT)->GetWindowText(szMsg);
if (CimInfo::AlarmBlock[nPos].AlarmStatus == 0)
{
AfxMessageBox(_T("Selected Job is None"));
return;
}
memcpy(&CimInfo::MaskJobData, &SharedInfo::StoredJob[nPos], sizeof(CimInfo::MaskJobData));
MaskManualReportBlock.JobPosition = 0;
MaskManualReportBlock.LotSequenceNumber = CimInfo::MaskJobData.MaskJobDataBlock.Mask_LotSequenceNumber;
memcpy(MaskManualReportBlock.MaskJobID, CimInfo::MaskJobData.MaskJobDataBlock.Mask_JobID, sizeof(CimInfo::MaskJobData.MaskJobDataBlock));
memcpy((BYTE*)MaskManualReportBlock.OperatorID, ConvertPlcString(szMsg), 10);
MaskManualReportBlock.OperatorID;
MaskManualReportBlock.ReportOption = 3;
MaskManualReportBlock.SlotNumber = 1;
MaskManualReportBlock.SlotSequenceNumber = CimInfo::MaskJobData.MaskJobDataBlock.Mask_SlotSequenceNumber;
MaskManualReportBlock.UnitNumber_or_PortNumber=1;
MaskManualReportBlock.Uni_or_Port= 1;
Devs::CimMotion.ReportJobManualMove(MaskManualReportBlock);
Etc_Msg(_T("[Cim] Send : Job Manual Move Report"));
}
void CVisionAgentECSJobHistoryDlg::OnDestroy()
{
CDialogEx::OnDestroy();
// TODO: 여기에 메시지 처리기 코드를 추가합니다.
if (m_pListCtrl != NULL)
delete m_pListCtrl;
}
void CVisionAgentECSJobHistoryDlg::OnNMClickListRecipeData(NMHDR *pNMHDR, LRESULT *pResult)
{
LPNMITEMACTIVATE pNMItemActivate = reinterpret_cast<LPNMITEMACTIVATE>(pNMHDR);
// TODO: 여기에 컨트롤 알림 처리기 코드를 추가합니다.
m_pListCtrl->m_nSelectedItemNumber = pNMItemActivate->iItem;
*pResult = 0;
}
char* CVisionAgentECSJobHistoryDlg::ConvertPlcString(CString strData)
{
char cTemp[100];
memset(cTemp, 0x00, sizeof(cTemp));
sprintf(cTemp, "%s", (char*)CT2CA(strData));
return cTemp;
} |
5d40be9b0b0634998763b2a5736376f4ae2d8553 | 3637cd5ce60a3ad00a7aed52e5d9e2cc878efd7a | /lab9/academiaserializer/main.cpp | e584696fc7dee4918796043de4f3e414a3bd7684 | [] | no_license | patrykofbat/JIMP2_lab | eab978f89fa6b423786bc825df01d76b1a2135af | 25f12bc2936272115af03de60a2b65840c3c5b7b | refs/heads/master | 2021-01-19T08:32:04.447383 | 2017-06-04T09:26:48 | 2017-06-04T09:26:48 | 83,600,812 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 296 | cpp | main.cpp | //
// Created by Patryk on 10.05.2017.
//
#include "Serialization.h"
int main() {
std::stringstream out;
academia::JsonSerializer serialize(&out);
academia::Room room {20,"h-24",academia::Room::Type::COMPUTER_LAB};
room.Serialize(&serialize);
std::cout;
return 0;
}
|
e33d986331ad6cb392bd807f43afe3a730eb34f7 | a1809f8abdb7d0d5bbf847b076df207400e7b08a | /Simpsons Hit&Run/game/libs/sim/simcollision/subcollisiondetector.cpp | 05addb3434c8e56512e6a6580c52e94f2336d428 | [] | no_license | RolphWoggom/shr.tar | 556cca3ff89fff3ff46a77b32a16bebca85acabf | 147796d55e69f490fb001f8cbdb9bf7de9e556ad | refs/heads/master | 2023-07-03T19:15:13.649803 | 2021-08-27T22:24:13 | 2021-08-27T22:24:13 | 400,380,551 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 95,073 | cpp | subcollisiondetector.cpp |
#include "simcollision/subcollisiondetector.hpp"
#include "simcollision/collision.hpp"
#include "simcommon/simmath.hpp"
using namespace RadicalMathLibrary;
namespace sim
{
// testing stuff
//#define TEST_VECTOR
//#define TEST_COLL
SubCollisionDetector::SubCollisionDetector()
:
mCollisionDistance(0),
mMinCollisionDistance(0),
mSphereApproxA(false),
mSphereApproxB(false),
mCollisionList(NULL)
{
SetCollisionFilter(FILTER_BY_POSITION | FILTER_BY_DEPTH);
//SetCollisionFilter(FILTER_NO_FILTERING);
//SetCollisionFilter(FILTER_BY_POSITION);
}
SubCollisionDetector::~SubCollisionDetector()
{
}
// test for collision between the faces of volA with the Corner of volB
void SubCollisionDetector::OBBoxV(OBBoxVolume* volA, OBBoxVolume* volB)
{
Vector p, pa;
float np[4][3], nt[3];
float sgn, dist, dist2, dist3;
float dst[4][3];
int i, j;
mT.Sub(volB->mPosition, volA->mPosition);
// since these dot products are used at least 4 times, they are temporarilly stored
if (volA->mAxisOrientation == VolAxisNotOriented)
{
for (i=0; i<3; i++)
{
nt[i] = mT.DotProduct(volA->mAxis[i]);
}
for (j=0; j<4; j++)
{
volB->Corner(p, j);
for (int i=0; i<3; i++)
{
np[j][i] = p.DotProduct(volA->mAxis[i]);
// dst is the penetration distance of the vertex j in the face i
// the Fabs(np) allows to test for two opposite corner at the same time
// the Fabs(nt) allow to test for two faces at the same time
dst[j][i] = Fabs(nt[i]) - (Fabs(np[j][i]) + volA->mLength[i]);
}
}
}
else
{
(*(rmt::Vector*)nt) = mT;
for (j=0; j<4; j++)
{
volB->Corner((*(rmt::Vector*)np[j]), j);
for (int i=0; i<3; i++)
{
// dst is the penetration distance of the vertex j in the face i
// the Fabs(np) allows to test for two opposite corner at the same time
// the Fabs(nt) allow to test for two faces at the same time
dst[j][i] = Fabs(nt[i]) - (Fabs(np[j][i]) + volA->mLength[i]);
}
}
}
int order[3];
for (j=0; j<4; j++)
{
FindFaceIndexOrder(order, dst[j][0], dst[j][1], dst[j][2]);
for (int ii=0; ii<3; ii++)
{
i = order[ii];
dist = dst[j][i];
sgn = ((-nt[i] * np[j][i]) < 0.f )? -1.f : 1.f;
volB->Corner(p,j);
p.ScaleAdd(mT,sgn,p); //from center of A to corner.
float pDotAxis = p.DotProduct(volA->mAxis[i]);
// to avoid false collision on large thin boxes
if (dist < 0.0f && Fabs(pDotAxis) > volA->mLength[i])
continue;
if (dist <= mCollisionDistance && (dist > -2*volA->mLength[i] || nt[i]*pDotAxis<0.0f) )
{
// make sure the vertex cross the face plane inside the face
int ni = NXTI(i);
dist2 = Fabs(nt[ni] + (sgn * np[j][ni])) - volA->mLength[ni];
// mCollisionDistance allow to catch collision between a vertex and an edge or another vertex
// if dist < 0, interpenetration, do not need the border collision
if ( dist2 <= (dist > 0 ? mMinCollisionDistance : 0))
{
ni = NXTI(ni);
dist3 = Fabs(nt[ni] + (sgn * np[j][ni])) - volA->mLength[ni];
if ( dist3 <= (dist > 0 ? mMinCollisionDistance : 0))
{
float sgn2 = (nt[i] < 0.f)? -1.f : 1.f;
// we have a collision...
volB->Corner(p, j); // mPosition +/- p correspond to two opposite corner of the OBBox
p.ScaleAdd(volB->mPosition, sgn, p); // use sgn to get to good 1.0f
pa.ScaleAdd(p, -sgn2 * dist, volA->mAxis[i]); // position on the face
Vector N;
if ( mCollisionDistance == mMinCollisionDistance &&
(dist > 0 && (dist2 > 0 || dist3 > 0) ) &&
(Sqr(dist)+Sqr(dist2>0?dist2:0)+Sqr(dist3>0?dist3:0)) > MILLI_EPS)
{
// we have a border collision, pa is then a little outside the face and needs to be adjusted
OBBoxBorderCollMove(volA, pa, dist2, dist3, i);
N.Sub(pa, p);
dist = N.NormalizeSafe();
rAssert(dist!=0.0f);
}
else
{
N.Scale(-sgn2, volA->mAxis[i]);
}
/*
const char* nameA = volA->GetCollisionObject()->GetName();
const char* nameB = volB->GetCollisionObject()->GetName();
if(strcmp(nameA, "otto_v") == 0 && strcmp(nameB, "cSedan") == 0)
{
rDebugPrintf("\n@@@ OBBoxV called AddCollision");
}
else if(strcmp(nameB, "otto_v") == 0 && strcmp(nameA, "cSedan") == 0)
{
rDebugPrintf("\n@@@ OBBoxV called AddCollision");
}
*/
AddCollision(volA, pa, volB, p, dist, N);
break; // a vertex can collide with only 1 face at a time
}
}
}
}
}
}
void SubCollisionDetector::OBBoxBorderCollMove(OBBoxVolume* vol, Vector& pos, float dist2, float dist3, int i)
{
Vector tmp;
float sgn;
int ni = NXTI(i);
tmp.Sub(pos, vol->mPosition);
if (dist2 > 0)
{
sgn = -Sign(tmp.DotProduct(vol->mAxis[ni]));
pos.ScaleAdd(sgn * dist2, vol->mAxis[ni]);
}
if (dist3 > 0)
{
ni = NXTI(ni);
sgn = -Sign(tmp.DotProduct(vol->mAxis[ni]));
pos.ScaleAdd(sgn * dist3, vol->mAxis[ni]);
}
}
void SubCollisionDetector::OBBoxEE(OBBoxVolume* volA, OBBoxVolume* volB)
{
Vector N;
float nt, nn;
bool hasCollided = false;
mT.Sub(volB->mPosition, volA->mPosition);
for (int i=0; i<3; i++)
{
for (int j=0; j<3; j++)
{
N.CrossProduct(volA->mAxis[i], volB->mAxis[j]);
N.Scale(volA->mLength[i] * volB->mLength[j]);
nn = N.DotProduct(N);
if (nn > VERY_SMALL) // else edges are parallel... the vertex-edges collision are handled throw OBBoxV
{
nt = mT.DotProduct(N);
if (Fabs(nt) > VERY_SMALL) // else no collision possible between these edges
{
nn = Sqrt(nn);
float invn = 1.0f/nn;
nt = nt * invn; // distance between box center along N, the collision normal
// there is 4 parallel edges in a cube, we do 2 at a time on each box
int ii[4];
Vector pa[4], pb[4];
float npa[4], npb[4], dist[4];
int kl=0;
for (int k=0; k<2; k++)
{
for (int l=0; l<2; l++, kl++)
{
volA->Side(pa[kl], i, k);
volB->Side(pb[kl], j, l);
npa[kl] = pa[kl].DotProduct(N) * invn;
npb[kl] = pb[kl].DotProduct(N) * invn;
dist[kl] = Fabs(nt) - (Fabs(npa[kl]) + Fabs(npb[kl]));
}
}
FindSizeOrder4( ii, dist );
for ( kl = 3 ; kl>=0 ; kl-- )
{
int ind = ii[kl];
float mindist = Min(Fabs(npa[ind]), Fabs(npb[ind]));
// Strict test
if (Fabs(npa[ind]) > VERY_SMALL && Fabs(npb[ind]) > VERY_SMALL && dist[ind] < mCollisionDistance && dist[ind] > -mindist) // else, no collision possible between these axes
{
if (nt * npa[ind] < 0)
pa[ind].Scale(-1.0f); // identify the correct side on a
if (-nt * npb[ind] < 0)
pb[ind].Scale(-1.0f); // identify the correct side on b
EdgeEdge(hasCollided, pa[ind], volA->mAxis[i], volA->mLength[i], pb[ind], volB->mAxis[j], volB->mLength[j], N, nn, dist[ind], volA, volB);
if (mNewColl>3)
break;
}
}
}
}
}
}
// only do lax test if we're a car (1) hitting a redBrickPhizMoveable (131072) or a StateProp (262146)
if (!hasCollided &&
( (volA->GetCollisionObject()->GetSimState()->mAIRefIndex == 1 && (volB->GetCollisionObject()->GetSimState()->mAIRefIndex == 131072 ||
volB->GetCollisionObject()->GetSimState()->mAIRefIndex == 262146))
||
(volB->GetCollisionObject()->GetSimState()->mAIRefIndex == 1 && (volA->GetCollisionObject()->GetSimState()->mAIRefIndex == 131072 ||
volA->GetCollisionObject()->GetSimState()->mAIRefIndex == 262146)) ))
{
for (int i=0; i<3; i++)
{
for (int j=0; j<3; j++)
{
N.CrossProduct(volA->mAxis[i], volB->mAxis[j]);
N.Scale(volA->mLength[i] * volB->mLength[j]);
nn = N.DotProduct(N);
if (nn > VERY_SMALL) // else edges are parallel... the vertex-edges collision are handled throw OBBoxV
{
nt = mT.DotProduct(N);
if (Fabs(nt) > VERY_SMALL) // else no collision possible between these edges
{
nn = Sqrt(nn);
float invn = 1.0f/nn;
nt = nt * invn; // distance between box center along N, the collision normal
// there is 4 parallel edges in a cube, we do 2 at a time on each box
int ii[4];
Vector pa[4], pb[4];
float npa[4], npb[4], dist[4];
int kl=0;
for (int k=0; k<2; k++)
{
for (int l=0; l<2; l++, kl++)
{
volA->Side(pa[kl], i, k);
volB->Side(pb[kl], j, l);
npa[kl] = pa[kl].DotProduct(N) * invn;
npb[kl] = pb[kl].DotProduct(N) * invn;
dist[kl] = Fabs(nt) - (Fabs(npa[kl]) + Fabs(npb[kl]));
}
}
FindSizeOrder4( ii, dist );
for ( kl = 3 ; kl>=0 ; kl-- )
{
int ind = ii[kl];
float mindist = Min(Fabs(npa[ind]), Fabs(npb[ind]));
// Lax test
if (Fabs(npa[ind]) > VERY_SMALL && Fabs(npb[ind]) > VERY_SMALL && dist[ind] < mCollisionDistance) // else, no collision possible between these axes
{
if (nt * npa[ind] < 0)
pa[ind].Scale(-1.0f); // identify the correct side on a
if (-nt * npb[ind] < 0)
pb[ind].Scale(-1.0f); // identify the correct side on b
EdgeEdge(hasCollided, pa[ind], volA->mAxis[i], volA->mLength[i], pb[ind], volB->mAxis[j], volB->mLength[j], N, nn, dist[ind], volA, volB);
if (mNewColl>3)
break;
}
}
}
}
}
}
}
}
// OBBox interference test, adaptation from Gottschaclk, Lin & Manocha, "OBBTree..." Siggraph 96
bool SubCollisionDetector::OBBoxSepPlane(OBBoxVolume* volA, OBBoxVolume* volB)
{
// go quickly throw the 15 tests to find separation plane starting with the vertex-face cause its faster
float projection;
// 3 tests with faces of 'a' and 3 tests with faces of 'b'
int i;
for (i=0; i<3; i++)
{
projection = volB->Projection(volA->mAxis[i]) + volA->mLength[i];
if (Fabs(mT.DotProduct(volA->mAxis[i])) > mCollisionDistance + projection)
return true;
projection = volA->Projection(volB->mAxis[i]) + volB->mLength[i];
if (Fabs(mT.DotProduct(volB->mAxis[i])) > mCollisionDistance + projection)
return true;
}
// 9 pairs of edges to test
Vector axe;
for (i=0; i<3; i++)
{
for (int j=0; j<3; j++)
{
axe.CrossProduct(volA->mAxis[i], volB->mAxis[j]);
if (mCollisionDistance > 0)
axe.Normalize();
projection = volA->Projection(axe, i) + volB->Projection(axe, j);
if (Fabs(mT.DotProduct(axe)) > mCollisionDistance + projection)
return true;
}
}
return false;
}
// detect collision between the two given edges
bool SubCollisionDetector::EdgeEdge(bool &hasCollided, Vector& pa, Vector& oa, float la, Vector& pb, Vector& ob, float lb, Vector& N, float nn,
float dist, CollisionVolume* volA, CollisionVolume* volB)
{
Vector dp;
dp.Sub(pb, pa);
dp.Add(mT); // vector between center of edge a and center of edge b
float kb;
Vector tmp;
tmp.CrossProduct(dp, N);
nn = 1.0f/(Sqr(nn));
kb = la * tmp.DotProduct(oa) * nn;//This is the same thing as projecting dp along oax(oaxob)
if (Fabs(kb) <= 1.0f) // or the edges projection on the perpendicular plane don't intersect
{
float ka;
ka = lb * tmp.DotProduct(ob) * nn;//This is the same thing as projecting dp along obx(oaxob)
if (Fabs(ka) <= 1.0f) // or the edges projection on the perpendicular plane don't intersect
{
// should have a collision
if (volA != NULL && volB != NULL)
{
pa.Add(volA->mPosition);
pb.Add(volB->mPosition);
pa.ScaleAdd(-ka * la, oa);
pb.ScaleAdd(-kb * lb, ob);
dp.Sub(pa, pb);
float dd = dp.NormalizeSafe();
if (dd < VERY_SMALL)
{
// can't compute a normal... would be better to compute a new normal
return false;
}
if (dist < 0) // make sure N is correctly oriented
{
dd = -dd;
dp.Scale(-1.0f);
}
AddCollision(volA, pa, volB, pb, dd, dp);
/*
const char* nameA = volA->GetCollisionObject()->GetName();
const char* nameB = volB->GetCollisionObject()->GetName();
if(strcmp(nameA, "otto_v") == 0 && strcmp(nameB, "cSedan") == 0)
{
rDebugPrintf("\n@@@ EdgeEdge called AddCollision");
}
else if(strcmp(nameB, "otto_v") == 0 && strcmp(nameA, "cSedan") == 0)
{
rDebugPrintf("\n@@@ EdgeEdge called AddCollision");
}
*/
hasCollided = true;
#ifdef TEST_VECTOR
dp.Sub(pa, pb);
ka = Fabs(dp.DotProduct(oa));
kb = Fabs(dp.DotProduct(ob));
if (ka > VERY_SMALL || kb > VERY_SMALL)
{
kb=0; // fuck
}
#endif // TEST_VECTOR
}
return true;
}
}
return false;
}
bool SubCollisionDetector::PointBoxColl
(
OBBoxVolume *vol,
Vector& pp, //input: position of the point. output: contact's posisition on the sphere.
Vector* pa, //contact's position on the box. May be Null if getpos is false.
Vector* n, //contact's Normal on output. May be Null if getpos is false.
float &dist,
float radius,
bool getpos)
{
rAssert( !getpos || (pa && n) );
Vector dp;
float ndp[3];
float borderDist = radius + mMinCollisionDistance;
float dst[3];
dp.Sub(pp, vol->mPosition);
int i;
if (vol->mAxisOrientation == VolAxisNotOriented)
{
for (i=0; i<3; i++)
{
ndp[i] = dp.DotProduct(vol->mAxis[i]);
dst[i] = Fabs(ndp[i]) - radius - vol->mLength[i];
}
}
else
{
(*(rmt::Vector*)ndp) = dp;
dst[0] = Fabs(ndp[0]) - radius - vol->mLength[0];
dst[1] = Fabs(ndp[1]) - radius - vol->mLength[1];
dst[2] = Fabs(ndp[2]) - radius - vol->mLength[2];
}
int order[3];
FindFaceIndexOrder(order, dst[0], dst[1], dst[2]);
float mindist = Min(radius, vol->mLength[order[0]]);
if (dst[order[0]] < mCollisionDistance && dst[order[0]] < -mindist)
{
// the sphere is completely inside, return the collision toward the closest face
if (getpos)
{
i = order[0];
*pa = pp;
n->Scale(-Sign(ndp[i]),vol->mAxis[i]);
pa->ScaleAdd( (dst[i]+radius), *n); // position on the face
pp.ScaleAdd ( radius, *n); // position on the sphere
dist = dst[i];
}
return true;
}
for (int ii=0; ii<3; ii++)
{
// the Fabs(ndp) allows to test for the two opposite face of the cube at the same time
i = order[ii];
dist = dst[i];
mindist = Min(radius, vol->mLength[i]);
if (dist < mCollisionDistance && dist > -mindist)
{
// make sure the vertex cross the face plane inside the face + its border
int ni = NXTI(i);
float d2 = Max(0.0f, Fabs(ndp[ni]) - vol->mLength[ni]);
if (d2 <= borderDist)
{
ni = NXTI(ni);
float d3 = Max(0.0f, (Fabs(ndp[ni]) - vol->mLength[ni]));
if (d3 <= borderDist)
{
if (d2 > 0 || d3 > 0)
{
dist = Sqrt(Sqr(dist+radius) + Sqr(d2) + Sqr(d3)) - radius;
}
if (dist < mCollisionDistance)
{
if (getpos)
{
float sign = -Sign(ndp[i]);
*pa = pp;
pa->ScaleAdd( sign * (dst[i]+radius), vol->mAxis[i]); // position on the face
if ( (d2 > 0 || d3 > 0 ) && (dist + radius) > MILLI_EPS )
{
OBBoxBorderCollMove(vol, *pa, d2, d3, i);
n->Sub(*pa, pp);
n->NormalizeSafe();
pp.ScaleAdd( radius, *n );
}
else
{
n->Scale( sign, vol->mAxis[i]);
pp.ScaleAdd (radius, *n); // position on the face
}
}
return true;
}
}
}
}
}
return false;
}
void SubCollisionDetector::FindFaceIndexOrder(int* i, float d0, float d1, float d2) const
{
if (d0 == d1 && d0 == d2)
{
i[0] = 0; i[1] = 1; i[2] = 2;
}
else
{
i[0] = (d0>=d1 && d0>=d2 ? 0 : (d1>=d2 && d1>=d0 ? 1 : 2));
i[2] = (d0<d1 && d0<d2 ? 0 : (d1<d2 && d1<d0 ? 1 : 2));
i[1] = (i[0] != 0 && i[2] != 0 ? 0 : (i[0] != 1 && i[2] != 1 ? 1 : 2));
}
}
void SubCollisionDetector::FindSizeOrder4(int i[], float d[]) const
{
if ( d[0] >= d[1] && d[0] >= d[2] && d[0] >= d[3] )
{
i[0] = 0;
FindFaceIndexOrder( i+1, d[1], d[2], d[3] );
i[1] += 1;
i[2] += 1;
i[3] += 1;
}
else if (d[1] >= d[0] && d[1] >= d[2] && d[1] >= d[3] )
{
i[0] = 1;
FindFaceIndexOrder( i+1, d[0], d[2], d[3] );
if(i[1]>0) i[1] += 1;
if(i[2]>0) i[2] += 1;
if(i[3]>0) i[3] += 1;
}
else if (d[2] >= d[0] && d[2] >= d[1] && d[2] >= d[3] )
{
i[0] = 2;
FindFaceIndexOrder( i+1, d[0], d[1], d[3] );
if(i[1]>1) i[1] += 1;
if(i[2]>1) i[2] += 1;
if(i[3]>1) i[3] += 1;
}
else
{
i[0] = 3;
FindFaceIndexOrder( i+1, d[0], d[1], d[2] );
if(i[1]>2) i[1] += 1;
if(i[2]>2) i[2] += 1;
if(i[3]>2) i[3] += 1;
}
}
// test for collision between the faces of a box with the cylinder
void SubCollisionDetector::OBBoxCylF(OBBoxVolume* volA, CylinderVolume* volB)
{
float nt[3];
int i;
if (volA->mAxisOrientation == VolAxisNotOriented)
{
for (i=0; i<3; i++)
{
nt[i] = mT.DotProduct(volA->mAxis[i]);
}
}
else
{
(*(rmt::Vector*)nt) = mT;
}
for (i=0; i<3; i++)
{
float dist = Fabs(nt[i]) - volA->mLength[i];
if (dist > 0 && dist < volB->mSphereRadius + mCollisionDistance) // else, no collision possible on these faces or we're deep into it
{
bool completed = false;
bool firstSide = true;
float sgn = Sign(nt[i]);
float sgna = sgn;
float dotAxis = volB->mAxis.DotProduct(volA->mAxis[i]);
while(!completed)
{
Vector pb, tmp1, tmp2;
pb.Scale(volB->mLength * sgna * Sign(dotAxis), volB->mAxis); // vector from mPosition to the center of the circle
tmp1.CrossProduct(volA->mAxis[i], volB->mAxis);
tmp2.CrossProduct(volB->mAxis, tmp1);
tmp2.Normalize();
pb.ScaleAdd(sgn * volB->mCylinderRadius, tmp2); // the point on the cyl
float dist2 = Fabs(pb.DotProduct(volA->mAxis[i]));
dist -= dist2;
if (dist <= mCollisionDistance)// && dist > -volB->mCylinderRadius)
{
// make sure the vertex cross the face plane inside the face
int ni = NXTI(i);
dist2 = Fabs(nt[ni] - pb.DotProduct(volA->mAxis[ni])) - volA->mLength[ni];
if ( dist2 <= 0)
{
ni = NXTI(ni);
float dist3 = Fabs(nt[ni] - pb.DotProduct(volA->mAxis[ni])) - volA->mLength[ni];
if ( dist3 <= 0)
{
// we have a collision...
pb.Add(volB->mPosition);
Vector pa;
pa.Scale(sgn * dist, volA->mAxis[i]);
pa.Add(pb); // position on the face
Vector N;
N.Scale(sgn, volA->mAxis[i]);
AddCollision(volA, pa, volB, pb, dist, N);
}
}
}
// this will make the detector to look for a second collision on the same face
// with the other extremity of the cylinder. 2 collision might be added if the
// cylinder if flat on the face. the goal is to make the sim more stable and to
// get to rest faster
if (firstSide && dist + 2.0f*volB->mLength*Fabs(dotAxis) <= mCollisionDistance)
{
sgna = -sgna;
dist = Fabs(nt[i]) - volA->mLength[i];
firstSide = false;
}
else
{
completed = true;
}
}
}
}
}
// collision of the box vertices with the cylinder
void SubCollisionDetector::OBBoxCylV(OBBoxVolume* volA, CylinderVolume* volB)
{
Vector pa, pb, dp;
float dist, dist2, dist3;
float rad = (volB->mFlatEnd ? 0 : volB->mCylinderRadius);
bool collide = false;
for (int j=0; j<4; j++)
{
volA->Corner(pa, j);
dist = pa.DotProduct(mT);
if (Fabs(dist) > VERY_SMALL)
{
if (dist > 0)
pa.Scale(-1.0f);
dp.Add(mT, pa); // mT = volA->mPosition - volB->mPosition => dp is the vector from the corner to volB->mPosition
dist2 = dp.DotProduct(volB->mAxis);
dist3 = Fabs(dist2) - volB->mLength;
if (dist3 - rad <= mCollisionDistance) // longitudinal distance
{
mNormal.Scale(-dist2, volB->mAxis);
mNormal.Add(dp); // from the cyl axis to pa
dist = mNormal.Magnitude();
dist -= volB->mCylinderRadius; //dist = Fabs(mNormal.DotProduct(dp)) - volB->mCylinderRadius;
if (dist <= mCollisionDistance) // radial distance
{
if (!volB->mFlatEnd && Fabs(dist2) >= volB->mLength)
{
//In the half-sphere.
mNormal.Scale(-Sign(dist2) * volB->mLength, volB->mAxis);
mNormal.Add(dp); // from pa to center of sphere
dist = mNormal.NormalizeSafe() - volB->mCylinderRadius;
if (dist <= mCollisionDistance)
{
collide = true;
pa.Add(volA->mPosition);
pb.Scale(-dist, mNormal);
pb.Add(pa);
}
}
else
{
pa.Add(volA->mPosition); // absolute position of box corner
if( volB->mFlatEnd && dist3 > -mCollisionDistance ) // collision with the cyl end
{
collide = true; // we have a collision...
mNormal.Scale( Sign(dist2), volB->mAxis );
pb.ScaleAdd( pa, -dist3, mNormal);
dist = dist3;
}
else if (dist != -volB->mCylinderRadius) // else the vertex is exactly on the axis, don't know the collision orientation, could use the speed...
{
collide = true; // we have a collision...
// collision with the side
mNormal.Scale(-1.0f/(dist+volB->mCylinderRadius)); // dist+volB->mCylinderRadius is the norme of mNormal
pb.Scale(dist, mNormal);
pb.Add(pa);
if (dist3 > 0)
{
// collision with the circle, pb must be moved
pb.ScaleAdd(-Sign(dist2) * dist3, volB->mAxis);
mNormal.Sub(pa, pb);
dist = mNormal.NormalizeSafe();
}
else
mNormal.Scale(-1.0f);
}
}
if (collide)
{
AddCollision(volA, pa, volB, pb, dist, mNormal);
//break; // a vertex can collide with only 1.0f face at a time
collide = false;
}
}
}
}
}
}
void SubCollisionDetector::OBBoxCylEE(OBBoxVolume* volA, CylinderVolume* volB)
{
Vector pa, pb, N;
float npa, npb, nt, nn;
float dist;
mT.Sub(volB->mPosition, volA->mPosition);
bool hasCollided = false;
for (int i=0; i<3; i++)
{
N.CrossProduct(volA->mAxis[i], volB->mAxis);
N.Scale(volA->mLength[i] * volB->mLength);
nn = N.DotProduct(N);
if (nn > VERY_SMALL) // else edges are parallel... the vertex-edges collision are handled throw OBBoxV
{
nt = mT.DotProduct(N);
if (Fabs(nt) > VERY_SMALL) // else no collision possible between these edges
{
nn = Sqrt(nn);
float invn = 1.0f/(nn);
nt = nt * invn; // distance between box center and cyl axis along N, the collision normal
//spb.Scale(volB->mCylinderRadius/nn, N);
npb = volB->mCylinderRadius;
// there is 4 parallel edges in a cube, we do 2 at a time on the box
for (int k=0; k<2; k++)
{
volA->Side(pa, i, k);
npa = pa.DotProduct(N) * invn;
dist = Fabs(nt) - (Fabs(npa) + npb);
float mindist = Min(Fabs(npa), volB->mCylinderRadius);
// greg, june 16 2003
// after nearly a week of debugging, with Stan's help, I get to comment out the last bit of this test so that if a capsule is wholly inside the box
// strict test
if (Fabs(npa) > VERY_SMALL /*&& Fabs(npb) > VERY_SMALL*/ && dist < mCollisionDistance && dist > -mindist) // else, no collision possible between these axes
{
if (nt * npa < 0)
pa.Scale(-1.0f); // identify the correct side on a
pb.Scale((nt > 0 ? -volB->mCylinderRadius * invn : volB->mCylinderRadius * invn), N); // identify the correct side on b
EdgeEdge(hasCollided, pa, volA->mAxis[i], volA->mLength[i], pb, volB->mAxis, volB->mLength, N, nn, dist, volA, volB);
}
}
}
}
}
// sweet magic numbers :)
//if(!hasCollided && !volB->mCharacter) // player character // npc character
if(!hasCollided &&
// we're not a character
(
( !( (volB->GetCollisionObject()->GetSimState()->mAIRefIndex == 131073) || (volB->GetCollisionObject()->GetSimState()->mAIRefIndex == 131074) ) )
||
// we're a vehicle moving at non-trivial speed
(volA->GetCollisionObject()->GetSimState()->mAIRefIndex == 1 && (volA->GetCollisionObject()->GetSimState()->GetLinearVelocity()).MagnitudeSqr() > 25.0f)
)
)
{
// redo test with lax test
for (int i=0; i<3; i++)
{
N.CrossProduct(volA->mAxis[i], volB->mAxis);
N.Scale(volA->mLength[i] * volB->mLength);
nn = N.DotProduct(N);
if (nn > VERY_SMALL) // else edges are parallel... the vertex-edges collision are handled throw OBBoxV
{
nt = mT.DotProduct(N);
if (Fabs(nt) > VERY_SMALL) // else no collision possible between these edges
{
nn = Sqrt(nn);
float invn = 1.0f/(nn);
nt = nt * invn; // distance between box center and cyl axis along N, the collision normal
//spb.Scale(volB->mCylinderRadius/nn, N);
npb = volB->mCylinderRadius;
// there is 4 parallel edges in a cube, we do 2 at a time on the box
for (int k=0; k<2; k++)
{
volA->Side(pa, i, k);
npa = pa.DotProduct(N) * invn;
dist = Fabs(nt) - (Fabs(npa) + npb);
float mindist = Min(Fabs(npa), volB->mCylinderRadius);
// lax test
if (Fabs(npa) > VERY_SMALL /*&& Fabs(npb) > VERY_SMALL*/ && dist < mCollisionDistance)// && dist > -mindist) // else, no collision possible between these axes
{
if (nt * npa < 0)
pa.Scale(-1.0f); // identify the correct side on a
pb.Scale((nt > 0 ? -volB->mCylinderRadius * invn : volB->mCylinderRadius * invn), N); // identify the correct side on b
EdgeEdge(hasCollided, pa, volA->mAxis[i], volA->mLength[i], pb, volB->mAxis, volB->mLength, N, nn, dist, volA, volB);
}
}
}
}
}
}
}
void SubCollisionDetector::OBBoxCylEC(OBBoxVolume* volA, CylinderVolume* volB)
{
float nft = mT.DotProduct(volB->mAxis);
// if (Fabs(nft) < volB->mLength) return;
Vector pa;
float no;
for (int i=0; i<3; i++)
{
no = volA->mAxis[i].DotProduct(volB->mAxis) * volA->mLength[i];
for (int k=0; k<2; k++)
{
volA->Side(pa, i, k);
CircleEdge(volA, pa, volA->mAxis[i], volA->mLength[i], volB, nft, no, false );
}
}
}
bool SubCollisionDetector::OBBoxCylSepPlane(OBBoxVolume* volA, CylinderVolume* volB)
{
if (!volB->mFlatEnd )
{
Vector pb;
float dist;
pb.Scale(volB->mLength, volB->mAxis);
pb.Add(volB->mPosition);
if (PointBoxColl(volA, pb, NULL, NULL, dist, volB->mCylinderRadius, false))
return false;
pb.Scale(-volB->mLength, volB->mAxis);
pb.Add(volB->mPosition);
if (PointBoxColl(volA, pb, NULL, NULL, dist, volB->mCylinderRadius, false))
return false;
}
float projection, p;
// as we know at that point that there is no coll with the sphere (if mFlatEnd ),
// we don't need to include volB->mCylinderRadius in the projection
p = volA->Projection(volB->mAxis) + volB->mLength;
if (Fabs(mT.DotProduct(volB->mAxis)) > mCollisionDistance + p)
return true;
// 3 tests with faces of 'a'
float a;
int i;
for (i=0; i<3; i++)
{
a = Fabs(volA->mAxis[i].DotProduct(volB->mAxis));
projection = a * volB->mLength + Sqrt(1.0f-Sqr(a)) * volB->mCylinderRadius + volA->mLength[i];
if (Fabs(mT.DotProduct(volA->mAxis[i])) > mCollisionDistance + projection)
return true;
}
// 3 pairs of edges to test
Vector axe;
for (i=0; i<3; i++)
{
axe.CrossProduct(volA->mAxis[i], volB->mAxis);
if (mCollisionDistance > 0) axe.Normalize();
projection = volA->Projection(axe, i) + volB->mCylinderRadius;
if (Fabs(mT.DotProduct(axe)) > mCollisionDistance + projection)
return true;
}
return false;
}
void SubCollisionDetector::CircleEdge(CollisionVolume* volA, Vector& pa, Vector& oa, float la, CylinderVolume* volB, float nft, float no, bool use_all_inside )
{
if( la <= MICRO_EPS ) //edge length is too small. No edge circle collision.
return;
if (mT.DotProduct(pa) > 0)
pa.Scale(-1.0f); // Choose the appropriate side.
Vector pb; // From center of cyl to center of edge.
bool all_inside; // Edge projected on mAxis is shorter than mLength.
float tc, interp;
float fOoa = Fabs(volB->mAxis.DotProduct( oa ));
float npa = pa.DotProduct(volB->mAxis);
// A segment is seen as a degenerated obox with two sides having zero length.
// mT + pa represent the vector position of the obox relative to the cylinder B.
// First criterial to have intersection is to see if the axis of the cylinder is
// a seperating axis. no is the radius of the obox with respect the cylinder axis.
// volB->mLength is the radius of the cylinder with respect to the cylinder axis.
// interp is the difference between the projected distance of the two objects on
// the separating axis and the sum of the radius.
tc = Fabs( nft + npa ); // Projected distance.
interp = tc - ( volB->mLength + Fabs(no) );
if( interp <= mCollisionDistance )
{
// If all_inside == true, the projected edge on the cylinder's axis is all inside the cylinder.
all_inside = tc + Fabs(no) < volB->mLength;
if( fOoa >= 1.0f-MILLI_EPS && !all_inside )
{ // the edge is parallel to the circle's normal.
pb.Add(pa, mT);
no = pb.DotProduct(volB->mAxis);
float dn = Fabs(no) - la - volB->mLength;
if ( dn <= mCollisionDistance )
{
float depth;
float nr = pb.DotProduct(pb) - Sqr(no);
if( nr <= Sqr(volB->mCylinderRadius + mCollisionDistance) )
{ // collision
if( nr >= MICRO_EPS && nr < Sqr(dn) )
{
// Chose normal along a radius
mNormal.ScaleAdd( pb, -no, volB->mAxis );
float sign = Sign(mNormal.DotProduct(pa));
pa.ScaleAdd( mNormal, Sign(no)*volB->mLength, volB->mAxis );
pa.Add( volB->mPosition );
depth = mNormal.NormalizeSafe();
if( sign < 0.0f || mNormal.DotProduct(mT) > 0.0f )
{
depth -= volB->mCylinderRadius;
}
else
{
depth = -(depth + volB->mCylinderRadius);
mNormal.Scale(-1.0f);
}
pb.ScaleAdd( pa, -depth, mNormal );
}
else
{
// The normal is along the axis of the cylinder
float s1 = Sign(no);
pa.ScaleAdd(pb, -Sign(pb.DotProduct(oa))*la, oa );
pa.Add( volB->mPosition );
pb.ScaleAdd( pa, -s1*dn, volB->mAxis );
mNormal.Scale( s1, volB->mAxis );
depth = dn;
}
AddCollision(volA, pa, volB, pb, depth, mNormal);
}
}
}
else if( fOoa/la <= MILLI_EPS )// The numerical precision make difficult to trap this case. Here, we devide by la but this is not correct.
{
// circle's normal perp to the edge
float pbfo, dn;
pb.Add(mT,pa); //Center's cylinder to edge middle point.
pbfo = pb.DotProduct(volB->mAxis);
dn = Fabs(pbfo) - volB->mLength; //depth along the cylinder's normal.
if( dn <= mCollisionDistance )
{
float dr;
mNormal.CrossProduct(volB->mAxis, oa);
dr = Fabs(pb.DotProduct(mNormal));
if( dr <= mCollisionDistance + volB->mCylinderRadius )
{
//Does the segment overlaps the circle?
float pboa;
float da = Sqr(volB->mCylinderRadius + mCollisionDistance) - Sqr(dr);
rAssert( da >= 0.0f );
if( da < 0 )
return;
da = Sqrt(da);
pboa = pb.DotProduct(oa);
float t1oa=pboa+la, t2oa=pboa-la, sign_t1t2 = Sign(t1oa*t2oa);
if( sign_t1t2 < 0 || Fabs(t1oa) <= da || Fabs(t2oa) <= da )
{
// Collision:
dr -= volB->mCylinderRadius; //depth along circle's radius.
if( (dr > dn || Fabs(dn/volB->mLength)>0.1f) && Fabs(da-volB->mCylinderRadius) >= MICRO_EPS ) //Rembering that dr and dn are negative.
{ //Use the Normal along a radius.
if( sign_t1t2 > 0 )
{
float s1 = Fabs(t1oa) < Fabs(t2oa) ? 1.0f : -1.0f ;
pa.ScaleAdd( pb, s1*la, oa );
pb.Scale( pbfo, volB->mAxis );
mNormal.Sub( pa, pb );
dr = mNormal.NormalizeSafe()-volB->mCylinderRadius;
pa.Add(volB->mPosition);
pb.Add( volB->mPosition );
pb.ScaleAdd( volB->mCylinderRadius, mNormal );
}
else
{
if( mNormal.DotProduct(pb) < 0.0f )
mNormal.Scale(-1.0f);
pa.ScaleAdd( volB->mPosition, pbfo, volB->mAxis );
pa.ScaleAdd( dr + volB->mCylinderRadius, mNormal );
pb.ScaleAdd( volB->mPosition, Sign(pbfo)*volB->mLength, volB->mAxis );
pb.ScaleAdd( volB->mCylinderRadius, mNormal );
}
AddCollision( volA, pa, volB, pb, dr, mNormal );
}
else
{ //Use the Normal along a cylinder's axis.
if( Fabs(pboa) <= da )
{
// Center of edge is somewhere on the disk.
// Contact on edge is set at pb.
pa = pb;
}
else
{
// Collision:
// Edge overlaps da. Contact on edge is set where circle intersects the edge.
float ds;
ds = da - sign_t1t2*Min( Fabs(t1oa), Fabs(t2oa) );
rAssert( (la-ds) > 0.0f );
pa.ScaleAdd(pb, -Sign(pboa)*(la-ds), oa );
}
pa.Add( volB->mPosition );
mNormal.Scale( Sign(pbfo), volB->mAxis );
pb.Scale( -dn, mNormal );
pb.Add(pa);
AddCollision( volA, pa, volB, pb, dn, mNormal );
}
}
}
}
}
else if ( all_inside && use_all_inside )
{
// This code should not be here because we can't intersect the circle in
// this case. Edge can intersect the cylinder but this is suppose
// to be cathed elsewhere.
Vector t1; //End points of the segment
pb.Add(mT,pa); //Center's cylinder to edge middle point.
//there is potencially two cases, one for each end points of the segment.
Vector pbc; //Point of contact on volB.
for( int i=0 ; i < 2 ; i++, la *=-1 )
{
float tn, tp, dn, dp, sign;
t1.ScaleAdd( pb, la, oa );
tn = t1.DotProduct( volB->mAxis );
tp = t1.DotProduct(t1) - Sqr(tn);
if( tp > 0.0f )
tp = Sqrt( tp );
else
tp = 0.0f;
dn = Fabs(tn) - volB->mLength;
dp = tp - volB->mCylinderRadius;
if( dp < mCollisionDistance )
{
rAssert( dn <= mCollisionDistance ); //always true because of the "all inside" condition.
//collision
sign = Sign( tn );
pa.Add( volB->mPosition, t1 );
if( dn > dp )
{//Use the normal along the cylinder's axis.
mNormal = volB->mAxis;
mNormal.Scale( sign );
pbc.ScaleAdd( pa, sign*Fabs(dn), volB->mAxis );
}
else
{//Use the normal along a circle's radius.
mNormal.ScaleAdd( t1, -tn, volB->mAxis );
mNormal.NormalizeSafe();
pbc.ScaleAdd( volB->mPosition, tn, volB->mAxis );
pbc.ScaleAdd( volB->mCylinderRadius, mNormal );
dn = dp;
}
AddCollision(volA, pa, volB, pbc, dn, mNormal);
}
}
}
else
{
float oafo, pbfo, sign_pbfo, sign_oafo, sign_pboa;
float a, c2, s2, p;
pb.Add(mT,pa); //Center's cylinder to edge middle point.
pbfo = pb.DotProduct( volB->mAxis );
sign_pbfo = Sign(pbfo);
oafo = oa.DotProduct( volB->mAxis );
sign_pboa = Sign(pb.DotProduct(oa));
sign_oafo = Sign( oafo );
c2 = Sqr(oafo);
s2 = 1 - c2 ;
for( int i=0 ; i<2 ; i++ )
{
if( i==0 )
{
a = volB->mLength - pbfo;
}
else
{
a = volB->mLength + pbfo;
}
rAssert( c2 != 0.0f ); //Since edge is not perpendicular to cylinder's normal.
if( c2 == 0.0f )
continue;
p = Sqr(a)*( 1 + s2/c2 );
if( p < Sqr(la) ) // This length must be smaller than the length of the edge.
{
float sign;
sign = -sign_oafo*sign_pbfo;
if( Fabs(pbfo) < volB->mLength )
{
if( (sign_pbfo > 0 && i==0) || (sign_pbfo < 0 && i==1) )
sign *= -1;
}
pa.Scale( sign*Sqrt( p ), oa );
pa.Add( pb ); // from cyl's center to intersecting point on the disk.
mNormal.ScaleAdd( pa, -Sign(pa.DotProduct(volB->mAxis))*volB->mLength, volB->mAxis );
float dr; //Radial depth
dr = mNormal.DotProduct(mNormal);
if( dr < Sqr(volB->mCylinderRadius + mCollisionDistance) )
{
//Collision
float depth;
dr = Sqrt(dr);
Vector l_pb;
if( c2 < .5f ) // Instead of chosing the normal type with depth comparison,
{ // use the following case when the edge is more parallel than perpendicular to the circle.
//Use normal along mAxis.
//Here pa is the intersecting point between the cylinder and the edge. Let
//us calculating the one that is bellow the circle ( the infinite edge
//cross the cylinder at two points one is above the circle the other is
//bellow. We are only interesting in the bellow one ).
Vector e1, e2;
float pbe1, sign_pbe1, pbe2;
e1.CrossProduct( oa, volB->mAxis );
e1.NormalizeSafe();
pbe1 = pb.DotProduct(e1);
sign_pbe1 = Sign( pbe1 );
if( sign_pbe1 < 0 )
{
e1.Scale(-1.0f);
e2.CrossProduct( e1, volB->mAxis );
}
else
{
e2.CrossProduct( volB->mAxis, e1 );
}
e2.NormalizeSafe();
//At this poit e1, e2 anf mAxis is a right handed ortho unit frame. e1 is
//perpendicular to the oa and e2 is parallel to oa.
float oae2, s1, da;
oae2 = oa.DotProduct(e2); // Product oa.e2 guaranty to be positive and none zero.
rAssert( Sqr(volB->mCylinderRadius + mCollisionDistance ) - Sqr(pbe1) > 0 );
if( Sqr(volB->mCylinderRadius + mCollisionDistance ) - Sqr(pbe1) <= 0.0f )
continue;
//Half length of the projected segment on the disk.
da = Sqrt( Sqr(volB->mCylinderRadius + mCollisionDistance) - Sqr(pbe1) ); //Should not be zero.
float sign_pbe2;
pbe2 = pb.DotProduct(e2);
sign_pbe2 = Sign(pbe2);
pbe2 = Fabs(pbe2);
s1 = ( pbe2 > da ) ? -1.0f : 1.0f;
Vector t1, t2; //The two potential points on the edge which intersect the infinite cylinder surface.
float mpt1, mpt2;
mpt2 = pbe2 - s1*da; // Projected length on circle
mpt1 = 2*da - Fabs(mpt2);
mpt1 /= oae2;// True length on edge
mpt2 /= oae2;
if( Fabs( mpt1 ) > la ) // Clamped length
mpt1 = Sign(mpt1)*la;
if( Fabs( mpt2 ) > la )
mpt2 = Sign(mpt2)*la;
if( sign_pbe2*sign_pboa > 0 )
{
t1.ScaleAdd( pb, -sign_pboa*s1*mpt1, oa );
t2.ScaleAdd( pb, -sign_pboa*mpt2, oa );
}
else
{
t1.ScaleAdd( pb, sign_pboa*s1*mpt1, oa );
t2.ScaleAdd( pb, sign_pboa*mpt2, oa );
}
float sign_pafo = Sign( pa.DotProduct( volB->mAxis ) );
mNormal.Scale( sign_pafo, volB->mAxis );
depth = sign_pafo*t1.DotProduct( volB->mAxis ) - volB->mLength;
if( depth < mCollisionDistance*1.03f )//Need more tolerance here!!
{
pa = t1;
}
else
{
pa = t2;
depth = sign_pafo*t2.DotProduct( volB->mAxis ) - volB->mLength;
rAssert( depth < mCollisionDistance*1.03f );
if( depth >= mCollisionDistance*1.03f )
continue;
}
pa.Add( volB->mPosition );
l_pb.ScaleAdd( pa, -depth, mNormal );
}
else
{
//Use normal along the radius that connect the center of the circle to pa.
pa.Add( volB->mPosition );
if( dr != 0.0f )
mNormal.Scale( 1/dr);
else
mNormal = volB->mAxis;
depth = dr - volB->mCylinderRadius;
l_pb.ScaleAdd( pa, -depth, mNormal );
}
AddCollision( volA, pa, volB, l_pb, depth, mNormal );
}
}
}
}
}
}
// a vertex can collide with more than a face at a time. we only want the less deep collision
// we then start we the less deep and so on
void SubCollisionDetector::BoxSphereColl(OBBoxVolume* volA, CollisionVolume* volB, Vector& Pb, float rad)
{
Vector N, pa, pb = Pb;
float dist;
if (PointBoxColl(volA, pb, &pa, &N, dist, rad, true)) // true means pa will be computed
{
//Test to not add a collision that hit a capsule inside it's cylindrical part.
if (volB->Type() == CylinderVolumeType && !mSphereApproxB)
{
CylinderVolume* cyl = (CylinderVolume*)volB;
if (!cyl->mFlatEnd)
{
Vector lpb;
lpb.Sub(pb,volB->mPosition);
if (Fabs(lpb.DotProduct(cyl->mAxis)) < cyl->mLength - mMinCollisionDistance )
return;
}
}
AddCollision(volA, pa, volB, pb, dist, N);
}
}
// Return true if it exist a separating axis between the two given cylinder.
// else return false indicating that there is some collision to be detected.
bool SubCollisionDetector::CylCylSepPlane(CylinderVolume* volA, CylinderVolume* volB)
{
//test the sphere
if (!volA->mFlatEnd || !volB->mFlatEnd )
if (CylCylEnd(volA, volB, false, false)) return false;
//else the two are flat end and there is nothing special to do with ends.
// test the cyl
float projection, a, b;
a = Fabs(volA->mAxis.DotProduct(volB->mAxis));
b = Sqrt(1.0f-Sqr(a));
projection = (a * volB->mLength) + (b * volB->mCylinderRadius) + volA->mLength;
if (Fabs(mT.DotProduct(volA->mAxis)) > mCollisionDistance + projection)
return true;
projection = (a * volA->mLength) + (b * volA->mCylinderRadius) + volB->mLength;
if (Fabs(mT.DotProduct(volB->mAxis)) > mCollisionDistance + projection)
return true;
Vector axe;
axe.CrossProduct(volA->mAxis, volB->mAxis);
a = axe.Magnitude();
projection = volA->mCylinderRadius + volB->mCylinderRadius;
if (Fabs(mT.DotProduct(axe)) > a * (mCollisionDistance + projection))
return true;
return false;
}
// return true if there is collision.
// Do not use this method in attempt to search for a separating plane in the case
// where the two cylinders have flat end.
bool SubCollisionDetector::CylCylEnd(CylinderVolume* volA, CylinderVolume* volB, bool testSphereA, bool addColl)
{
Vector pb, pa, psb;
Vector *ppa, *ppb;
bool collide = false;
if (addColl)
{
ppa = &pa;
ppb = &pb;
}
else
{
ppa = ppb = NULL;
}
if( !volA->mFlatEnd && !volB->mFlatEnd )
{
//Test seperating plane or collision between the four sphere/sphere possible
//combinations.
int i, j;
Vector ca, cb, wca, wcb;
float dist, la, lb;
for( i=0, la=volA->mLength ; i<2 ; i++, la *= -1.0f )
{
for( j=0, lb=volB->mLength ; j<2 ; j++, lb *= -1.0f )
{
ca.Scale(la, volA->mAxis);
cb.Scale(lb, volB->mAxis);
wca.Add( volA->mPosition, ca );
wcb.Add( volB->mPosition, cb );
mNormal.Sub( wca, wcb ); //from sphere's center b to sphere's center a
dist = mNormal.NormalizeSafe();
if( dist <= volA->mCylinderRadius + volB->mCylinderRadius + mCollisionDistance )
{
if( ca.DotProduct(mNormal) > 0.0f )//Test only upper half-side
continue;
if( cb.DotProduct(mNormal) < 0.0f )//Test only upper half-side
continue;
collide = true;
if( addColl )
{
pa.ScaleAdd( wca, -volA->mCylinderRadius, mNormal );
pb.ScaleAdd( wcb, volB->mCylinderRadius, mNormal );
dist -= ( volA->mCylinderRadius + volB->mCylinderRadius );
AddCollision(volA, pa, volB, pb, dist, mNormal);
}
return collide;
}
}
}
}
else if( volA->mFlatEnd && volB->mFlatEnd )
{
// The two cylinders have flat ends.
// Have to look for collision between the four circle/circle possible
// combinations.
int i, j;
float la, lb, e1_m, fnfn;
Vector ca, cb;
Vector e1_e1, e1;
fnfn = volB->mAxis.DotProduct(volA->mAxis);
e1.CrossProduct( volA->mAxis, volB->mAxis );
e1_e1 = e1; // A copy of e1 not normalized.
e1_m = e1.NormalizeSafe();
for( i=0, la=volA->mLength ; i<2 ; i++, la *= -1.0f )
{
for( j=0, lb=volB->mLength ; j<2 ; j++, lb *= -1.0f )
{
ca.ScaleAdd( volA->mPosition, la, volA->mAxis );//world position of one circle.
cb.ScaleAdd( volB->mPosition, lb, volB->mAxis );//world position of the other circle.
mT.Sub( ca, cb ); //from circle's center b to circle's center a
if( la*lb*fnfn > 0 )
continue; //cercle's outward normal are in the same direction.
if( e1_m < mCollisionDistance/Max(volA->mCylinderRadius,volB->mCylinderRadius) )
{
//circles are almost parallels. Fast, simple and enough accurate.
float depth;
mNormal.Scale( Sign(lb), volB->mAxis ); //outward normal from circle b.
depth = mT.DotProduct(mNormal);
if( depth < mCollisionDistance && -depth < Min(volA->mLength,volB->mLength)*2.0f )
{
//Look for an intersection.
GEOM_CODE res;
cb.ScaleAdd( depth, mNormal);//this bring circle b in the same plane as circle a.
Vector pa2;
if( volA->mCylinderRadius < volB->mCylinderRadius )
res = CircleCircleIntersection(ca,cb,volA->mAxis,volA->mCylinderRadius,volB->mCylinderRadius,true,pa,pa2 );
else
res = CircleCircleIntersection(cb,ca,volB->mAxis,volB->mCylinderRadius,volA->mCylinderRadius,true,pa,pa2 );
if( res == NO_INTERSECTION )
continue;
collide = true;
if( addColl == false )
return true;
pb.ScaleAdd( pa, -depth, mNormal );
AddCollision(volA, pa, volB, pb, depth, mNormal );
if( res == TWO_POINTS )
{
pb.ScaleAdd( pa2, -depth, mNormal );
AddCollision(volA, pa2, volB, pb, depth, mNormal );
}
return true;
}
else
continue;
}
else
{
float ftoa, ftob, intr_a, intr_b;
ftoa = mT.DotProduct(volA->mAxis);
intr_a = Fabs(ftoa) - e1_m*volB->mCylinderRadius;
if( intr_a > mCollisionDistance )
continue;
ftob = mT.DotProduct(volB->mAxis);
intr_b = Fabs(ftob) - e1_m*volA->mCylinderRadius;
if( intr_b > mCollisionDistance )
continue;
//First two separating axes are actually not. Go further for e1 the last
//separating axis to test. But, first call PlanePlaneIntersection
//to compute the reference point to locate the axis in space.
//Chose the normal according to the deppest intersection.
bool a_collide;
if( intr_a <= intr_b )
{
a_collide = true;
mNormal.Scale( Sign(lb), volB->mAxis ); //outward normal from circle b.
}
else
{
a_collide=false;
mNormal.Scale( Sign(la), volA->mAxis ); //outward normal from circle a.
mT.Scale(-1);
}
Vector pt, c1, c2;
float b1, b2, c1_e1, c2_e1;
//e1 must be not normalized when pass in PlanePlaneIntersection.
//On return, e1 and pt define the line making the intersection of the
//two planes which support the two circles.
PlanePlaneIntersection( ca, cb, volA->mAxis, volB->mAxis, &pt, &e1_e1, false );
float dc,dp;
c1.Sub( ca, pt );
c2.Sub( cb, pt );
c1_e1 = c1.DotProduct(e1);
c2_e1 = c2.DotProduct(e1);
b1 = c1.DotProduct(c1) - Sqr(c1_e1);
b2 = c2.DotProduct(c2) - Sqr(c2_e1);
b1 = Max( 0.0f, b1 );//Can be negative only by numerical precicion error.
b2 = Max( 0.0f, b2 );
float da1, da2;
da1 = Sqr(volA->mCylinderRadius) - b1;
if( da1 > 0 )
da1 = Sqrt( da1 );
else
da1 = 0.0f;
da2 = Sqr(volB->mCylinderRadius) - b2;
if( da2 > 0 )
da2 = Sqrt( da2 );
else
da2 = 0.0f;
dc = Fabs( c1_e1-c2_e1 );//distance between the two circles on e1.
dp = dc - (da1+da2);
if( dp < mCollisionDistance )//else e1 is a separating axis
{
float depth;
Vector pa2;
GEOM_CODE res;
Vector *cap, *cbp;
CylinderVolume *Elap, *Elbp;
if( a_collide )
{
Elap = volA;
Elbp = volB;
cap = &ca;
cbp = &cb;
}
else
{
Elap = volB;
Elbp = volA;
cap = &cb;
cbp = &ca;
}
dp= 1-Sqr(e1_m);
if( dp > 0 )
dp = Sqrt(dp);
else
dp = 0.0f;
res = CircleCircleIntersection(*cbp,*cap,Elbp->mAxis,Elbp->mCylinderRadius,Elap->mCylinderRadius*dp,true,pa,pa2);
pb.Sub( pa, *cbp );
depth = pb.DotProduct(mNormal);
//Next two collisions points are not accurate at all when the two cercle's
//normals are too far from being parallel.
if( (res == ONE_POINT || res == TWO_POINTS) && depth < mCollisionDistance && e1_m<0.5f )
{
if( addColl == false )
return true;
pb.ScaleAdd( pa, -depth, mNormal );
AddCollision(Elap, pa, Elbp, pb, depth, mNormal );
}
pb.Sub( pa2, *cbp );
depth = pb.DotProduct(mNormal);
if( res == TWO_POINTS && depth < mCollisionDistance && e1_m<0.5f )
{
if( addColl == false )
return true;
pb.ScaleAdd( pa2, -depth, mNormal );
AddCollision(Elap, pa2, Elbp, pb, depth, mNormal );
}
//Now set a collision point somewhere on the colliding circle along
//one of its radius. clip to stay inside the "obstacle" cylinder.
Vector e1p;
float sign_e1p_fN;
e1p.CrossProduct( Elap->mAxis, e1 );
e1p.NormalizeSafe();
sign_e1p_fN = Sign(e1p.DotProduct(mNormal));
//Contact point relative to ca at a fraction f of ra.
//Compute f to make sure that the contact point is inside cylinder b
float f1=0.0f, f2=0.0f;
float delta, a, b, c, q;
float e1_fOb = e1p.DotProduct(Elbp->mAxis);
float T_fOb = mT.DotProduct(Elbp->mAxis);
//Here we solve the quadratic equation ax2+bx+c=0
a = Sqr(Elap->mCylinderRadius)*(1-Sqr(e1_fOb));
b = 2*Elap->mCylinderRadius*(mT.DotProduct(e1p) - e1_fOb*T_fOb);
c = mT.DotProduct(mT) - Sqr(T_fOb) - Sqr(Elbp->mCylinderRadius);
delta = Sqr(b) - 4*a*c;
if( Fabs(a*c) < MICRO_EPS )//From numerical receipes, suppose to be more accurate.
{
if( delta >= 0 )
q = -(b+Sign(b)*Sqrt(delta))/.5f;
else
q = 0.0f;
if( q == 0.0f || a == 0.0f ) //otherwise e1p and e2p are perpendicular
{
f1 = f2 = 0.0f;
if( mT.Magnitude() < Elbp->mCylinderRadius )
{
f1 = 1.0f;
f2 =-1.0f;
}
}
else
{
f1 = q/a;
if( q != 0 )
f2 = c/q;
}
}
else
{
if( delta >= 0 )
{
f1 = (-b + Sqrt(delta)) / a / 2;
f2 = (-b - Sqrt(delta)) / a / 2;
}
else
continue;
}
//Clip f1 and f2 to 1 to make sure to be inside circle a.
f1 = ( Fabs(f1) <= 1.0f ) ? f1 : Sign(f1)*1.0f;
f2 = ( Fabs(f2) <= 1.0f ) ? f2 : Sign(f2)*1.0f;
pa.ScaleAdd( *cap, f1*Elap->mCylinderRadius, e1p );
pb.Sub( pa, *cbp );
depth = pb.DotProduct(mNormal);
//keep only inside points.
if( depth < mCollisionDistance )
{
if( addColl == false )
return true;
pb.ScaleAdd( pa, -depth, mNormal );
AddCollision(Elap, pa, Elbp, pb, depth, mNormal );
}
pa.ScaleAdd( *cap, f2*Elap->mCylinderRadius, e1p );
pb.Sub( pa, *cbp );
depth = pb.DotProduct(mNormal);
if( depth < mCollisionDistance )
{
if( addColl == false )
return true;
pb.ScaleAdd( pa, -depth, mNormal );
AddCollision(Elap, pa, Elbp, pb, depth, mNormal );
}
return true;
}
}
}
}
}
else
{
//One and only one of the two cylinders is flat end.
//The none flat end cylinder must appears in the second position.
CylinderVolume *l_Ela=volA, *l_Elb=volB;
if( volB->mFlatEnd )
{
mT.Scale(-1.0f);
l_Ela=volB;
l_Elb=volA;
}
float dist, length = l_Elb->mLength;
for( int i=0 ; i<2 ; i++, length*=-1 )
{
psb.ScaleAdd(l_Elb->mPosition, length, l_Elb->mAxis);
mT.Sub(l_Ela->mPosition, psb); //from center of sphere b to center of cylinder a.
dist = mT.DotProduct(mT);
if (CylSphereColl(l_Ela, psb, l_Elb->mCylinderRadius, mNormal, dist, ppa, ppb, testSphereA))
{
collide = true;
if (addColl)
{
if( l_Ela==volA )
AddCollision(l_Ela, pa, l_Elb, pb, dist, mNormal);
else
{
Vector tmp = mNormal;
tmp.Scale(-1.0f);
AddCollision(l_Elb, pb, l_Ela, pa, dist, tmp);
}
}
else return collide;
}
}
}
return collide;
}
bool computeEdge( CylinderVolume* volA, CylinderVolume* volB, Vector &in_N, Vector &o_pa )
{
float r2, c1, s1;
r2 = in_N.NormalizeSafe();
c1 = in_N.DotProduct(volA->mAxis);
Clamp( c1, -1.0f, 1.0f );
if( 1.0f - Fabs(c1) < MICRO_EPS )
return false; //No edge defined.
s1 = Sqrt( 1.0f - Sqr(c1) );
r2 = volA->mCylinderRadius/s1;
o_pa.Scale(r2,in_N);
o_pa.ScaleAdd( -r2*c1, volA->mAxis );
return true;
}
// this will make sure only the deepest collision is kept otherwise
// the result could be different depending on volume order
bool SubCollisionDetector::CylCylSphereEndSpecialFilter(float newdist)
{
int last = mCollisionList->GetSize()-1;
if (newdist < mCollisionList->GetAt(last).mDistance)
{
mCollisionList->RemoveAt(last);
mNewColl--;
return false;
}
return true;
}
//This will detect collision between cylinder's face and none-flat ends (if any).
//All combination.
void SubCollisionDetector::CylCylSphereEnd(CylinderVolume* inVolA, CylinderVolume* inVolB)
{
Vector N, pb, pa;
CylinderVolume *l_volA=inVolA, *l_volB=inVolB;
int currentNewColl = mNewColl;
for( int i=0 ; i<2 ; i++, l_volA=inVolB, l_volB=inVolA )
{
if( l_volB->mFlatEnd )
continue;
Vector pos;
pos.ScaleAdd(l_volB->mPosition, l_volB->mLength, l_volB->mAxis);
mT.Sub(l_volA->mPosition, pos);
mNt = mT.DotProduct(mT);
if (CylSphereColl(l_volA, pos, l_volB->mCylinderRadius, N, mNt, &pa, &pb))
{
float test = N.MagnitudeSqr();
if (Fabs(test-1.0f) > 0.01f)
N.Scale(Inverse(Sqrt(test)));
if (currentNewColl < mNewColl && CylCylSphereEndSpecialFilter(mNt))
{
continue;
}
AddCollision(l_volA, pa, l_volB, pb, mNt, N);
continue;
}
pos.ScaleAdd(l_volB->mPosition, -l_volB->mLength, l_volB->mAxis);
mT.Sub(l_volA->mPosition, pos);
mNt = mT.DotProduct(mT);
if (CylSphereColl(l_volA, pos, l_volB->mCylinderRadius, N, mNt, &pa, &pb))
{
if (currentNewColl < mNewColl && CylCylSphereEndSpecialFilter(mNt))
{
continue;
}
AddCollision(l_volA, pa, l_volB, pb, mNt, N);
continue;
}
}
}
// Add collision in case where cylinder's face intersects the flat end of the other one.
void SubCollisionDetector::CircleCyl(CylinderVolume* volA, CylinderVolume* volB)
{
CylinderVolume *l_Ela=volA, *l_Elb=volB;
float foa_fob = Fabs(volA->mAxis.DotProduct(volB->mAxis));
//Test the best candidate edge of cylinder A to the circle of cylinder B.
for( int i=0 ; i<2 ; i++, l_Ela=volB, l_Elb=volA )
{
//Cylinder B do not define an circle, skip this test.
if( !l_Elb->mFlatEnd )
continue;
Vector l_N, pa;
//This is not easy to find the best candidate edge. In the first case,
//set of edges are parallels to the circle. We chose the one that is along
//the normal of the circle. This defines the closest edge to the circle.
//This become incorrect when the cylinder is near the edge of the circle. But
//we can't do better for now.
bool perpendicular;
if( foa_fob < 0.1f )
{
perpendicular = true;
l_N=l_Elb->mAxis;
}
else
{
perpendicular = false;
l_N.Sub( l_Elb->mPosition, l_Ela->mPosition );
}
if( computeEdge( l_Ela, l_Elb, l_N, pa ) == false )
continue;
mT.Sub( l_Ela->mPosition, l_Elb->mPosition );
if( perpendicular )
{
//Need to test if this one is not outside the circle
Vector pb;
pb.Add(mT,pa); //Center's cylinder to edge middle point.
float dr;
l_N.CrossProduct(l_Elb->mAxis,l_Ela->mAxis);
dr = Fabs(pb.DotProduct(l_N));
if( dr > l_Elb->mCylinderRadius )
{
//This edge is off the circle we get in trouble. Use the other edge candidate.
l_N.Sub( l_Elb->mPosition, l_Ela->mPosition );
if( computeEdge( l_Ela, l_Elb, l_N, pa ) == false )
continue;
}
}
float nft = mT.DotProduct(l_Elb->mAxis);
float no = l_Ela->mAxis.DotProduct(l_Elb->mAxis) * l_Ela->mLength;
CircleEdge( l_Ela, pa, l_Ela->mAxis, l_Ela->mLength, l_Elb, nft, no, true);
}
}
//This method returns true if the cylinder and the sphere collide.
bool SubCollisionDetector::CylSphereColl(CylinderVolume *volA, const Vector& Pb, float rb, Vector& N, float& dist, Vector *ppa, Vector *ppb, bool testSphereA)
{
float dl = mT.DotProduct(volA->mAxis); // projection on the axe of the dist between the object center
float dr = rmt::Max(0.0f, dist - Sqr(dl)); // dr2, projection on the radius
float rad = (volA->mFlatEnd ? 0 : volA->mCylinderRadius);
bool collide = false;
if (Fabs(dl) < volA->mLength + rb + mCollisionDistance + rad && dr < Sqr(volA->mCylinderRadius + rb + mCollisionDistance))
{
if (ppa == NULL || ppb == NULL) return true;
rad = volA->mCylinderRadius;
rAssert(dr>=0.0f);
if( dr<0.0f )
return collide;
dr = Sqrt(dr);
if (volA->mFlatEnd && Fabs(dl) - volA->mLength > dr - rad && dr < rad) // coll with the end face
{
//radial penetration is depper than the normal penetration.
dist = Fabs(dl) - ( volA->mLength + rb );
if (dist < mCollisionDistance )
{
N.Scale(Sign(dl), volA->mAxis);
ppb->ScaleAdd(Pb, rb, N); // pos on b
ppa->ScaleAdd(*ppb, dist, N); // pos on a
collide = true;
}
}
else // test for collision with "side of cylinder" / sphere or circle / sphere
{
if (!volA->mFlatEnd && Fabs(dl) >= volA->mLength)
{
if (!testSphereA) return collide;
ppa->ScaleAdd(volA->mPosition, -volA->mLength * Sign(dl), volA->mAxis);
N.Sub(*ppa, Pb);
dist = N.NormalizeSafe() - volA->mCylinderRadius - rb;
if (dist < mCollisionDistance) // collision with the end sphere
{
ppa->ScaleAdd(-volA->mCylinderRadius, N);
ppb->ScaleAdd(*ppa, -dist, N);
collide = true;
}
}
else if (dr > VERY_SMALL) // coll with side
{
Vector dp;
dp.Scale(-dl, volA->mAxis);
N.Add(mT, dp);
dist = dr - rad - rb;
N.Scale(1.0f/dr);
float tmp = N.MagnitudeSqr();
if (Fabs(tmp-1.0f) > 0.01f)
N.Scale(1.0f/Sqrt(tmp)); // if the Magnitude is not close enough to 1...
if (Fabs(dl) > volA->mLength) //Sphere is above the flat end.
dp.Scale(volA->mLength/Fabs(dl));
ppa->ScaleAdd(dp, -rad, N);
ppa->Add(volA->mPosition); // pos on a
if (Fabs(dl) <= volA->mLength) // coll with the side of the Cyl
{
ppb->ScaleAdd(Pb, rb, N); // pos on b
collide = true;
}
else if (volA->mFlatEnd ) // collision with the circle
{
N.Sub(*ppa, Pb);
dist = N.NormalizeSafe();
if (dist == 0) // points are very close, try again with scaling
{
N.Sub(*ppa, Pb);
N.Scale(1000.0f);
dist = N.NormalizeSafe() / 1000.0f;
}
if (dist != 0 && dist <= rb + mCollisionDistance)
{
dist -= rb;
ppb->ScaleAdd(*ppa, -dist, N); // pos on b
collide = true;
}
}
}
}
}
return collide;
}
/*
Computed the intersection of the two given planes. The result, if it exist, is a line with
direction io_ns and reference point o_pt.
If the caller already know the the direction it can pass it in io_ns ( this must
be not normalized) along with in_computeDirection == false.
Else, pass in in_computeDirection == true.
On return, io_ns will be set to the direction of the line (not normalized).
*/
bool SubCollisionDetector::PlanePlaneIntersection
(
Vector &in_c1, /* Reference point of the first plane. */
Vector &in_c2, /* Reference point of the second plane. */
Vector &in_n1, /* Normal of the first plane. */
Vector &in_n2, /* Normal of the second plane. */
Vector *o_pt, /* Reference point of the output line. */
Vector *io_ns, /* Line's direction of the intersection.*/
bool in_computeDirection
)
{
rAssert( o_pt );
rAssert( io_ns );
if( in_computeDirection )
io_ns->CrossProduct( in_n1, in_n2 );
float L1;
L1 = io_ns->Magnitude();
if( L1 < MICRO_EPS )
return false;
float A1, A2;
A1 = -in_c1.DotProduct(in_n1);
A2 = -in_c2.DotProduct(in_n2);
//find the largest componante of io_ns
int u=0, v=1, w = GetIndexOfMaxVectorComponent(*io_ns,true);
switch(w)
{
case 0:
u=1;v=2;
break;
case 1:
u=2;v=0;
break;
case 2:
u=0;v=1;
break;
}
float pu = GetVectorComponent(in_n1,v)*A2 - GetVectorComponent(in_n2,v)*A1;
float pv = GetVectorComponent(in_n2,u)*A1 - GetVectorComponent(in_n1,u)*A2;
pu /= GetVectorComponent(*io_ns,w);
pv /= GetVectorComponent(*io_ns,w);
SetVectorComponent( *o_pt, w, 0.0f );
SetVectorComponent( *o_pt, u, pu );
SetVectorComponent( *o_pt, v, pv );
return true;
}
/*
This method compute and returns intersectings points between 2 circles.
The return value indicates the status of the collision. It can be:
NO_INTERSECTION, ALL_INSIDE, ONE_POINT or TWO_POINTS.
If one circle is completely inside the other one, o_p1 is set to the position of the
first circle and the method return ALL_INSIDE. The current implentation does no distinction
between the case where a circle is completely inside the other and the case where
the two circles overlaps.
When there is no intersection the function returns NO_INTERSECTION, and o_p1 and o_p2
are untouched.
IMPORTANT: This method assume that the two circles are in the SAME plane.
*/
GEOM_CODE SubCollisionDetector::CircleCircleIntersection
(
const Vector &in_c1, //Position of the center of the first circle.
const Vector &in_c2, //Position of the center of the second circle.
const Vector &in_n1, //Normal of one circle. ( this method assume that the two circle are in the same plane).
float in_r1, //Radius of the first circle.
float in_r2, //Radius of the second circle.
bool in_all, //If false return only the mid point on the segment joining the two real intersecting points
Vector &o_p1, //One intersecting point on output. ( valid if the returned value is equal to 1 or 2 ).
Vector &o_p2 //Second intersecting point on output (valid if the returned value equal 2 ).
)
{
float d;
Vector c1_c2;
c1_c2.Sub( in_c2, in_c1 );
d = c1_c2.DotProduct(c1_c2);
if( d > Sqr(in_r1+in_r2+2.0f*mMinCollisionDistance) )
return NO_INTERSECTION;
d = Sqrt(d);
if( d + in_r1 < in_r2 + mMinCollisionDistance || d + in_r2 < in_r1 + mMinCollisionDistance)
{
o_p1 = in_c1;
return ALL_INSIDE;
}
float a, h, r1_2=Sqr(in_r1);
a = ( r1_2 - Sqr(in_r2) + Sqr(d) ) / (2.0f*d);
h = r1_2 - Sqr(a);
o_p1.ScaleAdd( in_c1, a/d, c1_c2 );
if( !in_all ) //This is the mid point on the segement that joints the two real points.
return ONE_POINT;
if( h <= Sqr(mCollisionDistance) )
return ONE_POINT; //In the given tolerance the two points are the same.
//But if we want the two real points:
Vector e1;
e1.CrossProduct(c1_c2,in_n1);
e1.NormalizeSafe();
rAssert(h>=0.0f);
if( h < 0.0f )
return NO_INTERSECTION;
h = Sqrt(h);
o_p2.ScaleAdd( o_p1, h, e1 );
o_p1.ScaleAdd( o_p2, -2.0f*h, e1 );
return TWO_POINTS;
}
/*
bool SubCollisionDetector::PointElColl(CollisionVolume *vol, Vector& p, float &dist)
{
bool ret=false;
switch (vol->Type())
{
case OBBoxEl:
{
ret = PointBoxColl((OBBoxVolume*)vol, p, dist);
break;
}
default:
rAssertMsg(false, "Not yet implemented", "");
}
return ret;
}
*/
#ifdef TEST_COLL
void SubCollisionDetector::TestNormalIntegrity(Collision* c)
{
Vector dp;
Vector pa = c->GetPa();
Vector pb = c->GetPb();
dp.Sub(pa, pb);
float dist = dp.NormalizeSafe();
dist = dist * Sign(dp.DotProduct(c->mNormal));
if (Fabs(dist-c->mDistance) > Fabs(c->mDistance) * 0.01f)
{
int i=0; // put a break point here: get here if problem
}
dp.NormalizeSafe();
dist = dp.DotProduct(c->mNormal);//Test outward Normals
if( dist * Sign(c->mDistance) < 0 && Fabs(dist) > .05 )
{
int i=0; // put a break point here: get here if problem
}
dist = c->mNormal.Magnitude(); //Test normal's magnitude
if( Fabs(dist - 1.0f) > .01f && dist>MICRO_EPS)
{
int i=0;
}
/*
float CDSCALE = RMTOREAL(5.0);
if (c->mDistance * rmV3Dot(&dp, &c->mNormal) < 0)
int i=0;
else
int i=1;
if (c->mDistance > CDSCALE * mCollisionDistance)
int i=0;
if (rmV3Dot(&dp, &dp) > CDSCALE * mCollisionDistance)
int i=0;
*/
}
#endif // TEST_COLL
void SubCollisionDetector::AddCollision(CollisionVolume* volA, const Vector& pa, CollisionVolume* volB, const Vector& pb, float dist, const Vector& N)
{
float test = Fabs(N.MagnitudeSqr()-1.0f);
rAssert(test < 0.01f);
if (test > 0.01f)
return;
Collision newcoll(volA, pa, volB, pb, dist, N);
#ifdef TEST_COLL
TestNormalIntegrity(&newcoll);
#endif
if( mCollisionFilter && mNewColl > 0)
{
bool l_bAdd = true;
CollisionVolume *vola, *volb, *new_vola, *new_volb;
Vector new_vPa, new_vPb;
Vector new_vN;
float new_depth;
new_vola = volA;
new_volb = volB;
if( mCollisionFilter & FILTER_BY_POSITION )
{
new_vPa = newcoll.mPositionA;
new_vPb = newcoll.mPositionB;
}
if( mCollisionFilter & FILTER_BY_DEPTH )
{
new_vN = newcoll.mNormal;
new_depth = newcoll.mDistance;
}
if( mCollisionFilter & ~(FILTER_BY_DEPTH|FILTER_BY_POSITION) )
{
rAssertMsg( 0, "Invalide case");
}
Collision *pColl;
int l_nbColl = mCollisionList->GetSize();
for( int i=l_nbColl-1 ; i >= l_nbColl-mNewColl ; i-- )
{
pColl = &mCollisionList->GetAt( i );
vola = pColl->mCollisionVolumeA;
volb = pColl->mCollisionVolumeB;
int identity = (new_vola == vola && new_volb == volb) ? 1 : 0 ;
if( identity == 0 )
identity = (new_vola == volb && new_volb == vola) ? -1 : 0 ;
if (identity)
{
//At this point the new collision and the current to compare have the same
//objects. Now test if they relate the same index.
if (identity==1)
{
if ( newcoll.mIndexA != pColl->mIndexA || newcoll.mIndexB != pColl->mIndexB )
{
continue;
}
}
else
{
if ( newcoll.mIndexA != pColl->mIndexB || newcoll.mIndexB != pColl->mIndexA )
{
continue;
}
}
// try to eliminate two collisions at same position
if( mCollisionFilter & FILTER_BY_POSITION )
{
Vector *vPa, *vPb;
if( identity == 1 )
{
vPa = &pColl->mPositionA;
vPb = &pColl->mPositionB;
}
else
{
vPa = &pColl->mPositionB;
vPb = &pColl->mPositionA;
}
Vector vtmp;
vtmp.Sub(*vPa, new_vPa);
float l_dist1 = vtmp.DotProduct(vtmp);
vtmp.Sub(*vPb,new_vPb);
float l_dist2 = vtmp.DotProduct(vtmp);
float minDist = Sqr(mMinCollisionDistance/1000.0f);
if( l_dist1 < minDist && l_dist2 < minDist )//TODO: Have a caracteristic length instead of an hard coded number.
{
// Dist collision is too close from an existing one.
// Do not add it in the list.
l_bAdd = false;
break;
}
}
// try to eliminate two contradictory collisions. Typically, if a sphere
// gets in the box, which way should it leaves?here we choose the direction
// with minimum of penetration.
if( (mCollisionFilter & FILTER_BY_DEPTH) &&
!(volA->GetCollisionObject()->GetSimState()->mAIRefIndex == 1 && volB->GetCollisionObject()->GetSimState()->mAIRefIndex == 1) )
{
static float Almost_Parallel = 0.7f;
if (Fabs(pColl->mNormal.DotProduct(new_vN)) < Almost_Parallel)
{
if (newcoll.mDistance > pColl->mDistance)
{
*pColl = newcoll;
}
l_bAdd = false;
break;
}
}
}
else
{
//Starting by the end of the list, as soon as collisions do not
//relate the same two objects, we can stop to search.
break;
}
}
if( l_bAdd )
{
mNewColl++;
mCollisionList->Add(newcoll);
#ifdef COLLECT_PAIR_COLLISION_HISTORY
mPairCollisionInfoHolder.AddCollision(newcoll);
#endif
}
}
else
{
mNewColl++;
mCollisionList->Add(newcoll);
#ifdef COLLECT_PAIR_COLLISION_HISTORY
mPairCollisionInfoHolder.AddCollision(newcoll);
#endif
}
}
TArray<Collision>* SubCollisionDetector::GetCollisionList()
{
return mCollisionList;
}
void SubCollisionDetector::SetCollisionList( TArray<Collision>& inlist )
{
mCollisionList = &inlist;
}
} // sim
|
2058fb8cbf258719a6f409f4ba2ed552f022fe7e | 2f9200469b14b83135dbe0cd5fb3e10b152e31d2 | /MFC/20160309(UI2及库)/库/CMyNumString5.1优化版/example1/RefCounts.h | 6203835ea4495d09c552fbf828f0f2859a93df84 | [] | no_license | Hi10086/CR22-2 | 9fb56e81dd1572deda740958efbad6d15eafffba | e7e53d76bd16d2ccaae930b017944a9b38783002 | refs/heads/master | 2016-09-12T22:00:43.833014 | 2016-04-17T08:49:56 | 2016-04-17T08:49:56 | 56,426,037 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 265 | h | RefCounts.h | #pragma once
#include <stdio.h>
#include "MyString.h"
class CRefCounts
{
public:
CRefCounts(CMyString *obj = NULL);
virtual ~CRefCounts();
virtual int AddRef();
virtual int Release();
friend class CSmartPtr;
private:
int m_ref_counts;
CMyString *m_obj;
};
|
914cdd15349b0eafc6878cc56d014400e1a72cf5 | 3170e69527e7426ad2930de5d16ff31f6ad08914 | /external/libcocos3dx/Nodes/CC3LocalContentNode.cpp | 28e58d2973111abf9edef09168702c94538469aa | [
"MIT"
] | permissive | isoundy000/cocosclient | e3818df70abfe81d25d53f80572ddd8ab7219cf8 | 477cde3ecd6c91d610e0d02fddf82e048fb604bd | refs/heads/master | 2021-01-25T14:22:35.694874 | 2016-05-30T09:39:45 | 2016-05-30T09:39:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,096 | cpp | CC3LocalContentNode.cpp | /*
* Cocos3D-X 1.0.0
* Author: Bill Hollings
* Copyright (c) 2010-2014 The Brenwill Workshop Ltd. All rights reserved.
* http://www.brenwill.com
*
* Copyright (c) 2014-2015 Jason Wong
* http://www.cocos3dx.org/
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* http://en.wikipedia.org/wiki/MIT_License
*/
#include "cocos3d.h"
NS_COCOS3D_BEGIN
CC3LocalContentNode::CC3LocalContentNode()
{
}
CC3LocalContentNode::~CC3LocalContentNode()
{
}
bool CC3LocalContentNode::hasLocalContent()
{
return true;
}
GLint CC3LocalContentNode::getZOrder()
{
return _zOrder;
}
void CC3LocalContentNode::setZOrder( GLint zo )
{
_zOrder = zo;
super::setZOrder( zo );
}
CC3Vector CC3LocalContentNode::getLocalContentCenterOfGeometry()
{
CC3Box bb = getLocalContentBoundingBox();
return CC3BoxIsNull(bb) ? CC3Vector::kCC3VectorZero : CC3BoxCenter(bb);
}
CC3Vector CC3LocalContentNode::getGlobalLocalContentCenterOfGeometry()
{
return getGlobalTransformMatrix()->transformLocation( getLocalContentCenterOfGeometry() );
}
// Overridden to return the localContentBoundingBox if no children.
CC3Box CC3LocalContentNode::getBoundingBox()
{
return m_pChildren ? super::getBoundingBox() : getLocalContentBoundingBox();
}
CC3Box CC3LocalContentNode::getLocalContentBoundingBox()
{
return kCC3BoxNull;
}
CC3Box CC3LocalContentNode::getGlobalLocalContentBoundingBox()
{
// If the global bounding box is null, rebuild it, otherwise return it.
if (CC3BoxIsNull(_globalLocalContentBoundingBox))
_globalLocalContentBoundingBox = getLocalContentBoundingBoxRelativeTo( NULL );
return _globalLocalContentBoundingBox;
}
CC3Box CC3LocalContentNode::getLocalContentBoundingBoxRelativeTo( CC3Node* ancestor )
{
CC3Box lcbb = getLocalContentBoundingBox();
if (ancestor == this)
return lcbb;
CC3Matrix4x3 tMtx;
getGlobalTransformMatrix()->populateCC3Matrix4x3( &tMtx );
if ( ancestor )
ancestor->getGlobalTransformMatrixInverted()->leftMultiplyIntoCC3Matrix4x3( &tMtx );
// The eight vertices of the transformed local bounding box
CC3Vector bbVertices[8];
// Get the corners of the local bounding box
CC3Vector bbMin = lcbb.minimum;
CC3Vector bbMax = lcbb.maximum;
// Construct all 8 corner vertices of the local bounding box and transform each
// to the coordinate system of the ancestor. The result is an oriented-bounding-box.
bbVertices[0] = CC3Matrix4x3TransformLocation(&tMtx, cc3v(bbMin.x, bbMin.y, bbMin.z));
bbVertices[1] = CC3Matrix4x3TransformLocation(&tMtx, cc3v(bbMin.x, bbMin.y, bbMax.z));
bbVertices[2] = CC3Matrix4x3TransformLocation(&tMtx, cc3v(bbMin.x, bbMax.y, bbMin.z));
bbVertices[3] = CC3Matrix4x3TransformLocation(&tMtx, cc3v(bbMin.x, bbMax.y, bbMax.z));
bbVertices[4] = CC3Matrix4x3TransformLocation(&tMtx, cc3v(bbMax.x, bbMin.y, bbMin.z));
bbVertices[5] = CC3Matrix4x3TransformLocation(&tMtx, cc3v(bbMax.x, bbMin.y, bbMax.z));
bbVertices[6] = CC3Matrix4x3TransformLocation(&tMtx, cc3v(bbMax.x, bbMax.y, bbMin.z));
bbVertices[7] = CC3Matrix4x3TransformLocation(&tMtx, cc3v(bbMax.x, bbMax.y, bbMax.z));
// Construct a transformed mesh bounding box that surrounds the eight global vertices
CC3Box bb = kCC3BoxNull;
for (int i = 0; i < 8; i++)
bb = CC3BoxEngulfLocation(bb, bbVertices[i]);
return bb;
}
// Overridden to include local content
CC3Box CC3LocalContentNode::getBoundingBoxRelativeTo( CC3Node* ancestor )
{
CC3Box lcbb = (shouldContributeToParentBoundingBox()
? getLocalContentBoundingBoxRelativeTo( ancestor )
: kCC3BoxNull);
return CC3BoxUnion(lcbb, super::getBoundingBoxRelativeTo(ancestor));
}
/** Notify up the ancestor chain...then check my children by invoking superclass implementation. */
void CC3LocalContentNode::checkDrawingOrder()
{
m_pParent->descendantDidModifySequencingCriteria( this );
super::checkDrawingOrder();
}
void CC3LocalContentNode::initWithTag( GLuint aTag, const std::string& aName )
{
super::initWithTag( aTag, aName );
_globalLocalContentBoundingBox = kCC3BoxNull;
_zOrder = 0;
}
void CC3LocalContentNode::populateFrom( CC3LocalContentNode* another )
{
super::populateFrom( another );
// The globalLocalContentBoundingBox property is left uncopied so that
// it will start at kCC3BoxNull and be lazily created on next access.
// Could create a child node
setShouldDrawLocalContentWireframeBox( another->shouldDrawLocalContentWireframeBox() );
_zOrder = another->getZOrder();
}
CCObject* CC3LocalContentNode::copyWithZone( CCZone* zone )
{
CC3LocalContentNode* pVal = new CC3LocalContentNode;
pVal->init();
pVal->populateFrom( this );
pVal->addCopiesOfChildrenFrom( this );
return pVal;
}
/** Overridden to force a lazy recalculation of the globalLocalContentBoundingBox. */
void CC3LocalContentNode::markTransformDirty()
{
super::markTransformDirty();
_globalLocalContentBoundingBox = kCC3BoxNull;
}
/** Overridden to return local content box color */
CCColorRef CC3LocalContentNode::getInitialDescriptorColor()
{
return CCColorRefFromCCC4F(getInitialLocalContentWireframeBoxColor());
}
/** Suffix used to name the local content wireframe. */
#define kLocalContentWireframeBoxSuffix "LCWFB"
/** The name to use when creating or retrieving the wireframe node of this node's local content. */
std::string CC3LocalContentNode::getLocalContentWireframeBoxName()
{
return CC3String::stringWithFormat( (char*)"%s-%s", getName().c_str(), kLocalContentWireframeBoxSuffix );
}
CC3WireframeBoundingBoxNode* CC3LocalContentNode::getLocalContentWireframeBoxNode()
{
return (CC3WireframeBoundingBoxNode*)( getNodeNamed( getLocalContentWireframeBoxName().c_str() ) );
}
bool CC3LocalContentNode::shouldDrawLocalContentWireframeBox()
{
return (getLocalContentWireframeBoxNode() != NULL);
}
void CC3LocalContentNode::setShouldDrawLocalContentWireframeBox( bool shouldDraw )
{
// Fetch the wireframe node from the child nodes.
CC3WireframeBoundingBoxNode* wf = getLocalContentWireframeBoxNode();
// If the wireframe exists, but should not, remove it
if (wf && !shouldDraw)
wf->remove();
// If there is no wireframe, but there should be, add it by creating a
// CC3WireframeLocalContentBoundingBoxNode from the localContentBoundingBox
// property and add it as a child of this node. If the bounding box is null,
// don't create a wireframe. Since the local content of a node does not
// normally change shape, the bounding box is NOT set to update its vertices
// by default from the bounding box of this node on each update pass.
if(!wf && shouldDraw)
{
CC3Box mbb = getLocalContentBoundingBox();
if ( !CC3BoxIsNull(mbb) )
{
wf = CC3WireframeLocalContentBoundingBoxNode::nodeWithName( getLocalContentWireframeBoxName() );
wf->populateAsWireBox( mbb );
wf->setEmissionColor( getInitialLocalContentWireframeBoxColor() );
addChild( wf );
}
}
}
/** If default is transparent black, use the color of the node. */
ccColor4F CC3LocalContentNode::getInitialLocalContentWireframeBoxColor()
{
ccColor4F defaultColor = getLocalContentWireframeBoxColor();
return CCC4FAreEqual(defaultColor, kCCC4FBlackTransparent)
? CCC4FFromCCColorRef(getColor())
: defaultColor;
}
// The default color to use when drawing the wireframes of the local content
static ccColor4F localContentWireframeBoxColor = { 1.0, 0.5, 0.0, 1.0 }; // kCCC4FOrange
ccColor4F CC3LocalContentNode::getLocalContentWireframeBoxColor()
{
return localContentWireframeBoxColor;
}
void CC3LocalContentNode::setLocalContentWireframeBoxColor( const ccColor4F& aColor )
{
localContentWireframeBoxColor = aColor;
}
bool CC3LocalContentNode::shouldDrawAllLocalContentWireframeBoxes()
{
if (!shouldDrawLocalContentWireframeBox())
return false;
return super::shouldDrawAllLocalContentWireframeBoxes();
}
void CC3LocalContentNode::setShouldDrawAllLocalContentWireframeBoxes( bool shouldDraw )
{
setShouldDrawLocalContentWireframeBox( shouldDraw );
super::setShouldDrawAllLocalContentWireframeBoxes( shouldDraw );
}
bool CC3LocalContentNode::shouldContributeToParentBoundingBox()
{
return true;
}
NS_COCOS3D_END
|
b801c942ac10516c014bc65b94193d93623b43f5 | edf7a84bb2afc26c53dfeef2ebe1a5b16ce084ac | /include/graph.h | 17e198303b34ef61801e79fcdbae55142c9fe50c | [
"MIT"
] | permissive | shikhin/wormhole | 052902775c3202e55d756ed8f48268d5959ec225 | d39b436eac6ba20905e3d6b811d241186c29c518 | refs/heads/master | 2021-01-13T14:56:01.662489 | 2017-05-02T23:56:34 | 2017-05-02T23:56:34 | 76,665,446 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 908 | h | graph.h | #ifndef _GRAPH_H
#define _GRAPH_H
#include "gauss.h"
#include <set>
#include <unordered_set>
#include <vector>
#define MAX_CHORDS 13
// #define TEST_MENU
// #define TEST_MENU_LIST
// #define TEST_BRUTE
#define TEST_ANY_RETRACTION
typedef struct menu_t {
std::set<struct node_t*> menu;
#ifdef TEST_MENU_LIST
std::vector<code_t> list;
#endif
bool operator <(const struct menu_t& b) const
{
return menu < b.menu;
}
} menu_t;
typedef struct node_t {
code_t code;
bool planar;
#ifdef TEST_BRUTE
size_t index;
#endif
// subdiagrams
std::set<struct node_t*> subs;
// 's' set
std::set<struct node_t*> s;
// if we've prunified this
bool pruneify;
std::unordered_set<struct node_t*> neighbors;
bool sneighbors_explored;
bool neighbors_explored;
std::set<menu_t> menus;
} node_t;
void explore();
#endif /* _GRAPH_H */
|
b750a89022ef23e0b5a672198cf047c4dd0216fe | 5dcc071d67795368ad9fd58e23b26056ab6f356f | /kgmGame/kgmActor.h | a95707b9c5d0145531718ce974febc435810d66f | [] | no_license | BlenderCN-Org/kgmEngine | 3d3c08b87fc95495017832303ca9d157f32283ee | 8ebaf6a7c840d93814e1481d6844b251e5e085d1 | refs/heads/master | 2020-05-30T08:26:55.392045 | 2019-05-31T10:40:23 | 2019-05-31T10:40:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,864 | h | kgmActor.h | #pragma once
#include "../kgmBase/kgmTab.h"
#include "../kgmBase/kgmTime.h"
#include "../kgmBase/kgmString.h"
#include "../kgmGraphics/kgmVisual.h"
#include "../kgmGraphics/kgmMesh.h"
#include "../kgmGraphics/kgmPolygon.h"
#include "../kgmGraphics/kgmTexture.h"
#include "../kgmGraphics/kgmShader.h"
#include "../kgmGraphics/kgmMaterial.h"
#include "../kgmGraphics/kgmAnimation.h"
#include "../kgmGraphics/kgmDummy.h"
#include "../kgmGraphics/kgmCamera.h"
#include "../kgmMedia/kgmSound.h"
#include "../kgmPhysics/kgmBody.h"
#include "kgmGamePhysics.h"
#include "kgmUnit.h"
class kgmActor: public kgmUnit
{
KGM_OBJECT(kgmActor);
public:
struct Action;
//typedef kgmCallback<void, kgmIGame*, kgmActor*, Action*> ActionCallback;
typedef void (*ActionCallback)(kgmIGame*, kgmActor*, Action*);
static kgmTab<kgmString, ActionCallback> g_actions;
struct Action
{
kgmString id;
u32 time;
kgmList<kgmVariable> variables;
ActionCallback callback = null;
};
struct Input
{
u32 input;
u32 input1;
u32 input2;
u32 status;
kgmString state;
};
struct State
{
kgmString id;
kgmString type;
kgmString switchto;
kgmString switchfrom;
u32 priopity;
u32 timeout;
u32 stime;
kgmSound* sound = null;
kgmAnimation* animation = null;
u32 fstart, fend;
Action action;
};
struct Animation
{
kgmAnimation* animation = null;
u32 start;
u32 end;
};
public:
u32 m_uid;
u32 m_type;
u32 m_bearing;
s32 m_group;
s32 m_health;
s32 m_attack;
s32 m_defence;
s32 m_evasion;
s32 m_accuracy;
mtx4 m_transform;
mtx4 m_dvisual; //visual transform relative to object transform
kgmList<State*> m_states;
kgmList<Input> m_inputs;
kgmList<Input> m_ainputs;
kgmList<kgmDummy*> m_dummies;
kgmAnimation* m_animation;
kgmSkeleton* m_skeleton;
State* m_state;
bool m_gameplayer;
kgmTab<kgmString, kgmString> m_options;
public:
kgmActor(kgmIGame* g = null);
~kgmActor();
virtual void init();
virtual void exit();
virtual void update(u32);
virtual void input(u32, int);
void action(Action* a);
void add(kgmDummy* m)
{
if(m)
{
m_dummies.add(m);
}
}
kgmDummy* dummy(kgmString id)
{
for(int i = 0; i < m_dummies.length(); i++)
{
if(m_dummies[i]->m_id == id)
return m_dummies[i];
}
return null;
}
void add(u32 btn, u32 stat, kgmString state, u32 btn1 = 0, u32 btn2 = 0, bool active = false)
{
Input inp;
inp.input = btn;
inp.input1 = btn1;
inp.input2 = btn2;
inp.state = state;
inp.status = stat;
if(active)
m_ainputs.add(inp);
else
m_inputs.add(inp);
}
void setAnimation(kgmAnimation* a)
{
if(a)
{
m_animation = a;
}
}
bool setState(kgmString s, bool force = false);
kgmString getState() const { if(m_state) return m_state->id; return ""; }
#ifdef EDITOR
u32 getStatesCount() { return m_states.length(); }
kgmString getStateName(u32 i) { if(i < m_states.length()) return m_states[i]->id; }
#endif
// options
void setOption(kgmString key, kgmString value)
{
m_options.set(key, value);
}
kgmString getOption(kgmString key)
{
kgmTab<kgmString, kgmString>::iterator i = m_options.get(key);
if (i.isEnd())
return kgmString();
return i.data();
}
};
typedef kgmList<kgmActor*> kgmActors;
typedef kgmList<kgmActor*> kgmActorList;
|
c652b8a41009ffd4884b9f581d364025510deef3 | f2826a14f066705862454ef97bf2e6b51dc065f8 | /source/Vulkan/ImageManager.cpp | 64c5598a504215d71f8167f06cbe9008f7da7294 | [
"MIT"
] | permissive | awkr/Luz | 823a1adb453978fd2a2a8d57e7ac891f0d6dcf6b | 58651edcedd3c00753a4702fe36f435c8bc1f669 | refs/heads/main | 2023-08-30T13:34:36.689742 | 2021-11-04T04:36:39 | 2021-11-04T05:43:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,022 | cpp | ImageManager.cpp | #include "Luzpch.hpp"
#include "ImageManager.hpp"
#include "LogicalDevice.hpp"
#include "PhysicalDevice.hpp"
#include "Instance.hpp"
void ImageManager::Create(const ImageDesc& desc, ImageResource& res) {
auto device = LogicalDevice::GetVkDevice();
auto allocator = Instance::GetAllocator();
res.width = desc.width;
res.height = desc.height;
VkImageCreateInfo imageInfo{};
imageInfo.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO;
imageInfo.imageType = VK_IMAGE_TYPE_2D;
imageInfo.extent.width = desc.width;
imageInfo.extent.height = desc.height;
imageInfo.extent.depth = 1;
imageInfo.mipLevels = desc.mipLevels;
imageInfo.arrayLayers = 1;
imageInfo.format = desc.format;
// tiling defines how the texels lay in memory
// optimal tiling is implementation dependent for more efficient memory access
// and linear makes the texels lay in row-major order, possibly with padding on each row
imageInfo.tiling = desc.tiling;
// not usable by the GPU, the first transition will discard the texels
imageInfo.initialLayout = desc.layout;
imageInfo.usage = desc.usage;
imageInfo.sharingMode = VK_SHARING_MODE_EXCLUSIVE;
imageInfo.samples = desc.numSamples;
imageInfo.flags = 0;
auto result = vkCreateImage(device, &imageInfo, allocator, &res.image);
DEBUG_VK(result, "Failed to create image!");
VkMemoryRequirements memReq;
vkGetImageMemoryRequirements(device, res.image, &memReq);
VkMemoryAllocateInfo allocInfo{};
allocInfo.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
allocInfo.allocationSize = memReq.size;
allocInfo.memoryTypeIndex = PhysicalDevice::FindMemoryType(memReq.memoryTypeBits, desc.properties);
result = vkAllocateMemory(device, &allocInfo, allocator, &res.memory);
DEBUG_VK(result, "Failed to allocate image memory!");
vkBindImageMemory(device, res.image, res.memory, 0);
VkImageViewCreateInfo viewInfo{};
viewInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO;
viewInfo.image = res.image;
viewInfo.viewType = VK_IMAGE_VIEW_TYPE_2D;
viewInfo.format = desc.format;
viewInfo.subresourceRange.aspectMask = desc.aspect;
viewInfo.subresourceRange.baseMipLevel = 0;
viewInfo.subresourceRange.levelCount = desc.mipLevels;
viewInfo.subresourceRange.baseArrayLayer = 0;
viewInfo.subresourceRange.layerCount = 1;
result = vkCreateImageView(device, &viewInfo, allocator, &res.view);
DEBUG_VK(result, "Failed to create image view!");
}
void ImageManager::Create(const ImageDesc& desc, ImageResource& res, BufferResource& buffer) {
auto device = LogicalDevice::GetVkDevice();
auto allocator = Instance::GetAllocator();
res.width = desc.width;
res.height = desc.height;
VkImageCreateInfo imageInfo{};
imageInfo.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO;
imageInfo.imageType = VK_IMAGE_TYPE_2D;
imageInfo.extent.width = desc.width;
imageInfo.extent.height = desc.height;
imageInfo.extent.depth = 1;
imageInfo.mipLevels = desc.mipLevels;
imageInfo.arrayLayers = 1;
imageInfo.format = desc.format;
imageInfo.tiling = desc.tiling;
imageInfo.initialLayout = desc.layout;
imageInfo.usage = desc.usage;
imageInfo.sharingMode = VK_SHARING_MODE_EXCLUSIVE;
imageInfo.samples = desc.numSamples;
imageInfo.flags = 0;
auto result = vkCreateImage(device, &imageInfo, allocator, &res.image);
DEBUG_VK(result, "Failed to create image!");
VkMemoryRequirements memReq;
vkGetImageMemoryRequirements(device, res.image, &memReq);
VkMemoryAllocateInfo allocInfo{};
allocInfo.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
allocInfo.allocationSize = memReq.size;
allocInfo.memoryTypeIndex = PhysicalDevice::FindMemoryType(memReq.memoryTypeBits, desc.properties);
result = vkAllocateMemory(device, &allocInfo, allocator, &res.memory);
DEBUG_VK(result, "Failed to allocate image memory!");
vkBindImageMemory(device, res.image, res.memory, 0);
VkCommandBuffer commandBuffer = LogicalDevice::BeginSingleTimeCommands();
VkImageMemoryBarrier barrier{};
barrier.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER;
barrier.oldLayout = VK_IMAGE_LAYOUT_UNDEFINED;
barrier.newLayout = VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL;
// if we were transferring queue family ownership
barrier.srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED;
barrier.dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED;
barrier.image = res.image;
barrier.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
barrier.subresourceRange.baseMipLevel = 0;
barrier.subresourceRange.baseArrayLayer = 0;
barrier.subresourceRange.levelCount = desc.mipLevels;
barrier.subresourceRange.layerCount = 1;
VkPipelineStageFlags sourceStage;
VkPipelineStageFlags destinationStage;
barrier.srcAccessMask = 0;
barrier.dstAccessMask = VK_ACCESS_TRANSFER_WRITE_BIT;
sourceStage = VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT;
destinationStage = VK_PIPELINE_STAGE_TRANSFER_BIT;
vkCmdPipelineBarrier(commandBuffer, sourceStage, destinationStage, 0, 0, nullptr, 0, nullptr, 1, &barrier);
LogicalDevice::EndSingleTimeCommands(commandBuffer);
commandBuffer = LogicalDevice::BeginSingleTimeCommands();
VkBufferImageCopy region{};
region.bufferOffset = 0;
region.bufferRowLength = 0;
region.bufferImageHeight = 0;
region.imageSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
region.imageSubresource.mipLevel = 0;
region.imageSubresource.baseArrayLayer = 0;
region.imageSubresource.layerCount = 1;
region.imageOffset = { 0, 0, 0 };
region.imageExtent = { desc.width, desc.height, 1 };
vkCmdCopyBufferToImage(commandBuffer, buffer.buffer, res.image, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1, ®ion);
LogicalDevice::EndSingleTimeCommands(commandBuffer);
VkFormatProperties formatProperties;
vkGetPhysicalDeviceFormatProperties(PhysicalDevice::GetVkPhysicalDevice(), desc.format, &formatProperties);
if (!(formatProperties.optimalTilingFeatures & VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT)) {
LOG_ERROR("texture image format does not support linear blitting!");
}
commandBuffer = LogicalDevice::BeginSingleTimeCommands();
barrier.subresourceRange.levelCount = 1;
int32_t mipWidth = desc.width;
int32_t mipHeight = desc.height;
for (uint32_t i = 1; i < desc.mipLevels; i++) {
barrier.subresourceRange.baseMipLevel = i - 1;
barrier.oldLayout = VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL;
barrier.newLayout = VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL;
barrier.srcAccessMask = VK_ACCESS_TRANSFER_WRITE_BIT;
barrier.dstAccessMask = VK_ACCESS_TRANSFER_READ_BIT;
vkCmdPipelineBarrier(commandBuffer, VK_PIPELINE_STAGE_TRANSFER_BIT, VK_PIPELINE_STAGE_TRANSFER_BIT, 0,
0, nullptr, 0, nullptr, 1, &barrier);
VkImageBlit blit{};
blit.srcOffsets[0] = { 0, 0, 0 };
blit.srcOffsets[1] = { mipWidth, mipHeight, 1 };
blit.srcSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
blit.srcSubresource.mipLevel = i - 1;
blit.srcSubresource.baseArrayLayer = 0;
blit.srcSubresource.layerCount = 1;
blit.dstOffsets[0] = { 0, 0, 0 };
blit.dstOffsets[1] = { mipWidth > 1 ? mipWidth / 2 : 1, mipHeight > 1 ? mipHeight / 2 : 1, 1 };
blit.dstSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
blit.dstSubresource.mipLevel = i;
blit.dstSubresource.baseArrayLayer = 0;
blit.dstSubresource.layerCount = 1;
vkCmdBlitImage(commandBuffer, res.image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, res.image, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL,
1, &blit, VK_FILTER_LINEAR);
barrier.oldLayout = VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL;
barrier.newLayout = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL;
barrier.srcAccessMask = VK_ACCESS_TRANSFER_READ_BIT;
barrier.dstAccessMask = VK_ACCESS_SHADER_READ_BIT;
vkCmdPipelineBarrier(commandBuffer, VK_PIPELINE_STAGE_TRANSFER_BIT, VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT, 0,
0, nullptr, 0, nullptr, 1, &barrier);
if (mipWidth > 1) {
mipWidth /= 2;
}
if (mipHeight > 1) {
mipHeight /= 2;
}
}
barrier.subresourceRange.baseMipLevel = desc.mipLevels - 1;
barrier.oldLayout = VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL;
barrier.newLayout = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL;
barrier.srcAccessMask = VK_ACCESS_TRANSFER_WRITE_BIT;
barrier.dstAccessMask = VK_ACCESS_SHADER_READ_BIT;
vkCmdPipelineBarrier(commandBuffer, VK_PIPELINE_STAGE_TRANSFER_BIT, VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT, 0,
0, nullptr, 0, nullptr, 1, &barrier);
LogicalDevice::EndSingleTimeCommands(commandBuffer);
VkImageViewCreateInfo viewInfo{};
viewInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO;
viewInfo.image = res.image;
viewInfo.viewType = VK_IMAGE_VIEW_TYPE_2D;
viewInfo.format = desc.format;
viewInfo.subresourceRange.aspectMask = desc.aspect;
viewInfo.subresourceRange.baseMipLevel = 0;
viewInfo.subresourceRange.levelCount = desc.mipLevels;
viewInfo.subresourceRange.baseArrayLayer = 0;
viewInfo.subresourceRange.layerCount = 1;
result = vkCreateImageView(device, &viewInfo, allocator, &res.view);
DEBUG_VK(result, "Failed to create image view!");
}
void ImageManager::Create(void* data, u32 width, u32 height, u16 channels, u32 mipLevels, ImageResource& res) {
ImageDesc imageDesc{};
imageDesc.numSamples = VK_SAMPLE_COUNT_1_BIT;
imageDesc.width = width;
imageDesc.height = height;
imageDesc.mipLevels = mipLevels;
imageDesc.numSamples = VK_SAMPLE_COUNT_1_BIT;
imageDesc.format = VK_FORMAT_R8G8B8A8_UNORM;
imageDesc.tiling = VK_IMAGE_TILING_OPTIMAL;
imageDesc.usage = VK_IMAGE_USAGE_SAMPLED_BIT;
imageDesc.usage |= VK_IMAGE_USAGE_TRANSFER_DST_BIT;
imageDesc.usage |= VK_IMAGE_USAGE_TRANSFER_SRC_BIT;
imageDesc.properties = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT;
imageDesc.aspect = VK_IMAGE_ASPECT_COLOR_BIT;
imageDesc.size = (u64) width * height * channels;
BufferResource staging;
BufferManager::CreateStagingBuffer(staging, data, imageDesc.size);
Create(imageDesc, res, staging);
BufferManager::Destroy(staging);
}
void ImageManager::Destroy(ImageResource& res) {
auto device = LogicalDevice::GetVkDevice();
auto allocator = Instance::GetAllocator();
DEBUG_ASSERT(res.image != VK_NULL_HANDLE, "Null image at VulkanImage::Destroy");
DEBUG_ASSERT(res.view != VK_NULL_HANDLE, "Null view at VulkanImage::Destroy");
DEBUG_ASSERT(res.memory != VK_NULL_HANDLE, "Null memory at VulkanImage::Destroy");
vkDestroyImageView(device, res.view, allocator);
vkDestroyImage(device, res.image, allocator);
vkFreeMemory(device, res.memory, allocator);
}
|
b0371acb5fd80fc00e57d731a4f81fe84a4c0f75 | 1b17cb868c571920dadeeab0295d60783a496fc8 | /HealthMods/SensorsMod/AurigaHL7/2.4/message/RSP_Z88.h | 59261cc1ecdea3cf4edaf5da43222eb225fbb9d3 | [] | no_license | afmartins85/olamed-modules-src | dc86e2dce4d5c54a450bca95c4775715167cecb9 | ec673ef154ef218f3b7c6593914212b125600ebd | refs/heads/master | 2023-01-07T16:25:29.437031 | 2020-11-05T22:30:07 | 2020-11-05T22:30:07 | 287,022,753 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,292 | h | RSP_Z88.h | /*
* This file is part of Auriga HL7 library.
*
* Auriga HL7 library is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Auriga HL7 library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Auriga HL7 library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __RSP_Z88__24_H__
#define __RSP_Z88__24_H__
#include "../../common/Util.h"
#include "../segment/AL1.h"
#include "../segment/DSC.h"
#include "../segment/ERR.h"
#include "../segment/MSA.h"
#include "../segment/MSH.h"
#include "../segment/NTE.h"
#include "../segment/OBX.h"
#include "../segment/ORC.h"
#include "../segment/PD1.h"
#include "../segment/PID.h"
#include "../segment/PV1.h"
#include "../segment/PV2.h"
#include "../segment/QAK.h"
#include "../segment/QPD.h"
#include "../segment/RCP.h"
#include "../segment/RXC.h"
#include "../segment/RXD.h"
#include "../segment/RXE.h"
#include "../segment/RXO.h"
#include "../segment/RXR.h"
namespace HL7_24 {
/* Internal structures/groups */
struct RSP_Z88_VISIT; /* VISIT */
struct RSP_Z88_ALLERGY; /* ALLERGY */
struct RSP_Z88_COMPONENT; /* COMPONENT */
struct RSP_Z88_ORDER_DETAIL; /* ORDER_DETAIL */
struct RSP_Z88_ORDER_ENCODED; /* ORDER_ENCODED */
struct RSP_Z88_OBSERVATION; /* OBSERVATION */
struct RSP_Z88_COMMON_ORDER; /* COMMON_ORDER */
struct RSP_Z88_PATIENT; /* PATIENT */
struct RSP_Z88_QUERY_RESPONSE; /* QUERY_RESPONSE */
/* VISIT */
struct RSP_Z88_VISIT : public HL7Group {
RSP_Z88_VISIT() { this->init(); }
/* Fields ID */
enum FIELD_ID { RSP_Z88_PV1_25, RSP_Z88_PV2_27, FIELD_ID_MAX };
const char* className() const { return "RSP_Z88_VISIT"; }
RSP_Z88_VISIT* create() const { return new RSP_Z88_VISIT(); }
private:
/* Initialize object */
void init() {
setName("RSP_Z88.VISIT");
addObject<PV1>(RSP_Z88_PV1_25, "PV1.25", HL7::initialized,
HL7::repetition_off);
addObject<PV2>(RSP_Z88_PV2_27, "PV2.27", HL7::optional,
HL7::repetition_off);
}
public:
/* Getters list */
PV1* getPV1_25(size_t index = 0) {
return (PV1*)this->getObjectSafe(index, RSP_Z88_PV1_25);
}
PV2* getPV2_27(size_t index = 0) {
return (PV2*)this->getObjectSafe(index, RSP_Z88_PV2_27);
}
/* Checker list */
bool isPV1_25(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_PV1_25) != NULL;
} catch (...) {
}
return false;
}
bool isPV2_27(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_PV2_27) != NULL;
} catch (...) {
}
return false;
}
}; /* RSP_Z88_24 */
/* ALLERGY */
struct RSP_Z88_ALLERGY : public HL7Group {
RSP_Z88_ALLERGY() { this->init(); }
/* Fields ID */
enum FIELD_ID { RSP_Z88_AL1_22, RSP_Z88_VISIT_24, FIELD_ID_MAX };
const char* className() const { return "RSP_Z88_ALLERGY"; }
RSP_Z88_ALLERGY* create() const { return new RSP_Z88_ALLERGY(); }
/* Initialize object */
void init() {
setName("RSP_Z88.ALLERGY");
addObject<AL1>(RSP_Z88_AL1_22, "AL1.22", HL7::initialized,
HL7::repetition_on);
addObject<RSP_Z88_VISIT>(RSP_Z88_VISIT_24, "RSP_Z88.VISIT", HL7::optional,
HL7::repetition_off);
}
/* Getters list */
AL1* getAL1_22(size_t index = 0) {
return (AL1*)this->getObjectSafe(index, RSP_Z88_AL1_22);
}
RSP_Z88_VISIT* getVISIT(size_t index = 0) {
return (RSP_Z88_VISIT*)this->getObjectSafe(index, RSP_Z88_VISIT_24);
}
/* Checker list */
bool isAL1_22(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_AL1_22) != NULL;
} catch (...) {
}
return false;
}
bool isVISIT(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_VISIT_24) != NULL;
} catch (...) {
}
return false;
}
}; /* RSP_Z88_20 */
/* COMPONENT */
struct RSP_Z88_COMPONENT : public HL7Group {
RSP_Z88_COMPONENT() { this->init(); }
/* Fields ID */
enum FIELD_ID { RSP_Z88_RXC_45, RSP_Z88_NTE_49, FIELD_ID_MAX };
const char* className() const { return "RSP_Z88_COMPONENT"; }
RSP_Z88_COMPONENT* create() const { return new RSP_Z88_COMPONENT(); }
/* Initialize object */
void init() {
setName("RSP_Z88.COMPONENT");
addObject<RXC>(RSP_Z88_RXC_45, "RXC.45", HL7::initialized,
HL7::repetition_on);
addObject<NTE>(RSP_Z88_NTE_49, "NTE.49", HL7::optional, HL7::repetition_on);
}
/* Getters list */
RXC* getRXC_45(size_t index = 0) {
return (RXC*)this->getObjectSafe(index, RSP_Z88_RXC_45);
}
NTE* getNTE_49(size_t index = 0) {
return (NTE*)this->getObjectSafe(index, RSP_Z88_NTE_49);
}
/* Checker list */
bool isRXC_45(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_RXC_45) != NULL;
} catch (...) {
}
return false;
}
bool isNTE_49(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_NTE_49) != NULL;
} catch (...) {
}
return false;
}
}; /* RSP_Z88_43 */
/* ORDER_DETAIL */
struct RSP_Z88_ORDER_DETAIL : public HL7Group {
RSP_Z88_ORDER_DETAIL() { this->init(); }
/* Fields ID */
enum FIELD_ID {
RSP_Z88_RXO_34,
RSP_Z88_NTE_37,
RSP_Z88_RXR_41,
RSP_Z88_COMPONENT_43,
FIELD_ID_MAX
};
const char* className() const { return "RSP_Z88_ORDER_DETAIL"; }
RSP_Z88_ORDER_DETAIL* create() const { return new RSP_Z88_ORDER_DETAIL(); }
/* Initialize object */
void init() {
setName("RSP_Z88.ORDER_DETAIL");
addObject<RXO>(RSP_Z88_RXO_34, "RXO.34", HL7::initialized,
HL7::repetition_off);
addObject<NTE>(RSP_Z88_NTE_37, "NTE.37", HL7::optional, HL7::repetition_on);
addObject<RXR>(RSP_Z88_RXR_41, "RXR.41", HL7::initialized,
HL7::repetition_on);
addObject<RSP_Z88_COMPONENT>(RSP_Z88_COMPONENT_43, "RSP_Z88.COMPONENT",
HL7::optional, HL7::repetition_off);
}
/* Getters list */
RXO* getRXO_34(size_t index = 0) {
return (RXO*)this->getObjectSafe(index, RSP_Z88_RXO_34);
}
NTE* getNTE_37(size_t index = 0) {
return (NTE*)this->getObjectSafe(index, RSP_Z88_NTE_37);
}
RXR* getRXR_41(size_t index = 0) {
return (RXR*)this->getObjectSafe(index, RSP_Z88_RXR_41);
}
RSP_Z88_COMPONENT* getCOMPONENT(size_t index = 0) {
return (RSP_Z88_COMPONENT*)this->getObjectSafe(index, RSP_Z88_COMPONENT_43);
}
/* Checker list */
bool isRXO_34(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_RXO_34) != NULL;
} catch (...) {
}
return false;
}
bool isNTE_37(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_NTE_37) != NULL;
} catch (...) {
}
return false;
}
bool isRXR_41(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_RXR_41) != NULL;
} catch (...) {
}
return false;
}
bool isCOMPONENT(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_COMPONENT_43) != NULL;
} catch (...) {
}
return false;
}
}; /* RSP_Z88_33 */
/* ORDER_ENCODED */
struct RSP_Z88_ORDER_ENCODED : public HL7Group {
RSP_Z88_ORDER_ENCODED() { this->init(); }
/* Fields ID */
enum FIELD_ID {
RSP_Z88_RXE_55,
RSP_Z88_RXR_57,
RSP_Z88_RXC_61,
FIELD_ID_MAX
};
const char* className() const { return "RSP_Z88_ORDER_ENCODED"; }
RSP_Z88_ORDER_ENCODED* create() const { return new RSP_Z88_ORDER_ENCODED(); }
/* Initialize object */
void init() {
setName("RSP_Z88.ORDER_ENCODED");
addObject<RXE>(RSP_Z88_RXE_55, "RXE.55", HL7::initialized,
HL7::repetition_off);
addObject<RXR>(RSP_Z88_RXR_57, "RXR.57", HL7::initialized,
HL7::repetition_on);
addObject<RXC>(RSP_Z88_RXC_61, "RXC.61", HL7::optional, HL7::repetition_on);
}
/* Getters list */
RXE* getRXE_55(size_t index = 0) {
return (RXE*)this->getObjectSafe(index, RSP_Z88_RXE_55);
}
RXR* getRXR_57(size_t index = 0) {
return (RXR*)this->getObjectSafe(index, RSP_Z88_RXR_57);
}
RXC* getRXC_61(size_t index = 0) {
return (RXC*)this->getObjectSafe(index, RSP_Z88_RXC_61);
}
/* Checker list */
bool isRXE_55(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_RXE_55) != NULL;
} catch (...) {
}
return false;
}
bool isRXR_57(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_RXR_57) != NULL;
} catch (...) {
}
return false;
}
bool isRXC_61(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_RXC_61) != NULL;
} catch (...) {
}
return false;
}
}; /* RSP_Z88_54 */
/* OBSERVATION */
struct RSP_Z88_OBSERVATION : public HL7Group {
RSP_Z88_OBSERVATION() { this->init(); }
/* Fields ID */
enum FIELD_ID { RSP_Z88_OBX_76, RSP_Z88_NTE_80, FIELD_ID_MAX };
const char* className() const { return "RSP_Z88_OBSERVATION"; }
RSP_Z88_OBSERVATION* create() const { return new RSP_Z88_OBSERVATION(); }
/* Initialize object */
void init() {
setName("RSP_Z88.OBSERVATION");
addObject<OBX>(RSP_Z88_OBX_76, "OBX.76", HL7::optional,
HL7::repetition_off);
addObject<NTE>(RSP_Z88_NTE_80, "NTE.80", HL7::optional, HL7::repetition_on);
}
/* Getters list */
OBX* getOBX_76(size_t index = 0) {
return (OBX*)this->getObjectSafe(index, RSP_Z88_OBX_76);
}
NTE* getNTE_80(size_t index = 0) {
return (NTE*)this->getObjectSafe(index, RSP_Z88_NTE_80);
}
/* Checker list */
bool isOBX_76(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_OBX_76) != NULL;
} catch (...) {
}
return false;
}
bool isNTE_80(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_NTE_80) != NULL;
} catch (...) {
}
return false;
}
}; /* RSP_Z88_74 */
/* COMMON_ORDER */
struct RSP_Z88_COMMON_ORDER : public HL7Group {
RSP_Z88_COMMON_ORDER() { this->init(); }
/* Fields ID */
enum FIELD_ID {
RSP_Z88_ORC_32,
RSP_Z88_ORDER_DETAIL_33,
RSP_Z88_ORDER_ENCODED_54,
RSP_Z88_RXD_65,
RSP_Z88_RXR_67,
RSP_Z88_RXC_71,
RSP_Z88_OBSERVATION_74,
FIELD_ID_MAX
};
const char* className() const { return "RSP_Z88_COMMON_ORDER"; }
RSP_Z88_COMMON_ORDER* create() const { return new RSP_Z88_COMMON_ORDER(); }
/* Initialize object */
void init() {
setName("RSP_Z88.COMMON_ORDER");
addObject<ORC>(RSP_Z88_ORC_32, "ORC.32", HL7::initialized,
HL7::repetition_off);
addObject<RSP_Z88_ORDER_DETAIL>(RSP_Z88_ORDER_DETAIL_33,
"RSP_Z88.ORDER_DETAIL", HL7::optional,
HL7::repetition_off);
addObject<RSP_Z88_ORDER_ENCODED>(RSP_Z88_ORDER_ENCODED_54,
"RSP_Z88.ORDER_ENCODED", HL7::optional,
HL7::repetition_off);
addObject<RXD>(RSP_Z88_RXD_65, "RXD.65", HL7::initialized,
HL7::repetition_off);
addObject<RXR>(RSP_Z88_RXR_67, "RXR.67", HL7::initialized,
HL7::repetition_on);
addObject<RXC>(RSP_Z88_RXC_71, "RXC.71", HL7::optional, HL7::repetition_on);
addObject<RSP_Z88_OBSERVATION>(RSP_Z88_OBSERVATION_74,
"RSP_Z88.OBSERVATION", HL7::initialized,
HL7::repetition_on);
}
/* Getters list */
ORC* getORC_32(size_t index = 0) {
return (ORC*)this->getObjectSafe(index, RSP_Z88_ORC_32);
}
RSP_Z88_ORDER_DETAIL* getORDER_DETAIL(size_t index = 0) {
return (RSP_Z88_ORDER_DETAIL*)this->getObjectSafe(index,
RSP_Z88_ORDER_DETAIL_33);
}
RSP_Z88_ORDER_ENCODED* getORDER_ENCODED(size_t index = 0) {
return (RSP_Z88_ORDER_ENCODED*)this->getObjectSafe(
index, RSP_Z88_ORDER_ENCODED_54);
}
RXD* getRXD_65(size_t index = 0) {
return (RXD*)this->getObjectSafe(index, RSP_Z88_RXD_65);
}
RXR* getRXR_67(size_t index = 0) {
return (RXR*)this->getObjectSafe(index, RSP_Z88_RXR_67);
}
RXC* getRXC_71(size_t index = 0) {
return (RXC*)this->getObjectSafe(index, RSP_Z88_RXC_71);
}
RSP_Z88_OBSERVATION* getOBSERVATION(size_t index = 0) {
return (RSP_Z88_OBSERVATION*)this->getObjectSafe(index,
RSP_Z88_OBSERVATION_74);
}
/* Checker list */
bool isORC_32(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_ORC_32) != NULL;
} catch (...) {
}
return false;
}
bool isORDER_DETAIL(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_ORDER_DETAIL_33) != NULL;
} catch (...) {
}
return false;
}
bool isORDER_ENCODED(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_ORDER_ENCODED_54) != NULL;
} catch (...) {
}
return false;
}
bool isRXD_65(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_RXD_65) != NULL;
} catch (...) {
}
return false;
}
bool isRXR_67(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_RXR_67) != NULL;
} catch (...) {
}
return false;
}
bool isRXC_71(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_RXC_71) != NULL;
} catch (...) {
}
return false;
}
bool isOBSERVATION(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_OBSERVATION_74) != NULL;
} catch (...) {
}
return false;
}
}; /* RSP_Z88_31 */
/* PATIENT */
struct RSP_Z88_PATIENT : public HL7Group {
RSP_Z88_PATIENT() { this->init(); }
/* Fields ID */
enum FIELD_ID {
RSP_Z88_PID_11,
RSP_Z88_PD1_13,
RSP_Z88_NTE_17,
RSP_Z88_ALLERGY_20,
RSP_Z88_COMMON_ORDER_31,
FIELD_ID_MAX
};
const char* className() const { return "RSP_Z88_PATIENT"; }
RSP_Z88_PATIENT* create() const { return new RSP_Z88_PATIENT(); }
/* Initialize object */
void init() {
setName("RSP_Z88.PATIENT");
addObject<PID>(RSP_Z88_PID_11, "PID.11", HL7::initialized,
HL7::repetition_off);
addObject<PD1>(RSP_Z88_PD1_13, "PD1.13", HL7::optional,
HL7::repetition_off);
addObject<NTE>(RSP_Z88_NTE_17, "NTE.17", HL7::optional, HL7::repetition_on);
addObject<RSP_Z88_ALLERGY>(RSP_Z88_ALLERGY_20, "RSP_Z88.ALLERGY",
HL7::optional, HL7::repetition_off);
addObject<RSP_Z88_COMMON_ORDER>(RSP_Z88_COMMON_ORDER_31,
"RSP_Z88.COMMON_ORDER", HL7::initialized,
HL7::repetition_on);
}
/* Getters list */
PID* getPID_11(size_t index = 0) {
return (PID*)this->getObjectSafe(index, RSP_Z88_PID_11);
}
PD1* getPD1_13(size_t index = 0) {
return (PD1*)this->getObjectSafe(index, RSP_Z88_PD1_13);
}
NTE* getNTE_17(size_t index = 0) {
return (NTE*)this->getObjectSafe(index, RSP_Z88_NTE_17);
}
RSP_Z88_ALLERGY* getALLERGY(size_t index = 0) {
return (RSP_Z88_ALLERGY*)this->getObjectSafe(index, RSP_Z88_ALLERGY_20);
}
RSP_Z88_COMMON_ORDER* getCOMMON_ORDER(size_t index = 0) {
return (RSP_Z88_COMMON_ORDER*)this->getObjectSafe(index,
RSP_Z88_COMMON_ORDER_31);
}
/* Checker list */
bool isPID_11(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_PID_11) != NULL;
} catch (...) {
}
return false;
}
bool isPD1_13(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_PD1_13) != NULL;
} catch (...) {
}
return false;
}
bool isNTE_17(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_NTE_17) != NULL;
} catch (...) {
}
return false;
}
bool isALLERGY(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_ALLERGY_20) != NULL;
} catch (...) {
}
return false;
}
bool isCOMMON_ORDER(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_COMMON_ORDER_31) != NULL;
} catch (...) {
}
return false;
}
}; /* RSP_Z88_10 */
/* QUERY_RESPONSE */
struct RSP_Z88_QUERY_RESPONSE : public HL7Group {
RSP_Z88_QUERY_RESPONSE() { this->init(); }
/* Fields ID */
enum FIELD_ID { RSP_Z88_PATIENT_10, FIELD_ID_MAX };
const char* className() const { return "RSP_Z88_QUERY_RESPONSE"; }
RSP_Z88_QUERY_RESPONSE* create() const {
return new RSP_Z88_QUERY_RESPONSE();
}
/* Initialize object */
void init() {
setName("RSP_Z88.QUERY_RESPONSE");
addObject<RSP_Z88_PATIENT>(RSP_Z88_PATIENT_10, "RSP_Z88.PATIENT",
HL7::optional, HL7::repetition_off);
}
/* Getters list */
RSP_Z88_PATIENT* getPATIENT(size_t index = 0) {
return (RSP_Z88_PATIENT*)this->getObjectSafe(index, RSP_Z88_PATIENT_10);
}
/* Checker list */
bool isPATIENT(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_PATIENT_10) != NULL;
} catch (...) {
}
return false;
}
}; /* RSP_Z88_9 */
/* RSP_Z88 */
struct RSP_Z88 : public HL7Message {
RSP_Z88() { this->init(); }
/* Fields ID */
enum FIELD_ID {
RSP_Z88_MSH_1,
RSP_Z88_MSA_2,
RSP_Z88_ERR_4,
RSP_Z88_QAK_6,
RSP_Z88_QPD_7,
RSP_Z88_RCP_8,
RSP_Z88_QUERY_RESPONSE_9,
RSP_Z88_DSC_87,
FIELD_ID_MAX
};
const char* className() const { return "RSP_Z88"; }
RSP_Z88* create() const { return new RSP_Z88(); }
/* Initialize object */
void init() {
setName("RSP_Z88");
addObject<MSH>(RSP_Z88_MSH_1, "MSH.1", HL7::initialized,
HL7::repetition_off);
addObject<MSA>(RSP_Z88_MSA_2, "MSA.2", HL7::initialized,
HL7::repetition_off);
addObject<ERR>(RSP_Z88_ERR_4, "ERR.4", HL7::optional, HL7::repetition_off);
addObject<QAK>(RSP_Z88_QAK_6, "QAK.6", HL7::initialized,
HL7::repetition_off);
addObject<QPD>(RSP_Z88_QPD_7, "QPD.7", HL7::initialized,
HL7::repetition_off);
addObject<RCP>(RSP_Z88_RCP_8, "RCP.8", HL7::initialized,
HL7::repetition_off);
addObject<RSP_Z88_QUERY_RESPONSE>(RSP_Z88_QUERY_RESPONSE_9,
"RSP_Z88.QUERY_RESPONSE",
HL7::initialized, HL7::repetition_on);
addObject<DSC>(RSP_Z88_DSC_87, "DSC.87", HL7::initialized,
HL7::repetition_off);
}
/* Getters list */
MSH* getMSH_1(size_t index = 0) {
return (MSH*)this->getObjectSafe(index, RSP_Z88_MSH_1);
}
MSA* getMSA_2(size_t index = 0) {
return (MSA*)this->getObjectSafe(index, RSP_Z88_MSA_2);
}
ERR* getERR_4(size_t index = 0) {
return (ERR*)this->getObjectSafe(index, RSP_Z88_ERR_4);
}
QAK* getQAK_6(size_t index = 0) {
return (QAK*)this->getObjectSafe(index, RSP_Z88_QAK_6);
}
QPD* getQPD_7(size_t index = 0) {
return (QPD*)this->getObjectSafe(index, RSP_Z88_QPD_7);
}
RCP* getRCP_8(size_t index = 0) {
return (RCP*)this->getObjectSafe(index, RSP_Z88_RCP_8);
}
RSP_Z88_QUERY_RESPONSE* getQUERY_RESPONSE(size_t index = 0) {
return (RSP_Z88_QUERY_RESPONSE*)this->getObjectSafe(
index, RSP_Z88_QUERY_RESPONSE_9);
}
DSC* getDSC_87(size_t index = 0) {
return (DSC*)this->getObjectSafe(index, RSP_Z88_DSC_87);
}
/* Checker list */
bool isMSH_1(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_MSH_1) != NULL;
} catch (...) {
}
return false;
}
bool isMSA_2(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_MSA_2) != NULL;
} catch (...) {
}
return false;
}
bool isERR_4(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_ERR_4) != NULL;
} catch (...) {
}
return false;
}
bool isQAK_6(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_QAK_6) != NULL;
} catch (...) {
}
return false;
}
bool isQPD_7(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_QPD_7) != NULL;
} catch (...) {
}
return false;
}
bool isRCP_8(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_RCP_8) != NULL;
} catch (...) {
}
return false;
}
bool isQUERY_RESPONSE(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_QUERY_RESPONSE_9) != NULL;
} catch (...) {
}
return false;
}
bool isDSC_87(size_t index = 0) {
try {
return this->getObject(index, RSP_Z88_DSC_87) != NULL;
} catch (...) {
}
return false;
}
}; /* RSP_Z88_ */
} /* namespace HL7_24 */
#endif /* __RSP_Z88__24_H__ */
|
b0f1c5957059102f61f3b36cb0d5b29bfe0dea08 | 4c23be1a0ca76f68e7146f7d098e26c2bbfb2650 | /elbow/44/phi | 66b1c616cf071434f3f1b95c4ee06342a55958f3 | [] | no_license | labsandy/OpenFOAM_workspace | a74b473903ddbd34b31dc93917e3719bc051e379 | 6e0193ad9dabd613acf40d6b3ec4c0536c90aed4 | refs/heads/master | 2022-02-25T02:36:04.164324 | 2019-08-23T02:27:16 | 2019-08-23T02:27:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,707 | phi | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "44";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
1300
(
3.75095
5.62643
-3.21569
3.75095
-7.69004
5.62643
-4.26284
4.26284
-0.771886
0.771886
1.87647
1.87449
-2.62271
2.62271
-2.05873
2.05873
-2.54587
2.54587
-5.24796
5.24796
-5.06893
5.06893
4.7146
-4.7146
-6.26546
6.26546
-1.10686
1.10686
-3.67705
3.67705
3.17296
-3.17296
-2.09346
2.09346
-0.187926
0.187926
-0.554101
4.30505
3.19685
3.19685
-1.98228
1.98228
-4.87358
4.87358
6.22209
-6.22209
5.17647
-5.17647
-1.96078
-2.36439
1.80174
-11.5593
-5.8883
-5.8883
-8.44103
8.44103
-2.8146
2.81182
2.94561
-2.94561
-1.7342
1.7342
-4.2454
-0.0174368
-4.2454
4.2479
0.0149372
4.2479
-0.862077
0.0901912
-0.862077
3.83644
-3.83644
0.650021
0.121865
0.650021
3.06695
-3.06695
-1.87687
3.75334
1.87408
-1.87206
6.17711
-1.87889
3.75338
-6.05139
6.05139
-2.83308
0.210365
-2.83308
2.43153
0.191179
2.43153
-6.85638
6.85638
-2.12581
0.0670841
-2.12581
2.02596
0.0327653
2.02596
2.88105
-2.88105
-2.64245
0.0965813
-2.64245
2.4156
0.130269
2.4156
0.353511
5.27292
-5.97994
8.79177
-5.27292
0.0249617
5.21035
0.0376084
5.21035
-5.10534
0.0364134
-5.10534
5.01348
0.0554476
5.01348
4.80896
-0.0943697
4.80896
-4.82931
0.114717
-4.82931
-3.40077
-4.10111
-6.43337
0.167905
-6.43337
-1.12407
0.0172061
-1.12407
1.05339
0.0534726
1.05339
-3.68245
3.68245
-3.9949
0.317853
-3.9949
3.12787
0.0450917
3.12787
1.86812
1.88283
5.61908
-5.61908
2.44611
-2.00584
-0.0876149
-2.00584
-2.16258
-3.0139
2.16258
-0.0691215
-0.408336
0.22041
-0.408336
3.15701
0.0398441
3.15701
2.25766
0.157939
-2.25766
0.275377
3.27379
-3.27379
1.31237
0.669915
1.31237
-5.5598
5.5598
4.96139
0.0520843
-4.96139
0.0878101
6.15722
0.0648707
6.15722
-6.20753
-0.0145618
-6.20753
2.61197
-4.97636
-2.55345
6.07483
0.190627
-6.07483
0.186532
2.91634
0.0292707
2.91634
-2.92039
2.92039
-2.98318
0.0375656
-2.98318
-2.16029
0.426088
-2.16029
1.41552
0.31868
1.41552
-4.11789
-0.127512
-4.11789
-4.13026
0.135357
4.13026
0.117642
1.07664
-1.07664
-0.930097
0.0680204
-0.930097
-3.93873
-0.179156
3.93873
-0.102297
-3.79517
-0.0412705
-3.79517
-3.02123
0.03805
3.02123
0.0457239
3.11192
0.0450895
-3.11192
0.0449645
-1.87097
3.7538
-1.87999
3.75407
-5.66868
-0.382705
-5.66868
6.34492
-0.293536
6.34492
3.22654
0.450509
-3.22654
0.393464
2.2928
0.138729
2.2928
-6.83192
-0.024459
-6.83192
6.85788
-0.00150049
6.85788
2.19264
0.100161
-2.19264
0.0668308
2.00179
0.0241739
2.00179
2.90545
-0.0243957
2.90545
-2.87695
-0.00409717
-2.87695
2.79622
-2.79622
2.7247
0.0715209
-2.7247
0.0822545
-11.1241
11.1095
-0.0362654
-11.0878
5.17408
5.17408
4.26512
0.543847
4.26512
-5.02009
0.190773
-5.02009
2.74029
-5.29374
3.09269
-6.49346
4.70124
-16.2606
4.32332
-8.42444
6.69705
-6.69705
6.57429
0.12276
-6.57429
0.140922
-1.18348
0.0594129
-1.18348
-3.06747
-0.61498
-3.06747
4.3269
-0.64445
4.3269
-3.02824
3.02824
-3.07683
0.0485946
3.07683
0.0510364
1.97084
0.0309449
-1.97084
-0.0349976
0.519526
0.130495
-0.519526
0.11119
3.48539
-0.211597
3.48539
-3.07789
-0.195899
-3.07789
-1.25133
0.0678493
1.25133
0.0610362
-5.80744
0.247644
-5.80744
-11.1814
0.093576
-11.1438
-6.11396
-6.11396
2.32708
11.1188
-2.89367
0.0167206
2.89367
0.0226711
2.97587
0.0523717
-2.97587
0.0554829
-2.8607
0.0644754
2.8607
0.0596876
-2.53155
0.371256
-2.53155
-1.01937
1.01937
-1.17612
0.156755
1.17612
0.239401
1.36495
-0.288311
1.36495
0.995346
0.0580436
-0.995346
0.0652487
-3.76349
-0.0316735
-3.76349
6.58056
-0.235636
6.58056
-2.95391
-0.123983
2.95391
-0.0484648
-0.0349234
11.1445
-5.13916
0.0338199
5.13916
-11.2093
11.2432
-3.24105
0.709506
3.24105
1.02407
5.28669
0.273107
-5.28669
0.266602
6.79385
0.0640332
-6.79385
0.0968033
-2.58216
-0.485308
-2.58216
-5.06805
-0.600632
5.06805
-0.741147
-11.4817
-0.203055
11.6848
-11.4263
6.01049
0.146728
-6.01049
11.3899
-0.971614
-0.105026
0.971614
0.0477521
1.70261
-0.337655
1.70261
3.69034
-0.204948
-3.69034
-0.0731565
-6.72692
-0.105
6.72692
-0.146368
-2.13257
-0.449592
2.13257
-0.429965
-4.26724
4.30709
1.90987
-2.43597
-2.54039
-5.44986
1.85496
1.89884
4.30107
-10.2087
-6.05186
-10.0222
7.21316
-6.94655
-9.35952
9.26515
7.77929
-7.82056
-5.77811
5.82914
6.48397
-6.43825
1.87925
1.87409
7.99253
-7.78216
-15.7063
15.3236
7.54776
-7.48068
15.8573
-15.8818
-17.9205
17.9846
-5.70286
5.79944
-6.73351
6.72941
-6.96619
6.91773
-2.85536
-3.6381
13.2015
-13.0336
8.46151
-8.54913
-8.63389
8.95175
3.38452
0.922571
3.42961
-1.88195
3.7612
-1.87143
3.7813
2.689
-5.54435
2.60474
-5.14513
4.27187
4.18964
-4.20275
-1.24711
-5.92611
5.95538
-5.81299
5.87268
9.02402
-9.04146
-1.88503
3.75912
-1.86904
3.76788
-3.42348
-2.35463
3.37839
0.922681
8.11341
5.08806
-8.30404
-1.71815
-7.95709
7.75215
-8.18957
7.99367
-0.437314
5.83621
-5.39889
4.43627
-1.65401
7.49022
5.55915
5.74992
5.86016
-5.58705
1.0864
-6.48529
-6.39748
-2.47394
2.54196
2.4378
-2.31593
6.01332
1.76596
5.91103
-5.73311
-2.08744
-5.76479
3.82041
2.00873
3.86901
4.08103
2.40294
4.11908
3.03006
-3.03612
0.00606079
-3.05894
6.08899
0.723005
-5.41356
-4.49088
5.01219
2.98034
5.20336
-5.57873
-2.20343
-5.18527
-9.59324
-6.11302
-10.1939
10.109
5.21455
9.81547
-11.9891
11.8428
4.83209
2.71567
4.86485
-4.95779
-2.52288
-4.89096
11.6722
-2.6373
-9.03494
-10.3548
-7.56577
10.3563
5.50108
11.0114
6.9732
11.1082
4.44364
7.22861
-9.94472
2.37894
-3.86442
-1.83844
-3.78216
3.6623
2.13714
3.79256
-4.21599
-2.51752
-4.19927
-4.29113
-2.67506
4.31552
2.41389
-4.40708
-3.78248
4.53107
2.38666
4.07649
-10.1283
4.34795
-7.98605
-9.25395
-3.77962
-9.11303
3.49709
2.61832
-6.1154
-2.04727
8.43951
-4.24987
7.1924
-5.18176
-3.36737
-5.21675
-6.90398
-1.72991
-6.76863
-8.94732
8.46201
-9.23696
8.59251
12.6388
-5.67402
-6.96479
-3.96678
-2.47147
3.92182
-0.492211
-3.71035
3.71641
0.0508469
3.83215
4.75472
4.2625
-3.88351
-1.92948
-3.82802
3.82514
2.04753
3.88962
6.77259
2.25143
6.78753
-6.47494
-2.56652
-6.60245
9.13672
-8.71064
2.86591
-2.79806
5.33756
2.65611
-5.12597
-2.83113
6.22912
-3.17794
-3.05118
-12.3571
10.8483
1.50877
-4.86688
-0.430612
-0.242687
-5.58534
-3.77417
5.47063
0.279295
11.1276
7.35345
-5.51539
5.76304
6.16941
6.22149
-0.175989
5.91747
-5.20797
5.34419
-2.58404
-2.76015
5.35639
-5.53555
-1.24606
-5.44663
4.20057
0.375479
1.70458
-1.48417
-1.90903
-0.564908
-1.84378
1.43914
0.99866
1.56963
0.907345
1.63462
-2.94441
0.591127
2.35328
-2.03706
-1.72481
-3.67871
-1.13716
4.81587
5.64431
2.10783
-5.57116
-0.193632
2.64576
-2.59229
-0.741647
-2.93706
2.17998
-2.92162
-3.54074
-1.86835
5.40909
-3.36939
-0.458636
3.31702
0.551989
-3.8273
-2.09882
3.78973
0.329347
-3.1274
6.19001
-3.06261
-5.05688
2.52901
3.55999
4.53774
-4.79081
2.44865
2.34216
-1.23083
4.28774
0.915621
4.42647
-7.00916
4.80573
5.71718
3.23456
-6.16769
0.982425
-6.02673
8.41172
-7.26079
-1.15093
3.92901
4.48271
7.08717
5.55164
-5.70206
12.7892
-1.05177
-6.20902
7.0785
-3.84394
4.78032
-8.62426
-10.332
4.12294
-9.23309
11.0337
-1.8006
-3.61697
-8.37217
12.8501
-1.20766
-11.6424
8.6078
-4.2324
-4.28848
8.52088
-6.8697
6.81136
-1.95977
-4.85159
-10.1576
-5.7242
10.2626
1.58016
-9.88523
12.2642
-2.65663
4.15125
0.713601
4.17543
3.28803
-5.43332
2.14529
3.58167
-5.54144
2.06322
-7.49654
-6.78256
12.1262
-5.34362
-10.5622
-9.5884
-0.973772
2.55679
9.70738
-9.52999
7.47049
2.0595
3.30215
0.587472
-3.37367
-0.408493
0.24413
4.51782
-4.76195
4.0367
4.19463
3.25398
1.26383
3.84701
2.10837
-3.86968
-0.329589
-4.16158
1.48652
-1.74769
-3.68604
5.17255
-4.06342
0.37738
-2.74287
-3.49788
6.24075
-4.58131
3.0376
3.15241
5.08513
-4.91329
1.41541
-2.39422
-2.51907
2.64801
-4.3957
1.9866
3.18595
4.37326
0.59078
5.91696
6.20921
-8.53528
0.54923
11.2973
-9.57912
2.48705
8.62113
-9.95753
0.369133
-8.74389
0.976258
-5.22613
-5.13914
5.13236
-6.86227
-3.4919
6.21539
0.572142
-6.33303
-0.435596
-6.07058
-2.87675
-6.52017
-3.07545
-6.16151
-8.77751
-1.68552
-7.09199
6.77649
-6.6915
-3.50237
7.43265
1.15987
-7.48444
7.37942
-7.5492
7.21155
0.0943129
3.6221
4.35682
1.88535
-2.39128
4.27663
-5.06929
7.32071
-8.66551
3.59623
4.12892
-6.69544
-4.5366
5.07311
4.06361
5.39179
8.97787
-10.4728
1.49489
-10.7465
12.0814
-1.33493
-16.5493
5.80289
-7.57148
2.54113
0.324782
2.60054
0.60317
2.47895
-3.08212
-2.19489
-2.13385
-2.3956
-3.49316
5.88876
1.11163
-3.41793
2.3063
-3.57425
4.68589
0.00625459
-3.42418
5.20281
-2.72386
5.52759
-3.568
1.95959
3.50526
5.81978
-2.31453
4.42123
-1.76512
1.90307
-4.2176
-1.5901
-2.95938
5.09652
-3.28138
3.65876
-0.334569
3.99333
-4.08249
0.904552
-0.828508
3.36613
3.6415
4.32044
-3.05661
2.94833
-4.71345
-1.26927
-4.12267
-0.93672
-0.217354
-3.84332
4.06067
6.06279
-6.28014
-5.30748
9.56658
-4.25911
7.72938
-5.46046
-2.26892
-4.3112
-4.39944
3.93994
1.97753
9.70691
0.178628
-5.63909
-5.02934
-4.00528
3.19447
2.14972
-1.87924
3.388
2.12192
-0.417338
0.481826
1.08781
1.84622
-1.3644
0.285176
1.56105
-1.199
1.86555
0.780207
-1.9236
0.0798141
-1.26156
3.44154
1.09172
-2.09038
0.725982
0.962337
-3.54638
4.92394
-2.64977
-2.27417
5.88627
1.14878
-3.79855
4.29785
-3.92237
2.40566
-3.54282
-1.39289
-5.31526
-3.5493
-2.53192
4.83822
-3.35685
5.46468
1.29748
-5.27105
6.56853
-3.60817
1.73982
-3.06276
3.84297
-1.07772
-1.98505
2.9459
2.46319
-3.08491
0.147843
-0.139003
2.38752
-2.52653
-0.534101
-2.57117
-4.57494
4.90429
-2.10463
4.55328
2.172
-1.91637
6.46965
1.80907
-3.72545
-3.24781
-3.70644
-1.38328
3.15446
-0.586326
-4.30464
-5.43792
4.20448
0.221997
-6.83557
7.77852
-0.942954
-3.85522
-0.950503
4.87951
-6.01204
0.470597
-3.94882
3.8297
4.74532
4.96732
-11.4203
-0.222092
-6.20576
1.09996
-7.30572
5.58268
-3.59522
7.71816
-10.3539
6.85151
-9.19402
6.56723
-0.738496
6.23574
-4.09045
2.7992
-8.5234
-6.94324
5.46646
-2.75079
6.18006
-3.11347
9.29353
-5.77009
5.22713
4.0664
-1.01757
-4.19918
-5.23432
4.21674
-0.00719033
4.16824
4.98385
-2.87548
4.65426
2.25896
-4.65317
-2.13674
-6.48945
1.83627
-3.33704
-1.91965
3.75593
3.16548
3.75295
1.23686
-3.34446
7.23388
-8.20765
-1.89026
-3.24888
5.20457
-0.987827
3.38893
-6.63781
-1.8372
4.81204
-0.754067
-4.05798
0.861977
-4.35388
1.6776
-6.03148
5.18466
-5.62026
2.24698
-9.81846
-5.23747
-5.18971
-2.27885
-5.27035
-7.62364
5.34479
-1.82075
5.55867
-8.59412
7.84005
-3.48728
8.83207
-5.46611
-1.05406
5.89608
1.31547
10.1475
0.117063
-4.65366
-1.93221
3.83899
-1.90678
1.26226
-3.72626
0.112739
2.47285
3.41342
-6.67342
-0.0220193
-4.67568
-3.9185
7.98211
5.64808
11.7109
1.23811
9.18015
-1.19804
10.4183
4.19376
4.43316
-3.0454
4.54029
1.01527
4.6115
-0.859247
2.81884
1.74129
1.7585
0.833792
2.29395
1.34756
3.1985
0.116381
-2.01747
4.65129
-8.65657
-0.987799
-8.11272
1.15242
5.42867
-4.27625
3.00333
-0.853605
1.09655
-0.020942
-1.52546
1.54641
-2.78109
-1.9428
-0.381754
-1.62822
2.3542
1.81332
-1.97245
-0.808645
0.3234
-3.8727
3.21942
-3.07157
-0.608387
5.96014
-2.81898
0.292455
-1.07916
-2.27871
-2.84362
2.76381
6.17472
0.294936
3.11211
5.19922
3.10041
0.224928
3.90306
-5.70366
-3.59348
-5.92576
-0.343081
4.53643
1.71524
7.99214
5.78165
4.79382
-1.84399
-10.0516
6.54468
-2.00439
5.20975
-1.15177
-4.87971
5.05383
2.26688
-5.62597
0.00571319
-4.874
-6.87838
-0.490943
8.33099
-9.65659
8.60254
5.72579
1.3662
-4.44515
-0.744568
4.28839
0.144768
10.563
-0.904205
-7.15801
8.06221
-4.52447
3.53667
0.727655
2.66035
2.27406
1.42046
-5.73755
-10.0138
-1.96628
-1.5801
-4.24044
0.575424
-2.38874
6.10199
-2.56532
3.83307
5.4969
6.59344
-2.0673
-4.21284
6.3264
-2.49334
4.10011
)
;
boundaryField
{
wall-4
{
type calculated;
value uniform 0;
}
velocity-inlet-5
{
type calculated;
value uniform -3.75095;
}
velocity-inlet-6
{
type calculated;
value uniform -5.62643;
}
pressure-outlet-7
{
type calculated;
value nonuniform List<scalar> 8(3.21569 7.69004 4.32518 9.7576 7.50188 5.16541 5.83299 9.02456);
}
wall-8
{
type calculated;
value uniform 0;
}
frontAndBackPlanes
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
| |
4e4fe20d3f6784c81884df8556f4c5a0b90e95d3 | af0ecafb5428bd556d49575da2a72f6f80d3d14b | /CodeJamCrawler/dataset/08_8827_30.cpp | 223a385f0fe9ee5579e08a060c2d80afd68048bf | [] | no_license | gbrlas/AVSP | 0a2a08be5661c1b4a2238e875b6cdc88b4ee0997 | e259090bf282694676b2568023745f9ffb6d73fd | refs/heads/master | 2021-06-16T22:25:41.585830 | 2017-06-09T06:32:01 | 2017-06-09T06:32:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,727 | cpp | 08_8827_30.cpp | #include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <algorithm>
enum TravelTypes
{
ArrivalA,
ArrivalB,
DepartureA,
DepartureB
};
struct Time
{
int hour;
int minute;
int whole;
TravelTypes travelType;
bool operator<(const Time& date)
{
if (this->whole != date.whole)
{
return this->whole < date.whole;
}
else
{
return this->travelType < date.travelType;
}
}
};
void GetTimeInFile(std::ifstream& file, Time& time, int turnAroundTime, TravelTypes type)
{
file >> time.hour;
file.ignore();
file >> time.minute;
file.ignore();
if (type == ArrivalA || type == ArrivalB) time.minute += turnAroundTime;
time.travelType = type;
time.whole = (time.hour * 100) + time.minute;
}
typedef std::vector<Time> TimeVector;
void main()
{
std::ifstream file("codejam.in", std::ios_base::in);
std::ofstream result("codejam.out", std::ios_base::out);
int casesCount;
file >> casesCount;
file.ignore();
for (int caseIndex = 0; caseIndex < casesCount; caseIndex++)
{
int turnAroundTime;
file >> turnAroundTime;
file.ignore();
int na, nb = 0;
file >> na;
file.ignore();
file >> nb;
file.ignore();
TimeVector times;
int currentTrainsInA = 0;
int currentTrainsInB = 0;
int trainsNeededInB = 0;
int trainsNeededInA = 0;
for (int i = 0; i < na; i++)
{
Time currentTime;
GetTimeInFile(file, currentTime, turnAroundTime, DepartureA);
times.push_back(currentTime);
GetTimeInFile(file, currentTime, turnAroundTime, ArrivalB);
times.push_back(currentTime);
}
for (int i = 0; i < nb; i++)
{
Time currentTime;
GetTimeInFile(file, currentTime, turnAroundTime, DepartureB);
times.push_back(currentTime);
GetTimeInFile(file, currentTime, turnAroundTime, ArrivalA);
times.push_back(currentTime);
}
std::sort(times.begin(), times.end());
for (unsigned int i = 0; i < times.size(); i++)
{
TravelTypes& travelType = times[i].travelType;
if (travelType == ArrivalA) currentTrainsInA++;
if (travelType == ArrivalB) currentTrainsInB++;
if (travelType == DepartureA) currentTrainsInA--;
if (travelType == DepartureB) currentTrainsInB--;
if (currentTrainsInB < trainsNeededInB) trainsNeededInB = currentTrainsInB;
if (currentTrainsInA < trainsNeededInA) trainsNeededInA = currentTrainsInA;
}
result << "Case #" << caseIndex + 1 << ": " << abs(trainsNeededInA) << ' ' << abs(trainsNeededInB) << '\n';
}
} |
de9015bc1db7368fc8170e953c641177c4a145de | dd19815187c9e1b1bcd3aac8ee75657077a7059e | /DataApi2/jni/Editor/Editor_DataFeatureGPSLine.cpp | 67c94f35acbebf1482fb1875e44e90c5b7e32f40 | [] | no_license | LeiFromNavinfo/GithubTest | 89b147c51a9f2ba7cef29b253e19e59f2d073242 | 5af73572860b4eaf5e658cb45d535b064df32728 | refs/heads/master | 2020-12-24T06:31:12.971257 | 2016-09-02T08:23:26 | 2016-09-02T08:23:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,010 | cpp | Editor_DataFeatureGPSLine.cpp | //
// DataFeatureGPSLine.cpp
// EditorSDK
//
// Created by lidejun on 15/11/4.
// Copyright (c) 2015骞� navinfo. All rights reserved.
//
#include <stdio.h>
#include "Editor.h"
#include "Editor_Data.h"
#include "DataTransfor.h"
#include "Logger.h"
namespace Editor
{
DataFeatureGPSLine::DataFeatureGPSLine()
{
}
DataFeatureGPSLine::~DataFeatureGPSLine()
{
}
JSON DataFeatureGPSLine::GetTotalPart()
{
Document document;
Document docTmp;
document.SetObject();
Document::AllocatorType& allocator = document.GetAllocator();
Value each_json_value(kStringType);
std::string each_str_value ;
document.AddMember("rowid",GetRowId(),allocator);
each_str_value = GetAsString(0);
each_json_value.SetString(each_str_value.c_str(), each_str_value.size(),allocator);
document.AddMember("rowkey",each_json_value,allocator);
EditorGeometry::WkbGeometry* geoWkb = GetAsWkb(1);
each_str_value = DataTransfor::Wkb2Wkt(geoWkb);
each_json_value.SetString(each_str_value.c_str(), each_str_value.size(),allocator);
document.AddMember("geometry",each_json_value,allocator);
each_str_value = GetAsString(2);
each_json_value.SetString(each_str_value.c_str(), each_str_value.size(),allocator);
document.AddMember("name",each_json_value,allocator);
document.AddMember("kind",GetAsInteger(3),allocator);
document.AddMember("source",GetAsInteger(4),allocator);
StringBuffer buffer;
Writer<StringBuffer> writer(buffer);
document.Accept(writer);
std::string result = buffer.GetString();
JSON json;
json.SetJsonString(result);
return json;
}
int DataFeatureGPSLine::SetTotalPart(JSON json)
{
rapidjson::Document doc;
doc.Parse<0>(json.GetJsonString().c_str());
if(doc.HasParseError())
{
return -1;
}
for(rapidjson::Document::MemberIterator ptr = doc.MemberBegin(); ptr != doc.MemberEnd(); ++ptr)
{
std::string sKey = (ptr->name).GetString();
rapidjson::Value &valueKey = (ptr->value);
std::string sValue = "";
if((ptr->value).IsNull())
{
continue;
}
if(!(ptr->value).IsString() || !(ptr->value).IsNumber())
{
rapidjson::StringBuffer buffer;
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
valueKey.Accept(writer);
sValue = buffer.GetString();
}
if(sKey == "rowid")
{
SetRowId((ptr->value).GetInt());
}
if(sKey == "rowkey")
{
SetAsString(0,(ptr->value).GetString());
}
if(sKey == "geometry")
{
std::string wktGeo = (ptr->value).GetString();
//Logger::LogD("//////-----------------\\\\\\wktGeo:%s",wktGeo.c_str());
EditorGeometry::WkbGeometry * wkb= DataTransfor::Wkt2Wkb(wktGeo);
int iflag = SetAsWkb(1, wkb);
//Logger::LogD("///////-------------------\\\\\\iflag of SetAsWkb:%d",iflag);
delete[] wkb;
}
if(sKey == "name")
{
SetAsString(2,(ptr->value).GetString());
}
if(sKey == "kind")
{
SetAsInteger(3,(ptr->value).GetInt());
}
if(sKey == "source")
{
SetAsInteger(4,(ptr->value).GetInt());
}
}
return 0;
}
}
|
3b05b522d743d2c7c0360109dd890e9dc93d90e1 | 8b60aa56bf5b497db177cd1048bde0bdfb0e0e55 | /test.cpp | 1b36aa28e12f9d19955e88fc69841b4fef1f4144 | [] | no_license | wiilen/woj-pat-c | 5fdeae8be3da0bd6ba1919ce3f36da0d7220f7a1 | c811ec9471d5d93299fb68c46271fa3b83529f44 | refs/heads/master | 2021-01-25T08:59:55.783171 | 2015-03-25T13:00:51 | 2015-03-25T13:00:51 | 32,623,870 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 76 | cpp | test.cpp | #include<iostream>
using namespace std;
int main(){
cout<<('N'-'A'+10);
}
|
ee04a0b3a60bf18ac8725fb0a8b3dbd528cc1b5f | eae83a1d7ffe48d32fa75a9fc719fcd55417cbe4 | /Classes/AirPlaneConfig.cpp | 585eddca90ad2d314f7ff8da6530f256375c0122 | [] | no_license | doanhtdpl/game-ban-may-bay-2 | cbe78b7e3336b71ce2adc2f0d17118e62c292eb1 | af3ceafa640d01b2f50c38eb5d8dc659da487a4e | refs/heads/master | 2021-01-01T06:26:38.924442 | 2014-04-27T16:17:10 | 2014-04-27T16:17:10 | 40,473,779 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,372 | cpp | AirPlaneConfig.cpp | #include "AirPlaneConfig.h"
#include "cocos2d.h"
AirPlaneConfig::AirPlaneConfig()
{
}
AirPlaneConfig::~AirPlaneConfig()
{
}
bool AirPlaneConfig::insert( std::string bucket, std::string component )
{
if( strcmp( bucket.c_str(), "ID" ) == 0 )
{
id = new char[component.length()+1];
strcpy( id, component.c_str() );
}
else if( strcmp( bucket.c_str(), "Hp" ) == 0 )
{
cocos2d::CCString *str = cocos2d::CCString::create(component);
hp = str->intValue();
}
else if( strcmp( bucket.c_str(), "Damage" ) == 0 )
{
cocos2d::CCString *str = cocos2d::CCString::create(component);
damage = str->intValue();
}
else if( strcmp( bucket.c_str(), "HasBullet" ) == 0 )
{
hasBullet = strcmp( component.c_str(), "TRUE" ) == 0 ? true : false;
}
else if( strcmp( bucket.c_str(), "Image" ) == 0 )
{
image = new char[component.length()+1];
strcpy( image, component.c_str() );
}
else if( strcmp( bucket.c_str(), "Velocity" ) == 0 )
{
cocos2d::CCString *str = cocos2d::CCString::create(component);
fVelocity = str->floatValue();
}
else if( strcmp( bucket.c_str(), "BulletType" ) == 0 )
{
bulletType = new char[component.length()+1];
strcpy( bulletType, component.c_str() );
}
else if( strcmp( bucket.c_str(), "Direction" ) == 0 )
{
iDirection = atoi(component.c_str());
}
return true;
} |
1829afcbf732e5d4db260fd6aca9cddc561c2a04 | 46e3575e04c55b84c3c7bb5dc60fa6d34d5f4236 | /KaboomServer/src/components/JetpackComponent.h | 7dea36cd77979c1532c81f153b355e8381611908 | [] | no_license | blockspacer/Kaboom | ba269827bdc86cba890f48ee0cc0134f7bda8acc | 6b75e1a5ff08ef1ebdb73bbd07c4fe8214644e58 | refs/heads/master | 2021-03-03T19:16:26.676258 | 2017-04-20T04:58:37 | 2017-04-20T04:58:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,344 | h | JetpackComponent.h | #pragma once
#include <components/Component.h>
class JetpackComponent : public Component {
public:
JetpackComponent(
int fuel = 0,
int capacity = 0,
int refuelRate = 0,
int refuelTime = 0)
: fuel(fuel),
capacity(capacity),
refuelRate(refuelRate),
refuelTime(refuelTime) {
}
inline int getFuel() const {
return fuel;
}
inline int getCapacity() const {
return capacity;
}
inline int getRefuelRate() const {
return refuelRate;
}
inline int getRefuelTime() const {
return refuelTime;
}
private:
int fuel;
int capacity;
int refuelRate;
int refuelTime;
};
/*
#include <ctime>
#define REFUELRATE 25
#define TANKSIZE 100
#define REFUELTIME 1000
JetpackComponent::JetpackComponent(){
jumpsLeft = TANKSIZE;
beginTime = clock();
}
bool JetpackComponent::activateJetpack(){
if (jumpsLeft >= 1){
beginTime = clock();
jumpsLeft--;
return true;
}
return false;
}
void JetpackComponent::refillJetpack(){
if (jumpsLeft >= TANKSIZE){
return;
}
clock_t endTime = clock();
if (endTime-beginTime<REFUELTIME){
return;
}
beginTime = clock();
if (100 - jumpsLeft>REFUELRATE){
jumpsLeft = TANKSIZE - jumpsLeft;
}
jumpsLeft+=REFUELRATE;
}
*/ |
0dcd7a08fdc643580d8884404bc14c5e38931cbc | ea401c3e792a50364fe11f7cea0f35f99e8f4bde | /released_plugins/v3d_plugins/neurontracing_neutube/src_neutube/neurolabi/gui/test/zflyemsynaseannotationtest.h | 22bb2677f1a4e7ba1aca1f91efb9a7b37fd8d938 | [
"BSD-2-Clause",
"MIT",
"GPL-1.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"GPL-2.0-only"
] | permissive | Vaa3D/vaa3d_tools | edb696aa3b9b59acaf83d6d27c6ae0a14bf75fe9 | e6974d5223ae70474efaa85e1253f5df1814fae8 | refs/heads/master | 2023-08-03T06:12:01.013752 | 2023-08-02T07:26:01 | 2023-08-02T07:26:01 | 50,527,925 | 107 | 86 | MIT | 2023-05-22T23:43:48 | 2016-01-27T18:19:17 | C++ | UTF-8 | C++ | false | false | 1,970 | h | zflyemsynaseannotationtest.h | #ifndef ZFLYEMSYNASEANNOTATIONTEST_H
#define ZFLYEMSYNASEANNOTATIONTEST_H
#include "ztestheader.h"
#include "neutubeconfig.h"
#include "flyem/zsynapseannotationarray.h"
#include "flyem/zintcuboidarray.h"
#include "flyem/zflyemdatabundle.h"
#include "zgraph.h"
#ifdef _USE_GTEST_
TEST(ZFlyEmSyanpzeAnnotation, synapseCount) {
FlyEm::ZSynapseAnnotationArray synapseArray;
synapseArray.loadJson(
GET_TEST_DATA_DIR + "/benchmark/flyem/annotations-synapse.json");
//synapseArray.print();
std::vector<int> tbarCount = synapseArray.countTBar();
EXPECT_EQ(100000001, (int) tbarCount.size());
EXPECT_EQ(0, tbarCount[100]);
EXPECT_EQ(1, tbarCount[65535]);
EXPECT_EQ(1, tbarCount[16711935]);
EXPECT_EQ(1, tbarCount[100000000]);
std::vector<int> psdCount = synapseArray.countPsd();
EXPECT_EQ(100000001, (int) psdCount.size());
EXPECT_EQ(0, psdCount[100]);
EXPECT_EQ(1, psdCount[65535]);
EXPECT_EQ(2, psdCount[16711935]);
EXPECT_EQ(3, psdCount[100000000]);
std::vector<int> count = synapseArray.countSynapse();
EXPECT_EQ(100000001, (int) psdCount.size());
EXPECT_EQ(0, count[100]);
EXPECT_EQ(2, count[65535]);
EXPECT_EQ(3, count[16711935]);
EXPECT_EQ(4, count[100000000]);
}
TEST(ZFlyEmSyanpzeAnnotation, buildConnection) {
FlyEm::ZSynapseAnnotationArray synapseArray;
synapseArray.loadJson(
GET_TEST_DATA_DIR + "/benchmark/flyem/annotations-synapse.json");
ZGraph *graph = synapseArray.getConnectionGraph();
EXPECT_EQ(100000001, graph->getVertexNumber());
EXPECT_EQ(3, graph->getEdgeNumber());
ZFlyEmDataBundle bundle;
bundle.loadJsonFile(GET_TEST_DATA_DIR + "/benchmark/flyem/data_bundle.json");
FlyEm::ZSynapseAnnotationArray *synapseAnnotation =
bundle.getSynapseAnnotation();
graph = synapseAnnotation->getConnectionGraph();
graph->print();
EXPECT_EQ(100000001, graph->getVertexNumber());
EXPECT_EQ(3, graph->getEdgeNumber());
}
#endif
#endif // ZFLYEMSYNASEANNOTATIONTEST_H
|
62498087646f860371518153080077251387f0e3 | 91a8643a41a5617d5685215935fbf6fb283c2ffc | /Source/Objects/RNObjectInternals.h | c47767ffa4df9093f89a6dff6a5e8c5505ca21d1 | [
"MIT"
] | permissive | Unbeaten-East/Rayne | 3ed11f9aa1ded6283df68bf6c3eabb001ec51b01 | 252b78671799a03b159e6bd264ce65d438cfe0bf | refs/heads/master | 2023-04-19T21:49:37.681937 | 2021-01-17T12:31:03 | 2021-01-17T12:31:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 737 | h | RNObjectInternals.h | //
// RNObjectInternals.h
// Rayne
//
// Copyright 2015 by Überpixel. All rights reserved.
// Unauthorized use is punishable by torture, mutilation, and vivisection.
//
#ifndef __RAYNE_OBJECTINTERNALS_H__
#define __RAYNE_OBJECTINTERNALS_H__
#include "../Base/RNBase.h"
namespace RN
{
class Object;
RNAPI Object *__InitWeak(Object **weak, Object *value);
RNAPI Object *__StoreWeak(Object **weak, Object *value);
RNAPI Object *__LoadWeakObjectRetained(Object **weak);
RNAPI Object *__RemoveWeakObject(Object **weak);
// Not exported in any way, used by the deallocation routine of the Object class itself
void __DestroyWeakReferences(Object *object);
void __InitWeakTables();
}
#endif /* __RAYNE_OBJECTINTERNALS_H__ */
|
fc9e20bcf9a20b7d6b536156075cf6212c3f3b58 | 5f370e807492e4bb4f55be5dc32c1ac849d41078 | /freewayhash/sip_hash_v2.h | d2b1b2dade53a0c32c69b4c5d75470d4dc9a68d7 | [
"Apache-2.0"
] | permissive | operamint/highwayhash | 4c7f859f7b210e84c345c9b8e8b4f7ab50c3bfbd | 1e5ca32f7947149a607dc8876773317e606bca95 | refs/heads/master | 2020-07-22T04:52:29.578980 | 2019-09-24T09:05:44 | 2019-09-24T09:05:44 | 207,079,690 | 0 | 0 | null | 2019-09-08T07:52:01 | 2019-09-08T07:52:00 | null | UTF-8 | C++ | false | false | 6,290 | h | sip_hash_v2.h | // Copyright 2019 operamint (github). All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef FREEWAYHASH_SIP_HASH_V2_H_
#define FREEWAYHASH_SIP_HASH_V2_H_
// Portable, very fast standalone C++ SipHash implementation.
// freewayhash::v2::SipHash.
//
// This a branch-free and cleaner implementation. It only has a minor usage
// disadvantage compared to freewayhash::SipHash:
//
// The implementation is streaming-capable, meaning it can incrementally compute
// a hash by multiple calls to Update() before Finalize(). However, all data blocks
// given to Update() must be multipy of 8 bytes (need not be aligned).
// This is adequate for one-shot hashing or for streaming of data, but not for
// e.g. encoding multiple arbitrary length data blocks into one single hash.
// For general usage it is therefore recommended to use freewayhash::SipHash.
#include <cstdint>
#include <cstring>
#ifdef _MSC_VER
#define HH_INLINE __forceinline
#else
#define HH_INLINE inline
#endif
namespace freewayhash { namespace v2 {
using HH_U64 = unsigned long long;
using std::uint8_t;
using std::size_t;
template <int bits> HH_INLINE HH_U64 RotateLeft(HH_U64 x) {
return (x << bits) | (x >> (64 - bits));
}
template <int u, int v> HH_INLINE void HalfRound(uint64_t& a, uint64_t& b, uint64_t& c, uint64_t& d) {
a += b;
c += d;
b = RotateLeft<u>(b) ^ a;
d = RotateLeft<v>(d) ^ c;
a = RotateLeft<32>(a);
}
HH_U64 Le64ToHost(HH_U64);
}}
#if defined(_WIN32) || (defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
inline freewayhash::v2::HH_U64 freewayhash::v2::Le64ToHost(HH_U64 x) { return x; }
#elif defined(__APPLE__)
#include <libkern/OSByteOrder.h>
inline freewayhash::v2::HH_U64 freewayhash::v2::Le64ToHost(HH_U64 x) { return OSSwapLittleToHostInt64(x); }
#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
#include <sys/endian.h>
inline freewayhash::v2::HH_U64 freewayhash::v2::Le64ToHost(HH_U64 x) { return letoh64(x); }
#elif defined(__linux__) || defined(__CYGWIN__) || defined(__GNUC__) || defined(__GNU_LIBRARY__)
#include <endian.h>
inline freewayhash::v2::HH_U64 freewayhash::v2::Le64ToHost(HH_U64 x) { return le64toh(x); }
#else
#error "Unsupported platform. Cannot determine byte order."
#endif
namespace freewayhash { namespace v2 {
// SipHashState API.
// As of c++17, default SipHashState<> type need no <>.
template <int kUpdateIters = 2, int kFinalizeIters = 4> class SipHashState {
size_t mLength;
HH_U64 v0, v1, v2, v3;
public:
using Key = HH_U64[2];
explicit HH_INLINE SipHashState(const HH_U64 key[2]) :
mLength(0),
v0(key[0] ^ 0x736f6d6570736575),
v1(key[1] ^ 0x646f72616e646f6d),
v2(key[0] ^ 0x6c7967656e657261),
v3(key[1] ^ 0x7465646279746573) {
}
// requirement: n_bytes % 8 == 0
HH_INLINE const void* Update(const void* byte_octets, size_t n_bytes) {
const HH_U64* in_u64 = reinterpret_cast<const HH_U64 *>(byte_octets);
mLength += n_bytes;
size_t n_words = n_bytes >> 3;
HH_U64 m;
while (n_words--) {
std::memcpy(&m, in_u64++, 8);
Digest<kUpdateIters>(Le64ToHost(m));
}
return in_u64;
}
HH_INLINE HH_U64 Finalize(const void* bytes, size_t n_bytes) {
bytes = Update(bytes, n_bytes & ~7);
return Remaining(bytes, n_bytes & 7);
}
private:
// requirement: n_bytes < 8
HH_INLINE HH_U64 Remaining(const void* bytes, size_t n_bytes) {
const uint8_t* in_u8 = reinterpret_cast<const uint8_t *>(bytes);
HH_U64 m = (mLength += n_bytes) << 56;
switch (n_bytes) {
case 7: m |= HH_U64(in_u8[6]) << 48;
case 6: m |= HH_U64(in_u8[5]) << 40;
case 5: m |= HH_U64(in_u8[4]) << 32;
case 4: m |= HH_U64(in_u8[3]) << 24;
case 3: m |= HH_U64(in_u8[2]) << 16;
case 2: m |= HH_U64(in_u8[1]) << 8;
case 1: m |= HH_U64(in_u8[0]);
}
Digest<kUpdateIters>(m);
v2 ^= 0xff;
Compress<kFinalizeIters>();
return v0 ^ v1 ^ v2 ^ v3;
}
template <int rounds> HH_INLINE void Compress() {
for (int i = 0; i < rounds; ++i) {
HalfRound<13, 16>(v0, v1, v2, v3);
HalfRound<17, 21>(v2, v1, v0, v3);
}
}
template <int rounds> HH_INLINE void Digest(HH_U64 m) {
v3 ^= m;
Compress<rounds>();
v0 ^= m;
}
};
// highwayhash-like API:
template <int kUpdateIters = 2, int kFinalizeIters = 4>
HH_INLINE HH_U64 SipHash(const HH_U64 key[2], const void* bytes, const HH_U64 size) {
return SipHashState<kUpdateIters, kFinalizeIters>(key).Finalize(bytes, size);
}
template <int kUpdateIters = 2, int kFinalizeIters = 4, typename ContiguousContainer>
HH_INLINE HH_U64 SipHash(const HH_U64 key[2], const ContiguousContainer& container) {
return SipHashState<kUpdateIters, kFinalizeIters>(key)
.Finalize(container.data(), container.size() * sizeof(typename ContiguousContainer::value_type));
}
using SipHash13State = SipHashState<1, 3>;
HH_INLINE HH_U64 SipHash13(const HH_U64 key[2], const void* bytes, const HH_U64 size) {
return SipHash13State(key).Finalize(bytes, size);
}
}}
#endif
|
1bb27c058790a51a95c206606eec7d9c2ffd9940 | 451ff5a40071578341ca195908276992bd5396fa | /UVa/10424.cpp | f18a2f6d89d739a5e10078684bfb795ff48c3dd6 | [] | no_license | Tanjim131/Problem-Solving | ba31d31601798ba585a3f284bb169d67794af6c0 | 6dc9c0023058655ead7da7da08eed11bf48a0dfa | refs/heads/master | 2023-05-02T06:38:34.014689 | 2021-05-14T18:26:15 | 2021-05-14T18:26:15 | 267,421,671 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,046 | cpp | 10424.cpp | #include<iostream>
#include<cstdio>
#include<string>
#include<algorithm>
using namespace std;
inline double solve(int a,int b){
int aa = max(a,b);
int bb = min(a,b);
return (bb * 1.0)/aa;
}
int main(){
string a,b;
while(getline(cin,a) && getline(cin,b)){
if(a.size() == 0 && b.size() == 0) { printf("\n"); continue; }
int xx = 0 , yy = 0;
bool c1 = false, c2 = false;
for(int i = 0 ; i < a.size() ; i++){
a[i] = tolower(a[i]);
if(a[i] >= 'a' && a[i] <= 'z') { xx += (a[i] - 'a' + 1); c1 = true; }
}
int pp = (xx % 9 == 0) ? 9 : xx % 9;
for(int i = 0 ; i < b.size() ; i++){
b[i] = tolower(b[i]);
if(b[i] >= 'a' && b[i] <= 'z') { yy += (b[i] - 'a' + 1); c2 = true; }
}
if(!c1 && !c2) { printf("\n"); continue; }
int qq = (yy % 9 == 0) ? 9: yy % 9;
if(pp == 0 || qq == 0 || !c1 || !c2) printf("0.00 %\n");
else printf("%0.2f %\n",solve(pp,qq) * 100);
}
return 0;
}
|
343164eff7e282243ad9b6246040a034b99f76cb | 974d04d2ea27b1bba1c01015a98112d2afb78fe5 | /paddle/phi/backends/onednn/axpy_handler.h | f9c21187ddb91e6f6e3934c28bbe9b7e73164092 | [
"Apache-2.0"
] | permissive | PaddlePaddle/Paddle | b3d2583119082c8e4b74331dacc4d39ed4d7cff0 | 22a11a60e0e3d10a3cf610077a3d9942a6f964cb | refs/heads/develop | 2023-08-17T21:27:30.568889 | 2023-08-17T12:38:22 | 2023-08-17T12:38:22 | 65,711,522 | 20,414 | 5,891 | Apache-2.0 | 2023-09-14T19:20:51 | 2016-08-15T06:59:08 | C++ | UTF-8 | C++ | false | false | 2,000 | h | axpy_handler.h | // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include <memory>
#include "dnnl.hpp" // NOLINT
namespace phi {
namespace funcs {
///
/// @brief Helper class for AXPY execution using oneDNN library.
///
/// @tparam T Data type.
///
template <typename T>
class OneDNNAXPYHandler {
public:
OneDNNAXPYHandler(OneDNNAXPYHandler&) = delete;
OneDNNAXPYHandler(OneDNNAXPYHandler&&) = delete;
OneDNNAXPYHandler& operator=(OneDNNAXPYHandler&) = delete;
OneDNNAXPYHandler& operator=(OneDNNAXPYHandler&&) = delete;
///
/// @brief Constructor.
///
/// @param[in] n The number of elements in tensor (assumed 1D
/// tensor)
/// @param[in] alpha The alpha coefficient.
/// @param[in] onednn_engine The oneDNN engine.
///
OneDNNAXPYHandler(int64_t n, T alpha, dnnl::engine onednn_engine);
///
/// @brief Executes AXPY.
///
/// @param[in] x The pointer to input X tensor data.
/// @param[out] y The pointer to output Y tensor data.
///
void operator()(const T* x, T* y);
private:
OneDNNAXPYHandler() = delete;
// Private implementation idiom to hide dependency on oneDNN headers.
class Impl;
// We need custom deleter, since the compiler is unable to parameterize
// an allocator's default deleter due to incomple type.
std::unique_ptr<Impl, void (*)(Impl*)> pimpl_;
};
} // namespace funcs
} // namespace phi
|
c4a09d8bba06146dce0f8b4aa896a09a716d33a7 | e35915921d3108c4551ff5bb5cd9c85209e1897e | /CGwork0218/Sharp.h | 2c4bd33852e12dc80be4bcf2063e4952e8264c95 | [] | no_license | hesitationer/CGwork0218 | c1dd77bdf5ff9b8d7930d338db73eacc4c7886ca | 2ba0cd06e80437f2fbffd806aa9a0ec8ddf1f055 | refs/heads/master | 2020-03-23T11:26:33.196900 | 2018-03-23T06:17:53 | 2018-03-23T06:17:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 691 | h | Sharp.h | #if !defined(AFX_SHARP_H__1EACE4B6_B622_4AC8_B3FB_1C13AF260D7B__INCLUDED_)
#define AFX_SHARP_H__1EACE4B6_B622_4AC8_B3FB_1C13AF260D7B__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#include "afx.h"
#endif // _MSC_VER > 1000
#define pi 3.14
#include <math.h>
class CSharp : public CObject
{
public:
long m_lPenColor;
double f[3][3];
public:
virtual void change(int pyx, int pyy, int xz);
virtual void DrawSharp(CDC *pDC);
CSharp();
virtual ~CSharp();
void XuanZhuan(double th);
double GetY(double x, double y, double d);
double GetX(double x, double y, double d);
void PingYi(double dx, double dy);
};
#endif // !defined(AFX_SHARP_H__1EACE4B6_B622_4AC8_B3FB_1C13AF260D7B__INCLUDED_)
|
8a148078599e0e4be856d699508c93f76b4ddf81 | 07c9257308a15aba0d9db532eabac7b4cc836829 | /CodeChef/Mock tests/Foundation/Many Chef.cpp | 22a8e6efe15dc72b091b8cc8c704cb9e27ac696d | [] | no_license | tadeeshaRoy/Practise | 9e19d4f273471df26a41a0585a125d9fcd7b6ba1 | cdab4c793e3474a0853977fa093a0c7371ef8257 | refs/heads/master | 2021-07-06T08:14:23.443912 | 2020-07-19T11:33:45 | 2020-07-19T11:33:45 | 142,449,324 | 0 | 0 | null | 2018-09-02T16:50:16 | 2018-07-26T14:04:36 | C++ | UTF-8 | C++ | false | false | 3,660 | cpp | Many Chef.cpp | /*
Chef Ciel wants to put a fancy neon signboard over the entrance of her restaurant. She has not enough money to buy the new one so she bought some old neon signboard through the internet. Ciel was quite disappointed when she received her order - some of its letters were broken. But she realized that this is even better - she could replace each broken letter by any letter she wants. So she decided to do such a replacement that the resulting signboard will contain the word "CHEF" as many times as possible.
We can model the signboard as a string S having capital letters from 'A' to 'Z', inclusive, and question marks '?'. Letters in the string indicate the intact letters at the signboard, while question marks indicate broken letters. So Ciel will replace each question mark with some capital letter and her goal is to get the string that contains as many substrings equal to "CHEF" as possible. If there exist several such strings, she will choose the lexicographically smallest one.
Note 1. The string S = S1...SN has the substring "CHEF" if for some i we have SiSi+1Si+2Si+3 = "CHEF". The number of times "CHEF" is the substring of S is the number of those i for which SiSi+1Si+2Si+3 = "CHEF".
Note 2. The string A = A1...AN is called lexicographically smaller than the string B = B1...BN if there exists K from 1 to N, inclusive, such that Ai = Bi for i = 1, ..., K-1, and AK < BK. In particular, A is lexicographically smaller than B if A1 < B1. We compare capital letters by their positions in the English alphabet. So 'A' is the smallest letter, 'B' is the second smallest letter, ..., 'Z' is the largest letter.
Input
The first line of the input contains an integer T denoting the number of test cases. The description of T test cases follows. The only line of each test case contains a string S.
Output
For each test case, output a single line containing the content of the signboard Chef Ciel will come up with. That is you should output the lexicographically smallest string that could be obtained from the input string by replacing all its question marks by some capital letters and having as many substrings equal to "CHEF" as possible.
Constraints
1 ≤ T ≤ 2013
1 ≤ length of S ≤ 2013
Each character in S is either a capital letter from 'A' to 'Z', inclusive, or the question mark '?'.
Example
Input:
5
????CIELIS???E?
????CIELISOUR???F
T?KEITE?SY
????????
???C???
Output:
CHEFCIELISACHEF
CHEFCIELISOURCHEF
TAKEITEASY
CHEFCHEF
AAACHEF
Explanation
Example Case 1. Here the resulting string can have at most 2 substrings equal to "CHEF". For example, some possible such strings are:
CHEFCIELISACHEF
CHEFCIELISQCHEF
CHEFCIELISZCHEF
However, lexicographically smallest one is the first one.
Example Case 3. Here the resulting string cannot have "CHEF" as its substring. Therefore, you must simply output the lexicographically smallest string that can be obtained from the given one by replacing question marks with capital letters.
*/
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main() {
int t;
cin>>t;
while(t--)
{
string A;cin>>A;
int l=A.size();
vector<char> res;
for(int i=(l-1);i>=0;i--)
{
if((A[i]=='F'||A[i]=='?') && (A[i-1]=='E'||A[i-1]=='?') &&
(A[i-2]=='H'||A[i-2]=='?')&&(A[i-3]=='C'||A[i-3]=='?'))
{
res.push_back('F');res.push_back('E');res.push_back('H');res.push_back('C');
i-=3;
}
else if(A[i]=='?') res.push_back('A');
else res.push_back(A[i]);
}
reverse(res.begin(),res.end());
for(int i=0;i<l;i++)
cout<<res[i];
cout<<endl;
}
return 0;
}
|
1b05f9acdf293a9e83dba165e8c3cd8cb078c0cc | 91b66eaad3fa6821075abfe54b6fa89b73a89af7 | /branches/unreleased/sandbox/mrg/kmcl/lcm2ros/lcm2ros.cpp | 1267b4a8b65b8bc0c57e266085d6107ec31dab3b | [] | no_license | yutakage/mit-ros-pkg | 635acf0783763affbc3d1b7280d19f70d12c5b95 | 05508bb956819eeff71c26ac9ecf62d3d3aab5db | refs/heads/master | 2023-03-19T06:21:45.511617 | 2019-02-05T20:53:10 | 2019-02-05T20:53:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,792 | cpp | lcm2ros.cpp | #include <stdio.h>
#include <signal.h>
#include <sys/types.h>
#include <dirent.h>
#include <iostream>
#include <algorithm>
#include <math.h>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <fstream>
// lcm and visualization:
#include <lcm/lcm.h>
#include <bot_core/rotations.h>
#include <bot_core/trans.h>
#include <lcmtypes/bot_core.h>
#include <lcmtypes/ps_pf_cloud_t.h>
#include <ros/ros.h>
#include <tf/transform_broadcaster.h>
#include <nav_msgs/Odometry.h>
#include "geometry_msgs/PoseArray.h"
#include "geometry_msgs/Pose.h"
#include <sensor_msgs/LaserScan.h>
#include <geometry_msgs/PointStamped.h>
#include <tf/transform_listener.h>
using namespace std;
typedef struct {
lcm_t* publish_lcm;
lcm_t* subscribe_lcm;
ros::Duration transform_tolerance_;
tf::Transform latest_tf_;
tf::TransformBroadcaster broadcaster;
tf::TransformBroadcaster odom_broadcaster;
tf::TransformBroadcaster tfb_;
ros::Publisher particlecloud_pub;
ros::Publisher obstaclescan_pub;
//lcm reading thread stuff
pthread_t processor_thread;
pthread_mutex_t lcm_data_mutex;
pthread_cond_t newLcmData_cv;
BotTrans base2odom;
double base2odom_yaw;
} state_t;
// signal handler
sig_atomic_t shutdown_flag = 0;
static void sig_action(int signal, siginfo_t *s, void *user){
fprintf(stderr,"Shutting Down!\n");
shutdown_flag = 1;
}
void on_pf_mean(const lcm_recv_buf_t *rbuf, const char *channel,
const bot_core_pose_t *msg, void *user_data)
{
state_t* state = static_cast<state_t*>(user_data);
double rpy_internal[] = {0,0,0};
bot_quat_to_roll_pitch_yaw(msg->orientation,rpy_internal);
// given a and c find b = a (-) c
// a = map->base [computed by particle filter]
// b = map->odom [made here]
// c = odom->base[produced by move base]
//c=-c
//b_th_calc = a_th - c_th
//[c_vt,c_vr]= cart2pol(c(1),c(2));
//c_vt_adjust = c_vt + b_th_calc;%a_th;
//[c_dash(1),c_dash(2)]= pol2cart(c_vt_adjust,c_vr);
//b_calc= a + c_dash
//
cout << "a = [" << msg->pos[0] << ", " << msg->pos[1] << "]\n";
cout << "a_th = " << rpy_internal[2]<<"\n";
cout << "c = [" << state->base2odom.trans_vec[0] << ", " << state->base2odom.trans_vec[1] << "]\n";
cout << "c_th = " << state->base2odom_yaw<<"\n";
double c[2];
c[0] = -state->base2odom.trans_vec[0];
c[1] = -state->base2odom.trans_vec[1];
double b_th_calc = rpy_internal[2] - state->base2odom_yaw;
double c_vt = atan2(c[1],c[0]);
double c_vr = sqrt( pow(c[0],2)+ pow(c[1],2));
double c_vt_adjust = c_vt + b_th_calc;
double c_dash[2];
c_dash[0] = c_vr*cos(c_vt_adjust);
c_dash[1] = c_vr*sin(c_vt_adjust);
double b_calc[2];
b_calc[0] = msg->pos[0] + c_dash[0];
b_calc[1] = msg->pos[1] + c_dash[1];
cout << "b = [" << b_calc[0] << ", " << b_calc[1] << "]\n";
cout << "b_th = " << b_th_calc<<"\n";
geometry_msgs::Quaternion mean_quatb = tf::createQuaternionMsgFromYaw(b_th_calc);
tf::Quaternion mean_quat = tf::Quaternion(mean_quatb.x,
mean_quatb.y,mean_quatb.z,mean_quatb.w);
//tf::Vector3 mean_pos = tf::Vector3(msg->pos[0], msg->pos[1], msg->pos[2]);
// tf::Vector3 mean_pos = tf::Vector3(kmclTrans.trans_vec[0], kmclTrans.trans_vec[1], kmclTrans.trans_vec[2]);
tf::Vector3 mean_pos = tf::Vector3(b_calc[0], b_calc[1], 0);
state->latest_tf_ = tf::Transform(mean_quat,mean_pos);
// We want to send a transform that is good up until a
// tolerance time so that odom can be used
ros::Time transform_expiration = (ros::Time::now() +
state->transform_tolerance_);
tf::StampedTransform tmp_tf_stamped(state->latest_tf_,
transform_expiration,
"map", "odom");
/* tf::StampedTransform tmp_tf_stamped(state->latest_tf_.inverse(),
transform_expiration,
"map", "odom");*/
state->tfb_.sendTransform(tmp_tf_stamped);
cout << "sent map to odom tf " << ros::Time::now() <<"\n";
return;
}
void on_pf_state(const lcm_recv_buf_t *rbuf, const char *channel,
const ps_pf_cloud_t *msg, void *user_data)
{
state_t* state = static_cast<state_t*>(user_data);
// Publish the particle cloud
// TODO: set maximum rate for publishing
geometry_msgs::PoseArray cloud_msg;
cloud_msg.header.stamp = ros::Time::now();
cloud_msg.header.frame_id = "map";
cloud_msg.poses.resize(msg->nparticles);
for(int i=0;i<msg->nparticles;i++){
double rpy_internal[] = {0,0,0};
bot_quat_to_roll_pitch_yaw(msg->particles[i].orientation,
rpy_internal);
tf::poseTFToMsg(tf::Pose(tf::createQuaternionFromYaw(rpy_internal[2]),
btVector3(msg->particles[i].pos[0],
msg->particles[i].pos[1], msg->particles[i].pos[2])),
cloud_msg.poses[i]);
/* tf::poseTFToMsg(tf::Pose(tf::createQuaternionFromYaw(msg->particles[i].pos[2]),
btVector3(msg->particles[i].pos[0],
msg->particles[i].pos[1], 0)),
cloud_msg.poses[i]);*/
}
state->particlecloud_pub.publish(cloud_msg);
//cout << "sent particlecloud " << ros::Time::now() <<"\n";
return;
}
void on_obstacle_lidar(const lcm_recv_buf_t *rbuf, const char *channel,
const bot_core_planar_lidar_t *msg, void *user_data)
{
state_t* state = static_cast<state_t*>(user_data);
//populate the LaserScan message
ros::Time scan_time = ros::Time::now();
sensor_msgs::LaserScan scan;
scan.header.stamp = scan_time;
scan.header.frame_id = "/base_laser";
scan.angle_min = msg->rad0;
scan.angle_max = msg->rad0 + msg->radstep*msg->nranges;
scan.angle_increment = msg->radstep;
//scan.time_increment = (1 / laser_frequency) / (num_readings);
scan.time_increment = (1 / 10) / (msg->nranges); // a guess... we dont have this
scan.range_min = 0.0;
scan.range_max = 30.0;
scan.set_ranges_size(msg->nranges);
scan.set_intensities_size(0);
for(unsigned int i = 0; i < msg->nranges; ++i){
scan.ranges[i] = msg->ranges[i];
//scan.intensities[i] = intensities[i];
}
state->obstaclescan_pub.publish(scan);
cout << "obstacle scan published: " << scan_time<< "\n";
return;
}
void transformPoint(const tf::TransformListener& listener, void * user){
state_t * state = (state_t *) user;
ros::Time t= ros::Time::now();
tf::StampedTransform transform;
try{
listener.lookupTransform("/odom", "/base",
ros::Time(0), transform);
}
catch (tf::TransformException ex){
ROS_ERROR("%s",ex.what());
}
tf::Quaternion base2odom_quat = tf::Quaternion(transform.getRotation().x(),
transform.getRotation().y(),transform.getRotation().z(),transform.getRotation().w());
state->base2odom.trans_vec[0] = transform.getOrigin().x();
state->base2odom.trans_vec[1] = transform.getOrigin().y();
state->base2odom.trans_vec[2] = transform.getOrigin().z();
state->base2odom.rot_quat[2] = transform.getRotation().x();
state->base2odom.rot_quat[1] = transform.getRotation().y();
state->base2odom.rot_quat[0] = transform.getRotation().z();
state->base2odom.rot_quat[3] = transform.getRotation().w();
state->base2odom_yaw = tf::getYaw(base2odom_quat);
cout << t << " | xyz " << transform.getOrigin().x() << ", "<< transform.getOrigin().y() << ", "<< transform.getOrigin().z()
<< " | xyzw " << transform.getRotation().x() << ", "<< transform.getRotation().y() << ", "<< transform.getRotation().z() << ", " << transform.getRotation().w()
<< " | yaw " << state->base2odom_yaw
<< "\n";
/* tf::Stamped<tf::Pose> ident (btTransform(tf::createIdentityQuaternion(),
btVector3(0,0,0)), t, "/base");
tf::Stamped<tf::Pose> odom_pose;
listener.transformPose("/odom",ident,odom_pose);*/
}
//dispatcher for new freenect data
static void * processingFunc(void * user)
{
state_t * state = (state_t *) user;
pthread_mutex_lock(&state->lcm_data_mutex);
int x=0;
char dog[3][3];
char **cat;
ros::init(x, cat, "robot_tf_listener");
ros::NodeHandle n;
tf::TransformListener listener(ros::Duration(10));
//we'll transform a point once 0.1 second
ros::Timer timer = n.createTimer(ros::Duration(0.1), boost::bind(&transformPoint, boost::ref(listener),state));
ros::spin();
pthread_mutex_unlock(&state->lcm_data_mutex);
}
int main (int argc, char** argv)
{
cout << "Started lcm2ros\n";
ros::init(argc, argv, "lcm2ros");
ros::NodeHandle nh;
state_t* state = new state_t();
state->particlecloud_pub = nh.advertise<geometry_msgs::PoseArray>("particlecloud", 2);
state->obstaclescan_pub = nh.advertise<sensor_msgs::LaserScan>("scan", 50);
state->transform_tolerance_.fromSec(0.1);
state->publish_lcm= lcm_create(NULL);
state->subscribe_lcm = state->publish_lcm;
//setup lcm reading thread
pthread_mutex_init(&state->lcm_data_mutex, NULL);
pthread_cond_init(&state->newLcmData_cv, NULL);
//create processing thread
pthread_create(&state->processor_thread, 0, (void *
(*)(void *)) processingFunc, (void *) state);
////////////////////////////////////////////////////////////////////
ps_pf_cloud_t_subscribe(state->subscribe_lcm, "PARTICLE_CLOUD", on_pf_state, state);
bot_core_pose_t_subscribe(state->subscribe_lcm, "PARTICLE_MEAN",on_pf_mean, state);
bot_core_planar_lidar_t_subscribe(state->subscribe_lcm,"KINECT_LIDAR",on_obstacle_lidar,state);
// Register signal handlers so that we can
// exit cleanly when interrupted
struct sigaction new_action;
new_action.sa_sigaction = sig_action;
sigemptyset(&new_action.sa_mask);
new_action.sa_flags = 0;
sigaction(SIGINT, &new_action, NULL);
sigaction(SIGTERM, &new_action, NULL);
sigaction(SIGHUP, &new_action, NULL);
// go!
// while(0 == lcm_handle(state->subscribe_lcm) );
while(0 == lcm_handle(state->subscribe_lcm) && !shutdown_flag);
return 0;
}
|
f052c2558264807823d346e7af2b290f22f11fed | 8b157cd7ccc11f6169b01eaad028fdc318f0658a | /Last/colormodel.cpp | 6ee35e8a989c9e3b8d38519090499f4255e023cb | [] | no_license | czAksay/CppModelAndAnimations | 4390919ef3cfe168da6325506b497ee39c46bd32 | 22715c7626ed8531074403ab82a492fabb5a33c5 | refs/heads/master | 2020-03-24T02:32:24.344957 | 2018-07-30T12:39:05 | 2018-07-30T12:39:05 | 142,380,203 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,822 | cpp | colormodel.cpp | #include "colormodel.h"
#include <QDebug>
ColorModel::ColorModel(QObject *parent) : QAbstractListModel(parent)
{
add("Синий", QColor(0,0,255));
add("Красный", QColor(255,0,0));
add("Зеленый", QColor(0,255,0));
add("Желтый", QColor(255,255,0));
add("Фиолетовый", QColor(139,0,105));
add("Черный", QColor(0,0,0));
add("Белый", QColor(255,255,255));
add("Серый", QColor(128,128,128));
add("Оранжевый", QColor(255,165,0));
m_colors.move(0,1);
}
void ColorModel::add(MyColor color)
{
beginInsertRows(QModelIndex(), m_colors.size(), m_colors.size());
m_colors.append(color);
endInsertRows();
}
void ColorModel::add(QString name, QColor color)
{
MyColor adding = {name, color};
add(adding);
}
void ColorModel::add(QString name, int r, int g, int b, int a)
{
MyColor adding = {name, QColor(r,g,b,a)};
add(adding);
}
void ColorModel::remove(int index)
{
if(!hasIndex(index,0))
{
return;
}
beginRemoveRows(QModelIndex(),index, index);
m_colors.removeAt(index);
endRemoveRows();
}
void ColorModel::move(int old_index, int new_index)
{
if(hasIndex(old_index, 0) && hasIndex(new_index, 0) && (old_index != new_index))
{
QModelIndex parent;
//если это предпоследний элемент, перемещаемый на 1 вниз
if (new_index == rowCount() - 1 && new_index == old_index + 1)
{
int tmp = new_index;
new_index = old_index;
old_index = tmp;
}
//при перемещении вниз
if (new_index > old_index)
new_index ++;
if(beginMoveRows(parent, old_index, old_index, parent, new_index))
{
m_colors.move(old_index, new_index);
endMoveRows();
}
}
}
QHash<int, QByteArray> ColorModel::roleNames() const
{
QHash<int, QByteArray> roles = QAbstractListModel::roleNames();
roles[ColorRole] = "mColor";
roles[TextRole] = "mText";
return roles;
}
int ColorModel::rowCount(const QModelIndex &parent) const
{
return m_colors.size();
}
QVariant ColorModel::data(const QModelIndex &index, int role) const
{
switch (role) {
case TextRole:
return m_colors.at(index.row()).name;
break;
case ColorRole:
return m_colors.at(index.row()).color;
break;
default:
break;
}
return QVariant();
}
QModelIndex ColorModel::index(int row, int column, const QModelIndex &parent) const
{
return createIndex(row, column);
}
int ColorModel::columnCount(const QModelIndex &parent) const
{
return 1;
}
|
8cea409d9722bdcc7325a082279407535346a9c9 | 7be4e3e8948bc60302dce910c70f8f5ad45274de | /Motors - Week 5/Exercise_12_Task_2.ino | 95198f019499edd71cdb13ce0f3236522275a363 | [] | no_license | DanielFrykman/ArduinoCrashCourse | 0546bb6d119919a9a0032ecde9d06fe879556fb1 | d6f28b6984ce438810b531111140eac8c44bd4a9 | refs/heads/master | 2021-07-16T05:56:20.019509 | 2021-02-15T09:07:17 | 2021-02-15T09:07:17 | 239,970,704 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,064 | ino | Exercise_12_Task_2.ino | // created by Daniel Lilja Frykman
#include <VarSpeedServo.h> // includes the new libary needed for this
// create servo objects
VarSpeedServo myservo; // creates a object called myservo
int SPEED = 20; // sets the starting speed to 20
void setup() {
myservo.attach(9); // sets the servo communication pin to pin 9
Serial.begin(9600);
}
void loop() {
Serial.println(SPEED);
int LEF = 0; // sets the target posision of LEF to 0 degrees
int RIG = 180; // sets the target posision of RIG to 0 degrees
myservo.write(LEF, SPEED); // asks to servo to go to LEF posision with speed from the variable SPEED
myservo.wait(); // wait for servo 1 to finish
myservo.write(RIG, SPEED); // asks to servo to go to RIG posision with speed from the variable SPEED
myservo.write(LEF, SPEED); // asks to servo to go to LEF posision with speed from the variable SPEED
myservo.wait();
myservo.write(RIG, SPEED); // asks to servo to go to RIG posision with speed from the variable SPEED
myservo.wait();
SPEED = SPEED + 10; // adds 10 to the speed
}
|
5b3df20de01d33e7af6757f9b4b2b05bf66a4df2 | f8517de40106c2fc190f0a8c46128e8b67f7c169 | /AllJoyn/Samples/OICAdapter/iotivity-1.0.0/service/easy-setup/sdk/mediator/src/provisioning.cpp | 86bef530951a0c29dd150a104526ba33864ed6be | [
"MIT",
"BSD-3-Clause",
"GPL-2.0-only",
"Apache-2.0"
] | permissive | ferreiramarcelo/samples | eb77df10fe39567b7ebf72b75dc8800e2470108a | 4691f529dae5c440a5df71deda40c57976ee4928 | refs/heads/develop | 2023-06-21T00:31:52.939554 | 2021-01-23T16:26:59 | 2021-01-23T16:26:59 | 66,746,116 | 0 | 0 | MIT | 2023-06-19T20:52:43 | 2016-08-28T02:48:20 | C | UTF-8 | C++ | false | false | 16,709 | cpp | provisioning.cpp | //******************************************************************
//
// Copyright 2015 Samsung Electronics All Rights Reserved.
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
#include "provisioning.h"
//Standard includes
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <unistd.h>
#include <pthread.h>
//EasySetup include files
#include "ocpayload.h"
#include "escommon.h"
// External includes
#include "logger.h"
#include "oic_malloc.h"
#include "oic_string.h"
#define ES_PROV_TAG "EASY_SETUP_PROVISIONING"
bool g_provisioningCondFlag = false;
static EnrolleeNWProvInfo_t *netProvInfo;
char szFindResourceQueryUri[64] = {0};
/**
* @var cbData
* @brief Callback for providing provisioning status callback to application
*/
static OCProvisioningStatusCB cbData = NULL;
void ErrorCallback(ProvStatus status) {
ProvisioningInfo *provInfo = GetCallbackObjectOnError(status);
cbData(provInfo);
ResetProgress();
}
OCStackResult InitProvisioningHandler() {
OCStackResult ret = OC_STACK_ERROR;
/* Initialize OCStack*/
if (OCInit(NULL, 0, OC_CLIENT) != OC_STACK_OK) {
OIC_LOG(ERROR, ES_PROV_TAG, "OCStack init error");
return ret;
}
pthread_t thread_handle;
if (pthread_create(&thread_handle, NULL, listeningFunc, NULL)) {
OIC_LOG(DEBUG, ES_PROV_TAG, "Thread creation failed");
return OC_STACK_ERROR;
}
return OC_STACK_OK;
}
OCStackResult TerminateProvisioningHandler() {
OCStackResult ret = OC_STACK_ERROR;
if (OCStop() != OC_STACK_OK) {
OIC_LOG(ERROR, ES_PROV_TAG, "OCStack stop error");
}
g_provisioningCondFlag = true;
ret = OC_STACK_OK;
return ret;
}
void *listeningFunc(void* /*data*/) {
while (!g_provisioningCondFlag) {
OCStackResult result;
result = OCProcess();
if (result != OC_STACK_OK) {
OIC_LOG(ERROR, ES_PROV_TAG, "OCStack stop error");
}
// To minimize CPU utilization we may wish to do this with sleep
sleep(1);
}
return NULL;
}
OCStackApplicationResult ProvisionEnrolleeResponse(void* /*ctx*/, OCDoHandle /*handle*/,
OCClientResponse *clientResponse) {
OIC_LOG_V(DEBUG, ES_PROV_TAG, "INSIDE ProvisionEnrolleeResponse");
// If user stopped the process then return from this function;
if (IsSetupStopped()) {
ErrorCallback(DEVICE_NOT_PROVISIONED);
ClearMemory();
return OC_STACK_DELETE_TRANSACTION;
}
if (!ValidateEnrolleResponse(clientResponse)) {
ErrorCallback(DEVICE_NOT_PROVISIONED);
return OC_STACK_DELETE_TRANSACTION;
}
char *tnn;
char *cd;
OCRepPayload *input = (OCRepPayload * )(clientResponse->payload);
while (input) {
int64_t ps;
if (OCRepPayloadGetPropInt(input, OC_RSRVD_ES_PS, &ps)) {
if (ps == 1) {
input = input->next;
continue;
}
else {
OIC_LOG_V(DEBUG, ES_PROV_TAG, "PS is NOT proper");
goto Error;
}
}
if (OCRepPayloadGetPropString(input, OC_RSRVD_ES_TNN, &tnn)) {
if (!strcmp(tnn, netProvInfo->netAddressInfo.WIFI.ssid)) {
OIC_LOG_V(DEBUG, ES_PROV_TAG, "SSID is proper");
input = input->next;
continue;
}
else {
OIC_LOG_V(DEBUG, ES_PROV_TAG, "SSID is NOT proper");
goto Error;
}
}
if (OCRepPayloadGetPropString(input, OC_RSRVD_ES_CD, &cd)) {
if (!strcmp(cd, netProvInfo->netAddressInfo.WIFI.pwd)) {
OIC_LOG_V(DEBUG, ES_PROV_TAG, "Password is proper");
input = input->next;
continue;
}
else {
OIC_LOG_V(DEBUG, ES_PROV_TAG, "Password is NOT proper");
goto Error;
}
}
LogProvisioningResponse(input->values);
input = input->next;
OICFree(tnn);
OICFree(cd);
}
SuccessCallback(clientResponse);
return OC_STACK_KEEP_TRANSACTION;
Error:
{
OICFree(tnn);
OICFree(cd);
ErrorCallback(DEVICE_NOT_PROVISIONED);
return OC_STACK_DELETE_TRANSACTION;
}
}
OCStackResult StartProvisioningProcess(const EnrolleeNWProvInfo_t *netInfo,
OCProvisioningStatusCB provisioningStatusCallback,
char *findResQuery) {
if(findResQuery != NULL)
{
OICStrcpy(szFindResourceQueryUri, sizeof(szFindResourceQueryUri) - 1, findResQuery);
}
else
{
OIC_LOG(ERROR, ES_PROV_TAG, PCF("Find resource query is NULL"));
goto Error;
}
pthread_t thread_handle;
if (!ValidateEasySetupParams(netInfo, provisioningStatusCallback)) {
goto Error;
}
if (!SetProgress(provisioningStatusCallback)) {
// Device provisioning session is running already.
OIC_LOG(INFO, ES_PROV_TAG, PCF("Device provisioning session is running already"));
goto Error;
}
if (!ConfigEnrolleeObject(netInfo)) {
goto Error;
}
if (pthread_create(&thread_handle, NULL, FindProvisioningResource, NULL)) {
goto Error;
}
pthread_join(thread_handle, NULL);
return OC_STACK_OK;
Error:
{
ErrorCallback(DEVICE_NOT_PROVISIONED);
ClearMemory();
return OC_STACK_ERROR;
}
}
void StopProvisioningProcess() {
//Only basis test is done for below API
ResetProgress();
}
bool ClearMemory() {
OIC_LOG(DEBUG, ES_PROV_TAG, "thread_pool_add_task of FindProvisioningResource failed");
OICFree(netProvInfo);
return true;
}
bool ConfigEnrolleeObject(const EnrolleeNWProvInfo_t *netInfo) {
//Copy Network Provisioning Information
netProvInfo = (EnrolleeNWProvInfo_t *) OICCalloc(1, sizeof(EnrolleeNWProvInfo_t));
if (netProvInfo == NULL) {
OIC_LOG(ERROR, ES_PROV_TAG, "Invalid input..");
return false;
}
memcpy(netProvInfo, netInfo, sizeof(EnrolleeNWProvInfo_t));
OIC_LOG_V(DEBUG, ES_PROV_TAG, "Network Provisioning Info. SSID = %s",
netProvInfo->netAddressInfo.WIFI.ssid);
OIC_LOG_V(DEBUG, ES_PROV_TAG, "Network Provisioning Info. PWD = %s",
netProvInfo->netAddressInfo.WIFI.pwd);
return true;
}
void LogProvisioningResponse(OCRepPayloadValue * val) {
switch (val->type) {
case OCREP_PROP_NULL:
OIC_LOG_V(DEBUG, ES_PROV_TAG, "\t\t%s: NULL", val->name);
break;
case OCREP_PROP_INT:
OIC_LOG_V(DEBUG, ES_PROV_TAG, "\t\t%s(int):%lld", val->name, val->i);
break;
case OCREP_PROP_DOUBLE:
OIC_LOG_V(DEBUG, ES_PROV_TAG, "\t\t%s(double):%f", val->name, val->d);
break;
case OCREP_PROP_BOOL:
OIC_LOG_V(DEBUG, ES_PROV_TAG, "\t\t%s(bool):%s", val->name, val->b ? "true" : "false");
break;
case OCREP_PROP_STRING:
OIC_LOG_V(DEBUG, ES_PROV_TAG, "\t\t%s(string):%s", val->name, val->str);
break;
case OCREP_PROP_OBJECT:
// Note: Only prints the URI (if available), to print further, you'll
// need to dig into the object better!
OIC_LOG_V(DEBUG, ES_PROV_TAG, "\t\t%s(OCRep):%s", val->name, val->obj->uri);
break;
case OCREP_PROP_ARRAY:
switch (val->arr.type) {
case OCREP_PROP_INT:
OIC_LOG_V(DEBUG, ES_PROV_TAG, "\t\t%s(int array):%d x %d x %d",
val->name,
val->arr.dimensions[0], val->arr.dimensions[1],
val->arr.dimensions[2]);
break;
case OCREP_PROP_DOUBLE:
OIC_LOG_V(DEBUG, ES_PROV_TAG, "\t\t%s(double array):%d x %d x %d",
val->name,
val->arr.dimensions[0], val->arr.dimensions[1],
val->arr.dimensions[2]);
break;
case OCREP_PROP_BOOL:
OIC_LOG_V(DEBUG, ES_PROV_TAG, "\t\t%s(bool array):%d x %d x %d",
val->name,
val->arr.dimensions[0], val->arr.dimensions[1],
val->arr.dimensions[2]);
break;
case OCREP_PROP_STRING:
OIC_LOG_V(DEBUG, ES_PROV_TAG, "\t\t%s(string array):%d x %d x %d",
val->name,
val->arr.dimensions[0], val->arr.dimensions[1],
val->arr.dimensions[2]);
break;
case OCREP_PROP_OBJECT:
OIC_LOG_V(DEBUG, ES_PROV_TAG, "\t\t%s(OCRep array):%d x %d x %d",
val->name,
val->arr.dimensions[0], val->arr.dimensions[1],
val->arr.dimensions[2]);
break;
default:
break;
}
break;
default:
break;
}
}
OCStackResult FindNetworkResource() {
OCStackResult ret = OC_STACK_ERROR;
if (OCStop() != OC_STACK_OK) {
OIC_LOG(ERROR, ES_PROV_TAG, "OCStack stop error");
}
return ret;
}
ProvisioningInfo *PrepareProvisioingStatusCB(OCClientResponse *clientResponse,
ProvStatus provStatus) {
ProvisioningInfo *provInfo = (ProvisioningInfo *) OICCalloc(1, sizeof(ProvisioningInfo));
if (provInfo == NULL) {
OIC_LOG_V(ERROR, ES_PROV_TAG, "Failed to allocate memory");
return NULL;
}
OCDevAddr *devAddr = (OCDevAddr *) OICCalloc(1, sizeof(OCDevAddr));
if (devAddr == NULL) {
OIC_LOG_V(ERROR, ES_PROV_TAG, "Failed to allocate memory");
OICFree(provInfo);
return NULL;
}
OICStrcpy(devAddr->addr, sizeof(devAddr->addr), clientResponse->addr->addr);
devAddr->port = clientResponse->addr->port;
provInfo->provDeviceInfo.addr = devAddr;
provInfo->provStatus = provStatus;
return provInfo;
}
bool InProgress() {
// It means already Easy Setup provisioning session is going on.
if (NULL != cbData) {
OIC_LOG(ERROR, ES_PROV_TAG, "Easy setup session is already in progress");
return true;
}
return false;
}
bool SetProgress(OCProvisioningStatusCB provisioningStatusCallback) {
if (InProgress())
return false;
cbData = provisioningStatusCallback;
return true;
}
bool ResetProgress() {
cbData = NULL;
return true;
}
ProvisioningInfo *CreateCallBackObject() {
ProvisioningInfo *provInfo = (ProvisioningInfo *) OICCalloc(1, sizeof(ProvisioningInfo));
if (provInfo == NULL) {
OIC_LOG_V(ERROR, ES_PROV_TAG, "Failed to allocate memory");
return NULL;
}
OCDevAddr *devAddr = (OCDevAddr *) OICCalloc(1, sizeof(OCDevAddr));
if (devAddr == NULL) {
OIC_LOG_V(ERROR, ES_PROV_TAG, "Failed to allocate memory");
OICFree(provInfo);
return NULL;
}
provInfo->provDeviceInfo.addr = devAddr;
return provInfo;
}
ProvisioningInfo *GetCallbackObjectOnError(ProvStatus status) {
ProvisioningInfo *provInfo = CreateCallBackObject();
OICStrcpy(provInfo->provDeviceInfo.addr->addr, sizeof(provInfo->provDeviceInfo.addr->addr),
netProvInfo->netAddressInfo.WIFI.ipAddress);
provInfo->provDeviceInfo.addr->port = IP_PORT;
provInfo->provStatus = status;
return provInfo;
}
ProvisioningInfo *GetCallbackObjectOnSuccess(OCClientResponse *clientResponse,
ProvStatus provStatus) {
ProvisioningInfo *provInfo = CreateCallBackObject();
OICStrcpy(provInfo->provDeviceInfo.addr->addr, sizeof(provInfo->provDeviceInfo.addr->addr),
clientResponse->addr->addr);
provInfo->provDeviceInfo.addr->port = clientResponse->addr->port;
provInfo->provStatus = provStatus;
return provInfo;
}
bool ValidateFinddResourceResponse(OCClientResponse * clientResponse) {
if (!(clientResponse) || !(clientResponse->payload)) {
OIC_LOG_V(INFO, ES_PROV_TAG, "ProvisionEnrolleeResponse received Null clientResponse");
return false;
}
return true;
}
bool ValidateEnrolleResponse(OCClientResponse * clientResponse) {
if (!(clientResponse) || !(clientResponse->payload)) {
OIC_LOG_V(INFO, ES_PROV_TAG, "ProvisionEnrolleeResponse received Null clientResponse");
return false;
}
if (clientResponse->payload->type != PAYLOAD_TYPE_REPRESENTATION) {
OIC_LOG_V(DEBUG, ES_PROV_TAG, "Incoming payload not a representation");
return false;
}
// If flow reachese here means no error condition hit.
return true;
}
void SuccessCallback(OCClientResponse * clientResponse) {
ProvisioningInfo *provInfo = GetCallbackObjectOnSuccess(clientResponse, DEVICE_PROVISIONED);
cbData(provInfo);
ResetProgress();
}
void* FindProvisioningResource(void* /*data*/) {
// If user stopped the process before thread get scheduled then check and return from this function;
if (IsSetupStopped()) {
ErrorCallback(DEVICE_NOT_PROVISIONED);
ClearMemory();
return NULL;
}
OCStackResult ret = OC_STACK_ERROR;
OIC_LOG_V(DEBUG, ES_PROV_TAG, "szFindResourceQueryUri = %s", szFindResourceQueryUri);
OCCallbackData ocCBData;
ocCBData.cb = FindProvisioningResourceResponse;
ocCBData.context = (void *) EASY_SETUP_DEFAULT_CONTEXT_VALUE;
ocCBData.cd = NULL;
ret = OCDoResource(NULL, OC_REST_DISCOVER, szFindResourceQueryUri, NULL, NULL,
netProvInfo->connType, OC_LOW_QOS,
&ocCBData, NULL, 0);
if (ret != OC_STACK_OK) {
ErrorCallback(DEVICE_NOT_PROVISIONED);
ClearMemory();
}
return NULL;
}
OCStackResult InvokeOCDoResource(const char *query, OCMethod method, const OCDevAddr *dest,
OCQualityOfService qos, OCClientResponseHandler cb,
OCRepPayload *payload,
OCHeaderOption *options, uint8_t numOptions) {
OCStackResult ret;
OCCallbackData cbData;
cbData.cb = cb;
cbData.context = (void *) EASY_SETUP_DEFAULT_CONTEXT_VALUE;
cbData.cd = NULL;
ret = OCDoResource(NULL, method, query, dest, (OCPayload *) payload, netProvInfo->connType, qos,
&cbData, options, numOptions);
if (ret != OC_STACK_OK) {
OIC_LOG_V(ERROR, ES_PROV_TAG, "OCDoResource returns error %d with method %d", ret, method);
}
return ret;
}
OCStackResult ProvisionEnrollee(OCQualityOfService qos, const char *query, const char *resUri,
OCDevAddr *destination, int pauseBeforeStart) {
// This sleep is required in case of BLE provisioning due to packet drop issue.
OIC_LOG_V(INFO, ES_PROV_TAG, "Sleeping for %d seconds", pauseBeforeStart);
sleep(pauseBeforeStart);
OIC_LOG_V(INFO, ES_PROV_TAG, "\n\nExecuting ProvisionEnrollee%s", __func__);
OCRepPayload *payload = OCRepPayloadCreate();
OCRepPayloadSetUri(payload, resUri);
OCRepPayloadSetPropString(payload, OC_RSRVD_ES_TNN, netProvInfo->netAddressInfo.WIFI.ssid);
OCRepPayloadSetPropString(payload, OC_RSRVD_ES_CD, netProvInfo->netAddressInfo.WIFI.pwd);
OIC_LOG_V(DEBUG, ES_PROV_TAG, "OCPayload ready for ProvisionEnrollee");
OCStackResult ret = InvokeOCDoResource(query, OC_REST_PUT, destination, qos,
ProvisionEnrolleeResponse, payload, NULL, 0);
return ret;
}
bool IsSetupStopped() {
return (cbData == NULL) ? true : false;
}
|
e15e181443f3c4525d8ed2407e204b97ac7e1588 | 7f2782335e707ac44fdfffeb334b52793802fd2b | /TheGoonies/playScene.h | cd4a286bc25a83be4b758e0486e76832aa84d54f | [] | no_license | arnaulamiel/TheGooniesMSX | f240bf5f6574a95d966fd603f799e1925a3f65ab | d77fcd252f481de4c7d3d1d367b9662ece867d0e | refs/heads/master | 2023-03-31T17:46:09.766085 | 2021-04-06T21:24:34 | 2021-04-06T21:24:34 | 348,080,249 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,855 | h | playScene.h | #pragma once
#include "Game.h"
#include "Scene.h"
#include "Sprite.h"
#include <iostream>
#include "Calavera.h"
#include "Bat.h"
#include "Object.h"
#include "Texture.h"
/* @file playScene.h
*
* @brief This class represents the first scene the will be shown when booting the game.
*
* It is basically the scene where the logo is shown.
* It is inherited from the Scene class.
*/
class playScene : public Scene
{
public:
/* Static member function declaration */
static Scene* create();
/* Constructor */
playScene();
/* Destructor */
virtual ~playScene();
/* Inherited functions */
virtual void init() override;
virtual void update(int deltaTime) override;
virtual void render() override;
virtual void fin() override;
void initMaps(int scene) ;
void updateRoom();
void loadRoomObjects();
void updateActualObjects();
void saveActualObjects();
bool hitEnem(Enemies* c);
bool getObject(Object* k);
bool getObjDoor(Object* door);
bool gotaHitsPlayer(Object* g);
bool fireHitsPlayer(Object* f);
//void initChildsInterface(ShaderProgram& shaderPrograma);
virtual void deleteEngine();
virtual void changeMusic(char* music);
virtual void createSound(char* music, bool repeat);
virtual void deleteSound();
void hitPlayer();
void updateScene();
void updateElementsScene();
private:
/* Function to initialize the shaders */
void initShaders();
bool loadSingleRoomObjects(string levelFile, vector<Object*>& objectsRoom);
void calculateDownObstaculo(Object* obs);
bool playerinPortal(Object* p);
void newScene();
/* Variable to control the time that the logo is shown */
int count;
int room, scene;
int timerGota;
int timerRoca;
int timerFuego, timesFireAnim, waitToEnd;
/* Texture of the logo */
Texture logoTexture, vidaexpTexture;
ISoundEngine* engine;
ISoundEngine* sound;
bool hasKey,doorOpen, hasChild, hasBlueHel, hasYellowHel, hasGreenRain, hasGrayRain, hasHyperShoes;
bool bgota;
bool byeRoca;
bool rocaDown;
bool hasSound;
bool inPortal;
TileMap* map;
TileMap* mapIni;
TileMap* mapIni2;
TileMap* mapIni3;
float currentTime;
/* Objects */
vector<Object*> actualRoomObjects;
vector<Object*> objectsRoom1_1;
vector<Object*> objectsRoom1_2;
vector<Object*> objectsRoom1_3;
vector<Object*> objectsRoom2_1;
vector<Object*> objectsRoom2_2;
vector<Object*> objectsRoom2_3;
vector<Object*> objectsRoom3_1;
vector<Object*> objectsRoom3_2;
vector<Object*> objectsRoom3_3;
vector<Object*> objectsRoom4_1;
vector<Object*> objectsRoom4_2;
vector<Object*> objectsRoom4_3;
vector<Object*> objectsRoom5_1;
vector<Object*> objectsRoom5_2;
vector<Object*> objectsRoom5_3;
/* Logo sprite*/
Sprite* logo;
Sprite* vidaexp;
Player* player;
Calavera* c[1];
Calavera* cal;
Bat* bat;
/* Projection matrix */
glm::mat4 projection;
/* Shader program*/
ShaderProgram texProgram;
};
|
3c6aeb4ae0e61df3b97dbd74b4ab4eaff797a60f | 26fcc35ce24760bc86d89a77a1e43d0a0ac7e6e7 | /src/Invoker/Commands/KickCommand.hpp | 50032f1bdfaa6bbea0cded3ed453a42a72d27e7d | [] | no_license | fngoc/ft_irc | aebd377f741946b4571aa9357c34715e5b567782 | 9140a654f72917a5a8fdc4d578e9dcbc36fdb9b6 | refs/heads/master | 2023-09-05T12:11:11.622427 | 2021-11-20T11:51:59 | 2021-11-20T11:51:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 217 | hpp | KickCommand.hpp | #ifndef KickCommand_hpp
# define KickCommand_hpp
# include "../Command.hpp"
using namespace std;
class KickCommand: public Command {
public:
KickCommand();
virtual ~KickCommand();
void execute();
};
#endif
|
8e4ea72a382553d366216f85a0da786c156bc7fe | df32553eddce084d82c9daddc3e0de4685ba7e40 | /TMCore/CommandController.h | a96ea7b869331da31dd6ea2023403506baa1df41 | [] | no_license | gcdean/TournamentMaster | e15407069aefdf38646e4c0c1e2310b3df585fe2 | 772e6681563275b75bb11d91c15a8c19b3719f10 | refs/heads/master | 2021-01-10T11:16:53.729361 | 2017-10-22T06:25:25 | 2017-10-22T06:25:25 | 36,636,106 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 686 | h | CommandController.h | #pragma once
#include "commands/BaseUndoCommand.h"
#include <QSharedPointer>
#include <QStack>
class IDocument;
class TMCORE_DLLSPEC CommandController
{
public:
CommandController(QSharedPointer<IDocument> doc);
~CommandController();
public:
bool doCommand(QSharedPointer<BaseCommand> command);
bool undoCommand();
// TODO - Add redo Method.
const QList<QSharedPointer<BaseUndoCommand>> undoCommandList() const;
const QList<QSharedPointer<BaseUndoCommand>> redoCommandList() const;
private:
QSharedPointer<IDocument> m_document;
QStack<QSharedPointer<BaseUndoCommand>> m_undoStack;
QStack<QSharedPointer<BaseUndoCommand>> m_redoStack;
};
|
a2e7fbd8e969ee2181ec123258e861d171000044 | f0574f26faa80b41be72cd555a34a80d33992ee2 | /libraries/test-utils/src/test-utils/FileDownloader.h | 5a618fcf45f5cb21eb2a161416169fce0ca6d594 | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0"
] | permissive | humbletim/megaverse | 53943f2f19b51ae222a6743408a93750a39e3885 | 42d5a4983cf732411f262b98032baf72a93669ac | refs/heads/master | 2022-11-12T10:07:53.619639 | 2019-10-17T19:02:16 | 2019-10-17T19:02:16 | 261,794,028 | 2 | 0 | NOASSERTION | 2020-07-07T10:51:27 | 2020-05-06T15:02:52 | C++ | UTF-8 | C++ | false | false | 487 | h | FileDownloader.h | #pragma once
#include <QtCore/QObject>
#include <QtNetwork/QNetworkAccessManager>
class FileDownloader : public QObject {
Q_OBJECT
public:
using Handler = std::function<void(const QByteArray& data)>;
FileDownloader(QUrl url, const Handler& handler, QObject* parent = 0);
void waitForDownload();
private slots:
void fileDownloaded(QNetworkReply* pReply);
private:
QNetworkAccessManager _accessManager;
Handler _handler;
bool _complete { false };
};
|
500873125b5612f6d6940e7b403ab4fc3a169e38 | da78b11972972645e0342cefaa5ab6047a2c8d72 | /src/chap-sponsor-apc.re | b0d71fabe4f74613e627e2404594ba189a16fb62 | [] | no_license | gishohaku/guidebook5 | 2d17460142b1997c5d4f5cdc887e09f713f2492b | 409a71c9e324db1318eb970e825594b302508f70 | refs/heads/main | 2023-05-15T02:35:10.822834 | 2021-06-14T02:54:05 | 2021-06-14T02:54:05 | 375,516,733 | 1 | 2 | null | 2021-06-13T01:24:28 | 2021-06-09T23:44:54 | TeX | UTF-8 | C++ | false | false | 12,807 | re | chap-sponsor-apc.re | = APCのエンジニアがつくったオンラインの「エンジニアが集まる場」
//flushright{
株式会社エーピーコミュニケーションズ
取締役副社長 永江耕治
//}
株式会社エーピーコミュニケーションズで取締役副社長をつとめている永江耕治(@Kooozii)です。当社は、お客様のことを真剣に考えられるエンジニアを育成し、熱狂できるキャリアパスを創出し、従来の慣例に捉われずに挑戦し続けるNeoSIerです。ITインフラ自動化のプロフェッショナルとして、お客様の課題解決のためにAzure Kubernetes ServiceやAnsibleなどを用いたクラウドネイティブ環境の内製化・自動化支援や、「エンジニアから時間を奪うものをなくす」ためのプロダクト・サービスを提供しています。
ゆるいけど、雑談ではなくて、テーマのある対話。オンラインというバーチャルな空間で、リアルではないけど、偶然に出会うセレンディピティもある。そんな「エンジニアが集まる場」を、経営でも人事でもなく、エンジニアがつくってくれました。名前を「AP Tech Talk」といいます。
この記事では、これまでの勉強会とは違う魅力を持つ場「AP Tech Talk」について執筆しました。ニューノーマル時代のエンジニアコミュニティ運営の一助になれば幸いです。
== AP Tech Talkとは
「AP Tech Talk」が始まるとき、社内には主催者のエンジニアがこのように知らせてくれていました。
=== AP Tech Talk って?
* ゆるくお話しましょう
議論や質問、コメントなどによって語り合う場です。
業務終了後の本社のカウンター@<fn>{counter}でエンジニア同士が話してるところに群がるイメージです。なので業務外、飲食OK。
疑問や相談も立派なコンテンツです。見るだけ聞くだけでもOKです。
あと職種も関係ないです。
AP Tech Fest@<fn>{aptechFest}のようなプレゼンスタイルではないため、発表者と参加者という区別もあまりありません。みんなでゆるくお話ししましょう。
概要で挙げた「語りたい人」は、イベントとして成り立たせるために最低限設けているだけなので、どんどん混ざってもらいたいです。
* 資料作成は不要
誰かが資料を作る必要はありません。
もしネタが必要な場合は、既存のWebページ、ブログ、スライドなどを
画面に映すだけでも十分です。もちろん自分で資料やメモを作っても構いません。
* 取り扱いテーマ
APCの技術戦略の対象になっている物を中心に取り扱う予定です。
いまは、ネットワーク自動化と、Azure/コンテナです。
//footnote[counter][APCは社員同士のコミュニケーションを重視しており、それを促進する場として社内にカフェスペースがあります]
//footnote[aptechFest][『自分の技術で”技術にこだわる人”を感動させる』をコンセプトとする社内向け技術イベントです]
//image[image1][APCのオフィスにはバーカウンターがあり、社員が集い、語り合う場として利用されています]
3回目の開催をしたところですが、今のところその回によって雰囲気や流れも違うようです。ある回では「技術ブログの公開レビュー」というテーマの日がありました。
そのテーマで「語りたい人」がいて、参加者の数名がレビューをして、その他の参加者はその様子を見たり聞いたりしていました。
ひたすらレビューをしているわけでもなく、会話はテーマの範囲の中で流れていきます。たとえば、「ブログのネタってどこから探してくる?」「ブログ公開に至るまでの壁ってあるよね」という会話になったりもしていました。
== 今までのエンジニア勉強会と何が違うのか
「AP Tech Talk」をこういう空気にしたい、ということが明文化されています。
以下のようなノリを想定しています。
* この資料・発表の感想を語り合いたい
* 悩んでいること、もやもやすること
* 現場は自動化とは縁遠い感じがするけどどう向き合えばいい?
* ライブコーディングを見てくれ!
* Azure のここがいい、ここがつらい
主催者は「資料はコミュニケーションのきっかけでしかない」と語っていました。このイベン
トにおいては、参加者・企画者双方向の会話が一番重要なのだと思います。つまり、一方的に
プレゼンをして、最後の3分間でQA。みたいなのは違う、ということです。
テーマの企画者である「語りたい人」が得する場になってもらいたい、という思いもあるよう
です。たとえば「業務で技術的に悩んでいることを相談する」など。「すごいことを発表しな
いと!」という場でもないのです。
プレゼンテーションや説明でもなく、質疑応答とも少し違う。「対話のある場」なのだと思い
ます。
== 「語りたい人」はなぜ参加したのか
ある回の「語りたい人」に立候補した人は、”カフェスペースで立ち話する感じ” に共感して参加を決めたそうです。そして、「技術ブログの公開レビュー」というテーマにしたのも、誰かに相談するだけではなく、共有したかったからだとか。
当日、画面を共有しながらデモをしようと思ったのに、「故障」でうまくデモが動かないというハプニングがありました。そのとき「トラブルシューティングをするので、みなさん、適当に雑談しておいてください」という無茶苦茶な振りをして、「えええwww」となり、参加者が無理やりボールを渡された格好になりました。それでも、事前に用意していた「盛り上がりネタ」に対して参加者の中の有識者が突っ込んでくれたりして、結果的に、その後も参加者が話す時間が多くなっていました。それが、「オフィスでビール片手にだべっている感じが再現されていて良かった」と思ったそうです。
ただ、オンラインはオフラインに比べて「話そう」ってなるのに半歩くらい踏み出しにくいのでは、とも思っていて、当日は「ホントかよ」「なるほどー」って話したくなうような内容をネタにすることを意識していたとのこと。オンラインは気軽に開催できてしまうので、かえって「参加しなくていいや」となる場合もあるだろうな、とも思って、さまざまな「場を盛り上げるためのネタ」を準備していたようです。
== 入社直後の新卒新入社員も参加
入社したばかりの新卒新入社員の1人は、社内勉強会をどんな雰囲気でやっているのかを知りたくて参加していました。
「思っていたよりワイワイしていました。途中で『●●さん、これ詳しいですよね?』と参加者を巻き込む感じです。最後の質問では、私も名指しで当てられて、ちょっとドキドキしました(笑)」と楽しそうに話してくれました。
勉強会については、APアカデミー@<fn>{apAcademy}があることしか認識していなくて、講師がいて、その人が用意した資料をベースにやるものだと思っていたようです。AP Tech Talkは入社前にはイメージしていない内容のイベントだったそうですが、とても満足度が高かった、と感想を伝えてくれました。
//footnote[apAcademy][技術・サービス開発・経営/マネージメントなどの講座が、基礎から応用まで100種類以上用意されている社内大学です。]
== エンジニアが主催しているからできたこと
AP Tech Talkには、やらされ感がない「適度な非公式感」があるのだと思います。それは、経営や人事が運営に関わらないことによってできる雰囲気なのでしょう。
エンジニアには、BoFという文化があります。BoFとは、次のようなものです。
//quote{
BoFは「Birds of a feather flock together(同じ羽の鳥はいっしょに群がる)」を略したも
ので、日本語の「類は友を呼ぶ」という意味に相当する。IT関連のカンファレンスなどで、一般的には、その日のセッションが終了したあとで開催される、インフォーマルなミーティングのこと。形式にとらわれないで、技術的により深く議論したり、関係者同士が親睦を深めたりするために行われる討論会や座談会のことを指す。
//}
社内にも、IT関連のカンファレンスでBoFに参加したことがある人が何人かいます。IT業界のエンジニアカルチャーが、AP Tech Talkにも色濃く影響を与えているのではないかと思います。
そして、コロナ禍でしばらくできなくなってしまった「オフィスのバーカウンターでビールを片手に技術について語り合っていた楽しい体験」がミックスされて生まれたのが「AP TechTalk」なのだと思います。
「同じ興味を持っている友が集まる」「インフォーマル」「形式にとらわれない」「親睦が深まる」「技術的に深く議論できる」これらがAP Tech Talkでは体現されているのだと思います。
== 何がおもしろいと思ったのか
オンラインでのコミュニケーションは効率的だけど、ゆるっとしたカフェのような、バーカウンターのような雰囲気をつくるのが難しいと感じていました。それを実現できているところが、AP Tech Talkのおもしろさだと思いました。
参加者アンケートでも「このような空気感で、会話ができる機会を作ったことが良いなと思いました」「内容もよかったですが、みんなでわいわいやる機会が少ないのでそういう面でも楽しかったです」という回答がありました。
オフィスのバーカウンターに集まっている感じが再現されていたよさもありましたが、加えて、オンラインの特性により、オブザーバーが参加しやすいというプラスのよさもありました。
リアルな場だと「知り合いがいない集団の中に、聞き耳を立てるために物理的に近づく」のに心理的な抵抗を感じる人も多いと思います。ですが、オンラインだと気軽に「耳だけ参加」もできます。資料も見やすいし、音もクリアに聞こえる。「ちょっと聞いてみたい」を実現するハードルがすごく下がっていたように思います。
これにより、実は興味があるけど参加表明しづらかった人があぶり出されてくるような気がします。参加者同士で「あの人はこれに興味があるんだ」という気づきにもつながると思いますし、これからも、このイベントが続いていくといいな、と思います。
そして、「適度な非公式感」がある企画が新たに生まれるきっかけにもなることにも期待したいです。「何をやってもいい」と言われても事例がないと難しいと思いますし、「あ、こんなことをやっていいんだ」という事例になる。こうして、エンジニアが自らカルチャーをつくる会社になる。そんな文化風土をつくっていきたいと思います。
== 最後に
APCでは、こんな企画で一緒にワイワイしたり、こんな企画を立ち上げてくれる仲間を募集して
います。興味を持っていただけたら、お気軽にご連絡ください!
==== <募集職種>
* Azure/Kubernetes リードエンジニア
* Azure/Kubernetes 設計・構築・運用エンジニア
* ネットワーク自動化 エンジニア
* インフラエンジニア など
//image[image2][エーピーコミュニケーションズ採用サイト][scale=0.4]
https://www.ap-com.co.jp/recruit/ |
be857f3e030286160c9e993d6446ab4989097526 | 4616eaa264b617ad079d38c9b7d1cc114d224bc1 | /SD/Datalogger.ino | 7bc656de2bb6f11866d74a39d50699da73cba55a | [] | no_license | malaouar/AVR | c9a6c8e4eb9ecbe2aa95e434d8338c48fa65238a | ff079a0d56934ad0281a34c7a8231acfabe3dd95 | refs/heads/master | 2022-11-27T16:29:34.253052 | 2020-08-06T19:13:48 | 2020-08-06T19:13:48 | 285,650,661 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,456 | ino | Datalogger.ino |
// Arduino scetch to read the sensor output (connected to PC5) and write
// the result to a text file "datalog.txt" on the SD.
#include <SPI.h>
#include <SD.h>
const int chipSelect = 10; //uno
int n =0; // sample No
float voltage; // sample value
void setup(){
// Open serial communications and wait for port to open:
Serial.begin(9600);
Serial.print("Initializing SD card...");
// see if the card is present and can be initialized:
if (!SD.begin(chipSelect)) {
Serial.println("Card failed, or not present");
// don't do anything more:
return;
}
Serial.println("card initialized.");
}
void loop(){
// make a string for assembling the data to log:
String dataString = "";
dataString += String(n++); // append sample number to the string
dataString += ","; append a comma to the string
// read the sensor and append to the string:
int sensor = analogRead(5); // read PC5
voltage = (float) (sensor * 3.3)/1024; // Convert analog Value
dataString += String(voltage);
// open the file.
File dataFile = SD.open("datalog.txt", FILE_WRITE);
// if the file is available, write to it:
if (dataFile) {
dataFile.println(dataString);
dataFile.close();
// print to the serial port too:
Serial.println(dataString);
}
// if the file isn't open, pop up an error:
else {
Serial.println("error opening datalog.txt");
}
delay(3000); // wait 3 secondes
}
|
014d91d23563c3c3fa4bf36eb7d20bf3d50255d7 | 5d16837aa859b7a3cacd117ae38d006610ac7c86 | /4.6_Check_givenTree_is_BST.cpp | 481dc66b42732ec878fbabedd9a64e3fc77667a3 | [] | no_license | RS-codes/DataStructures_Tree | 4bf38e8f1877ecf5ee93441856f5c095b3817be4 | 4d3ed4ae806ca4d48a6ab654bae64d5868e835c9 | refs/heads/master | 2020-12-24T02:14:02.767324 | 2020-02-04T06:55:53 | 2020-02-04T06:55:53 | 237,347,404 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,573 | cpp | 4.6_Check_givenTree_is_BST.cpp | // 4.6 Check if a given tree is BST
#include<iostream>
using namespace std;
struct Node
{
int data;
Node* left;
Node* right;
};
Node* GetNewNode(int x){
Node* temp=new Node;
temp->data=x;
temp->left=NULL;
temp->right=NULL;
return temp;
}
Node* Insert(Node* root,int x){
if(root==NULL){
root=GetNewNode(x);
}
else if(x<root->data){
root->left=Insert(root->left,x);
}
else{
root->right=Insert(root->right,x);
}
return root;
}
// Returns true if given tree is BST.
bool isBST(Node* root, Node* l=NULL, Node* r=NULL)
{
// Base condition
if (root == NULL)
return true;
// if left node exist then check it has
// correct data or not
if (l != NULL && root->data < l->data)
return false;
// if right node exist then check it has
// correct data or not
if (r != NULL && root->data > r->data)
return false;
// check recursively for every node.
return isBST(root->left, l, root) &&
isBST(root->right, root, r);
}
/* Driver program to test above functions*/
int main()
{
Node * root= NULL;
int range,x;
cout<<"how many elements :";
cin>>range;
for(int i=0;i<range;i++){
cout<<"enter element: ";
cin>>x;
root=Insert(root,x);
}
if (isBST(root))
cout << " Above binary tree is a BST...\n";
else
cout << "Above binary tree is not a BST..!\n";
return 0;
}
|
ae078e8b9585fb51638384f5982f273a2b571434 | 72aa531d89acb617ef7b5c01cf0a6e4ea330fcc7 | /android/app/src/main/cpp/Nexus.androidframework/Headers/TAO/Ledger/types/state.h | 9c9563bc4540b3be369a1beafbd109c8d0e8530e | [
"MIT"
] | permissive | liuzhenLz/nexus-mobile | d4306a5e2f9b8f15a96b28d88007bb573dfb383b | e917e8da60a67383fd7b84848a15e3b3bbe1a055 | refs/heads/master | 2023-08-29T20:21:29.358115 | 2021-09-21T18:47:30 | 2021-09-21T18:47:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,200 | h | state.h | /*__________________________________________________________________________________________
(c) Hash(BEGIN(Satoshi[2010]), END(Sunny[2012])) == Videlicet[2014] ++
(c) Copyright The Nexus Developers 2014 - 2021
Distributed under the MIT software license, see the accompanying
file COPYING or http://www.opensource.org/licenses/mit-license.php.
"Doubt is the precursor to fear" - Alex Hannold
____________________________________________________________________________________________*/
#pragma once
#ifndef NEXUS_TAO_LEDGER_TYPES_STATE_H
#define NEXUS_TAO_LEDGER_TYPES_STATE_H
#include <TAO/Register/types/stream.h>
#include <TAO/Ledger/types/block.h>
namespace Legacy
{
class LegacyBlock;
}
/* Global TAO namespace. */
namespace TAO
{
/* Ledger Layer namespace. */
namespace Ledger
{
class ClientBlock;
class TritiumBlock;
class SyncBlock;
class Transaction;
/** BlockState
*
* This class is responsible for storing state variables
* that are chain specific for a specified block. These
* values are not recognized until this block is linked
* in the chain with all previous states before it.
*
**/
class BlockState : public Block
{
/* Tell compiler we are overloading this virtual method. */
using Block::ToString;
public:
/** The Block's timestamp. This number is locked into the signature hash. **/
uint64_t nTime;
/** System Script
*
* The critical system level pre-states and post-states.
*
**/
TAO::Register::Stream ssSystem;
/** The transaction history.
* uint8_t = TransactionType (per enum)
* uint512_t = Tx hash
**/
std::vector<std::pair<uint8_t, uint512_t> > vtx;
/** The Trust of the Chain to this Block. */
uint64_t nChainTrust;
/** The Total NXS released to date */
uint64_t nMoneySupply;
/** The Total NXS mint. **/
int32_t nMint;
/** The Total Fees in block. **/
uint64_t nFees;
/** The height of this channel. */
uint32_t nChannelHeight;
/** The weight of this channel. */
uint128_t nChannelWeight[3];
/** The reserves that are released. */
int64_t nReleasedReserve[3];
/** The reserves that are released. */
uint64_t nFeeReserve;
/** Used to Iterate forward in the chain */
uint1024_t hashNextBlock;
/** Used to store the checkpoint. **/
uint1024_t hashCheckpoint;
/* Serialization Macros */
IMPLEMENT_SERIALIZE
(
READWRITE(nVersion);
READWRITE(hashPrevBlock);
READWRITE(hashNextBlock);
READWRITE(hashMerkleRoot);
READWRITE(nChannel);
READWRITE(nHeight);
READWRITE(nBits);
READWRITE(nNonce);
READWRITE(nTime);
READWRITE(nChainTrust);
READWRITE(nMoneySupply);
READWRITE(nMint);
READWRITE(nChannelHeight);
READWRITE(nFees);
READWRITE(nChannelWeight[0]);
READWRITE(nChannelWeight[1]);
READWRITE(nChannelWeight[2]);
READWRITE(nFeeReserve);
READWRITE(nReleasedReserve[0]);
READWRITE(nReleasedReserve[1]);
READWRITE(nReleasedReserve[2]);
READWRITE(hashCheckpoint);
READWRITE(vchBlockSig);
READWRITE(ssSystem);
READWRITE(vOffsets);
READWRITE(vtx);
)
/** Default Constructor. **/
BlockState();
/** Copy constructor. **/
BlockState(const BlockState& block);
/** Move constructor. **/
BlockState(BlockState&& block) noexcept;
/** Copy assignment. **/
BlockState& operator=(const BlockState& block);
/** Move assignment. **/
BlockState& operator=(BlockState&& block) noexcept;
/** Copy constructor. **/
BlockState(const ClientBlock& block);
/** Move constructor. **/
BlockState(ClientBlock&& block) noexcept;
/** Copy assignment. **/
BlockState& operator=(const ClientBlock& block);
/** Move assignment. **/
BlockState& operator=(ClientBlock&& block) noexcept;
/** Default Destructor **/
virtual ~BlockState();
/** Default Constructor. **/
BlockState(const TritiumBlock& block);
/** Default Constructor. **/
BlockState(const Legacy::LegacyBlock& block);
/** Equivilence checking **/
bool operator==(const BlockState& state) const;
/** Equivilence checking **/
bool operator!=(const BlockState& state) const;
/** Not operator overloading. **/
bool operator!(void) const;
/** GetBlockTime
*
* Returns the current UNIX timestamp of the block.
*
* @return 64-bit integer of timestamp.
*
**/
uint64_t GetBlockTime() const;
/** Prev
*
* Get the previous block state in chain.
*
* @return The previous block state.
*
**/
BlockState Prev() const;
/** Next
*
* Get the next block state in chain.
*
* @return The next block state.
*
**/
BlockState Next() const;
/** Index
*
* Index a block state into chain.
*
* @return true if accepted.
*
**/
bool Index();
/** Set Best
*
* Set this state as the best chain.
*
* @return true if accepted.
*
**/
bool SetBest();
/** Connect
*
* Connect a block state into chain.
*
* @return true if connected.
*
**/
bool Connect();
/** Disconnect
*
* Remove a block state from the chain.
*
* @return true if disconnected.
*
**/
bool Disconnect();
/** Trust
*
* Get the trust of this block.
*
* @return the current trust in the chain.
*
**/
uint64_t Trust() const;
/** Weight
*
* Get the weight of this block.
*
* @return the current weight for this block.
*
**/
uint64_t Weight() const;
/** IsInMainChain
*
* Function to determine if this block has been connected into the main chain.
*
* @return true if in the main chain.
*
**/
bool IsInMainChain() const;
/** ToString
*
* For debugging Purposes seeing block state data dump.
*
* @param[in] nState The states to output.
*
* @return the string with output data.
*
**/
std::string ToString(uint8_t nState = debug::flags::header) const;
/** print
*
* For debugging to dump state to console.
*
* @param[in] nState The states to output.
*
**/
virtual void print() const;
/** SignatureHash
*
* Get the Signature Hash of the block. Used to verify work claims.
*
* @return Returns a 1024-bit signature hash.
*
**/
uint1024_t SignatureHash() const;
/** StakeHash
*
* Prove that you staked a number of seconds based on weight.
*
* @return 1024-bit stake hash.
*
**/
uint1024_t StakeHash() const;
};
/** GetLastState
*
* Gets a block state by channel from hash.
*
* @param[in] state The block to search from.
* @param[in] nChannel The channel to search for.
*
* @return The block state found.
*
**/
bool GetLastState(BlockState& state, uint32_t nChannel);
}
}
#endif
|
d786bc1fcc8e2399a7ba83a860b263a8d0b06eaa | 60552921a4216e77a4d2c4da19026a0978d72d5e | /sourcecode/include/controllers/RobotController.h | 417b779806eb1af416a23acb53a6f38f1d61f865 | [
"MIT"
] | permissive | corcoranp/senior-design | bc26cc6326dd2fa366bf94789e932325fe778a85 | 6dbc1521f406a6e080808383d88701c11344b78e | refs/heads/master | 2020-12-24T06:51:29.775902 | 2016-04-04T17:44:10 | 2016-04-04T17:45:46 | 38,047,166 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,933 | h | RobotController.h | /*
* RobotController.h
*
* By: Peter Corcoran
* Copyright: © 2015
*
* Jun 27, 2015 - Initial Coding
*
* This file is used as the main controller system of
* The responsibility of this class is to control system operations
*
* 1. System Check
* 2. Hardware Check
* 3. Sensor Check
* 4. Boot State Check
*
*/
#ifndef INCLUDE_CONTROLLERS_ROBOTCONTROLLER_H_
#define INCLUDE_CONTROLLERS_ROBOTCONTROLLER_H_
#include <iostream>
#include <math.h>
#include "../system/starter.h"
#include "../system/indicator.h"
#include "../model/port.h"
/*
* Reference the other controller classes
*/
#include "ArmController.h"
#include "ImagingController.h"
#include "MotorController.h"
#include "StorageController.h"
#include "NavigationController.h"
#include "../io/StepperMotor.h"
namespace blaze {
/*
* GLOBAL ROBOT PROPERTIES
*/
extern int velocity;
class RobotController {
public :
//RobotController();
//virtual ~RobotController();
static void *entry(void *arg);
static bool getIsRunning();
static void setIsRunning(bool val);
void start(); //Method for starting the Robot
void reset();
static bool hasPortBeenFound;
static bool m_isRunning;
static starter *control_buttons;
static indicator *state_display;
static MotorController *motorControl;
static StepperMotor *stepperControl;
static ArmController *armControl;
static StorageController *storageControl;
static ImagingController *imageControl;
static NavigationController *navControl;
static PortConfig currentPortConfig;
static workqueue<measurement*>* m_queue;
private:
void systemCheck();
void hardwareCheck();
void sensorCheck();
void readyStateCheck();
static bool solveTunnel();
static bool solveZoneA();
static bool solveZoneB();
static bool solveZoneC();
static bool scanRail();
static bool dance();
};
}
#endif /* INCLUDE_CONTROLLERS_ROBOTCONTROLLER_H_ */
|
504c95c3adbd872f9c857ffe606cf57e82eb9de5 | 651e05b346c03e22fb253a546c3ec6b2c05e44ae | /src/main.cpp | cec97c608ebf1baf5e65a0c7fae78fc253f47b71 | [
"BSD-3-Clause"
] | permissive | nornex/build-graph | 9974ad899c5911b284fe861a890685d5ea8b4688 | 5acc28daa7cbd9c5fa38f41a0e87fafb9ab6adaf | refs/heads/master | 2020-05-29T22:43:55.671369 | 2017-02-20T23:46:45 | 2017-02-20T23:46:45 | 82,613,789 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,260 | cpp | main.cpp | #include <iostream>
#include <memory>
#include "config/operation_node.hpp"
#include "config/io_node.hpp"
#include "config/graph.hpp"
int main()
{
using namespace node;
std::cout << "Hello, World!" << std::endl;
auto graph = node::Graph<OperationNode, IoNodeFile>{};
auto& src_file = graph.CreateNode<IoNodeFile>("foo", "./foo.txt");
auto& dest_file = graph.CreateNode<IoNodeFile>("bar", "./bar.txt" );
auto& copy_op =
graph.CreateNode<OperationNode>("copy")
.AddInput(src_file)
.AddOutput(dest_file);
for (const auto& io : graph.NodesOfType<IoNodeFile>())
{
std::cout << io.id() << std::endl;
}
for (const auto& op : graph.NodesOfType<OperationNode>())
{
std::cout << op.id() << std::endl;
}
//
// auto src_file = node::IoNodeFile { "foo", "./foo.txt" };
// auto dest_file = node::IoNodeFile { "bar", "./bar.txt" };
//
// auto op = node::OperationNode { "copy" };
//
// op.AddInput(src_file);
// op.AddOutput(dest_file);
//
// for (const auto& i : op.inputs())
// {
// std::cout << i.id() << std::endl;
// }
//
// for (const auto& i : op.outputs())
// {
// std::cout << i.id() << std::endl;
// }
return 0;
}
|
d9f77d99992b77d3670664d55d6e71e3f02325a8 | 2d31f77719475883107caaf75d550de78a9d618a | /template assembly/main.cpp | 8724d0ec794715c99120f6c5bd06c739da2c399c | [
"MIT"
] | permissive | wqx081/Template-Assembly | 3bce8d294bd832d31b5b6a22f418990463edd893 | 95e3166a5e65fedfef722cd9fe07e7d7ffc74df8 | refs/heads/master | 2021-01-22T16:26:27.797637 | 2015-09-24T00:03:37 | 2015-09-24T00:03:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,406 | cpp | main.cpp | #include <iostream>
#include <cassert>
#include "asm.h"
template <typename A, typename B>
void check_same(const char* msg, A x, B y) {
if (!(x == y))
std::cerr << msg << ": " << x << " != " << y << std::endl;
}
template <typename A, typename B>
void check_same(const char* msg, A* x, B* y) {
if (!(x == y))
printf("%s: %p != %p\n", msg, x, y);
}
template <typename Count, typename... Body>
constexpr auto do_x_times(Count count, Body... body)
{
return block(
MOV(ecx, count),
"start"_label,
CMP(ecx, 0_d),
JE("done"_rel8),
body...,
DEC(ecx),
JMP("start"_rel8),
"done"_label);
}
int ret66() { return 66; }
char str[] = "abc";
int main(int argc, const char * argv[]) {
check_same("Mov literal", 3,
Asm<int>(
MOV(eax, 3_d),
RET())()
);
check_same("64 bit register MOV", 6,
Asm<int>(
MOV(rax, 6_q),
RET())()
);
check_same("Negative literal", -103,
Asm<int>(
MOV(eax, -3_d),
ADD(eax, - - -100_d),
RET())()
);
check_same("Move reg to reg", 4,
Asm<int>(
MOV(ecx, 4_d),
MOV(eax, ecx),
RET())()
);
check_same("Simple jmp", 3,
Asm<int>(
MOV(eax, 3_d),
JMP("a"_rel8),
ADD(eax, 2_d),
"a"_label,
RET())()
);
check_same("Simple jmp", 3,
Asm<int>(
MOV(eax, 3_d),
JMP("a"_rel8),
ADD(eax, 2_d),
"a"_label,
RET())()
);
check_same("Simple loop", 30,
Asm<int>(
MOV(ecx, 5_d),
MOV(eax, 0_d),
"start"_label,
CMP(ecx, 0_d),
JE("done"_rel8),
ADD(eax, 6_d),
DEC(ecx),
JMP("start"_rel8),
"done"_label,
RET())()
);
check_same("Macro simple loop", 30,
Asm<int>(
MOV(eax, 0_d),
do_x_times(5_d,
ADD(eax, 6_d)),
RET())()
);
check_same("Access arg using esp", 1,
Asm<int>(
MOV(eax, _[esp + 28_d]),
RET())(1, 2, 3)
);
check_same("Access arg using ebp", 1,
Asm<int>(
MOV(eax, _[ebp - 0xc_b]),
RET())(1, 2, 3)
);
check_same("Index ebp", 1,
Asm<int>(
MOV(ecx, 2_d),
MOV(eax, _[ebp + ecx * 2_b - 0x10_d]),
RET())(1, 2, 3)
);
check_same("Access args using ebp", 5,
Asm<int>(
MOV(edx, 0_d),
MOV(eax, _[ebp - 0xc_b]),
MOV(ecx, _[ebp - 0x10_b]),
DIV(ecx),
MOV(ecx, _[ebp - 0x14_b]),
DIV(ecx),
RET())(100, 5, 4)
);
check_same("Access arg with 64 bit reg", 2,
Asm<int>(
MOV(rax, _[rsp + 24_d]),
RET())(1, 2, 3)
);
check_same("Access second register zero", 1,
Asm<int>(
MOV(ecx, 0_d),
MOV(eax, _[esp + 28_d + ecx]),
RET())(1, 2, 3)
);
check_same("Access second register with offset", 1,
Asm<int>(
MOV(ecx, 8_d),
MOV(eax, _[esp + 20_d + ecx]),
RET())(1, 2, 3)
);
check_same("Access second register with offset and 1 scale", 1,
Asm<int>(
MOV(ecx, 8_d),
MOV(eax, _[esp + 20_d + ecx * 1_b]),
RET())(1, 2, 3)
);
check_same("Access second register with offset and 4 scale", 1,
Asm<int>(
MOV(ecx, 2_d),
MOV(eax, _[esp + 20_d + ecx * 4_b]),
RET())(1, 2, 3)
);
check_same("Call c function from assembly", 68,
Asm<int>(
MOV(rbx, _[rsp + 8_d]),
CALL(rbx),
ADD(eax, 2_d),
RET())(&ret66)
);
check_same("Call c function from esp directly", 66,
Asm<int>(
CALL(_[rsp + 8_d]),
RET())(&ret66)
);
check_same("Call c function from ebp directly", 66,
Asm<int>(
CALL(_[rbp - 0x10_d]),
RET())(&ret66)
);
// auto p = Asm<int>(CALL(_[rbp - 0xc_d]));
// Print<decltype(p)::program> x{};
std::cout << "done" << std::endl;
return 0;
}
|
9e79bbe2de8787f5b0b0446b37d1506d62a3f2f0 | 5d78e15f012711f703d5a935acc8e99325cc39c4 | /items/Item.cpp | cbcc81b7df26e01926e41606a3d5395cc249f803 | [] | no_license | rgrahamh/gladiator | 831e213937336a45aaab6b625f4d8ea8b63ee3b5 | 986d36e32467ee1cf744909a61d075f15fe770c8 | refs/heads/master | 2020-04-15T07:42:53.504644 | 2019-12-30T02:46:53 | 2019-12-30T02:46:53 | 164,499,906 | 1 | 0 | null | 2019-01-15T03:30:45 | 2019-01-07T21:35:15 | C++ | UTF-8 | C++ | false | false | 1,221 | cpp | Item.cpp | #include "Item.h"
/**
* @brief Parameterized constructor for Item
* @param n The name of the item
* @param w The weight of the item
* @param val The value of the item
* @param t The type of item (defaults to MISC.)
* @return An Item
*/
Item::Item(string n, double w, int val, int t = MISC) {
this->name = n;
this->type = t;
this->weight = w;
this->value = val;
}
/**
* @brief Destructor for Item
*/
Item::~Item() {
}
/**
* @brief Returns the item name
* @return The item name
*/
string Item::getName() {
return this->name;
}
/**
* @brief Returns the item type
* @return The item type
*/
int Item::getType() {
return this->type;
}
/**
* @brief Returns the item weight
* @return The item weight
*/
double Item::getWeight() {
return this->weight;
}
/**
* @brief Returns the item value
* @return The item value
*/
int Item::getValue() {
return this->value;
}
/**
* @brief Renames an item
* @param n The new item name
*/
void Item::setName(string n) {
this->name = n;
}
/**
* @brief Prints information about the item
*/
void Item::print() {
cout << this->name << ":" << endl << "Value: " << this->value << endl << "Weight: " << this->weight << endl;
}
|
6b29ccf8b1e54fc93e3f13fa98d221682b388f8c | 60db84d8cb6a58bdb3fb8df8db954d9d66024137 | /android-cpp-sdk/platforms/android-7/android/text/TextWatcher.hpp | 227d9c024a69379d39c1568a3615891f3f0d81d1 | [
"BSL-1.0"
] | permissive | tpurtell/android-cpp-sdk | ba853335b3a5bd7e2b5c56dcb5a5be848da6550c | 8313bb88332c5476645d5850fe5fdee8998c2415 | refs/heads/master | 2021-01-10T20:46:37.322718 | 2012-07-17T22:06:16 | 2012-07-17T22:06:16 | 37,555,992 | 5 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 3,749 | hpp | TextWatcher.hpp | /*================================================================================
code generated by: java2cpp
author: Zoran Angelov, mailto://baldzar@gmail.com
class: android.text.TextWatcher
================================================================================*/
#ifndef J2CPP_INCLUDE_IMPLEMENTATION
#ifndef J2CPP_ANDROID_TEXT_TEXTWATCHER_HPP_DECL
#define J2CPP_ANDROID_TEXT_TEXTWATCHER_HPP_DECL
namespace j2cpp { namespace java { namespace lang { class Object; } } }
namespace j2cpp { namespace java { namespace lang { class CharSequence; } } }
namespace j2cpp { namespace android { namespace text { class NoCopySpan; } } }
namespace j2cpp { namespace android { namespace text { class Editable; } } }
#include <android/text/Editable.hpp>
#include <android/text/NoCopySpan.hpp>
#include <java/lang/CharSequence.hpp>
#include <java/lang/Object.hpp>
namespace j2cpp {
namespace android { namespace text {
class TextWatcher;
class TextWatcher
: public object<TextWatcher>
{
public:
J2CPP_DECLARE_CLASS
J2CPP_DECLARE_METHOD(0)
J2CPP_DECLARE_METHOD(1)
J2CPP_DECLARE_METHOD(2)
explicit TextWatcher(jobject jobj)
: object<TextWatcher>(jobj)
{
}
operator local_ref<java::lang::Object>() const;
operator local_ref<android::text::NoCopySpan>() const;
void beforeTextChanged(local_ref< java::lang::CharSequence > const&, jint, jint, jint);
void onTextChanged(local_ref< java::lang::CharSequence > const&, jint, jint, jint);
void afterTextChanged(local_ref< android::text::Editable > const&);
}; //class TextWatcher
} //namespace text
} //namespace android
} //namespace j2cpp
#endif //J2CPP_ANDROID_TEXT_TEXTWATCHER_HPP_DECL
#else //J2CPP_INCLUDE_IMPLEMENTATION
#ifndef J2CPP_ANDROID_TEXT_TEXTWATCHER_HPP_IMPL
#define J2CPP_ANDROID_TEXT_TEXTWATCHER_HPP_IMPL
namespace j2cpp {
android::text::TextWatcher::operator local_ref<java::lang::Object>() const
{
return local_ref<java::lang::Object>(get_jobject());
}
android::text::TextWatcher::operator local_ref<android::text::NoCopySpan>() const
{
return local_ref<android::text::NoCopySpan>(get_jobject());
}
void android::text::TextWatcher::beforeTextChanged(local_ref< java::lang::CharSequence > const &a0, jint a1, jint a2, jint a3)
{
return call_method<
android::text::TextWatcher::J2CPP_CLASS_NAME,
android::text::TextWatcher::J2CPP_METHOD_NAME(0),
android::text::TextWatcher::J2CPP_METHOD_SIGNATURE(0),
void
>(get_jobject(), a0, a1, a2, a3);
}
void android::text::TextWatcher::onTextChanged(local_ref< java::lang::CharSequence > const &a0, jint a1, jint a2, jint a3)
{
return call_method<
android::text::TextWatcher::J2CPP_CLASS_NAME,
android::text::TextWatcher::J2CPP_METHOD_NAME(1),
android::text::TextWatcher::J2CPP_METHOD_SIGNATURE(1),
void
>(get_jobject(), a0, a1, a2, a3);
}
void android::text::TextWatcher::afterTextChanged(local_ref< android::text::Editable > const &a0)
{
return call_method<
android::text::TextWatcher::J2CPP_CLASS_NAME,
android::text::TextWatcher::J2CPP_METHOD_NAME(2),
android::text::TextWatcher::J2CPP_METHOD_SIGNATURE(2),
void
>(get_jobject(), a0);
}
J2CPP_DEFINE_CLASS(android::text::TextWatcher,"android/text/TextWatcher")
J2CPP_DEFINE_METHOD(android::text::TextWatcher,0,"beforeTextChanged","(Ljava/lang/CharSequence;III)V")
J2CPP_DEFINE_METHOD(android::text::TextWatcher,1,"onTextChanged","(Ljava/lang/CharSequence;III)V")
J2CPP_DEFINE_METHOD(android::text::TextWatcher,2,"afterTextChanged","(Landroid/text/Editable;)V")
} //namespace j2cpp
#endif //J2CPP_ANDROID_TEXT_TEXTWATCHER_HPP_IMPL
#endif //J2CPP_INCLUDE_IMPLEMENTATION
|
c9a05399fbfbc4a7275d548ad829d80bae67a24f | 61f6072aa0f7d2363d870bbfb31c6a2c1966b633 | /TRABALHOFINALFUP.cpp | fec5043768d86f502ac9f1678339696c8628dac9 | [] | no_license | Mariaeduardals/Trabalho-final-de-fup | 8a29ec01418f3841424dba460618a1fc8be093dd | 56c73b5512e08cdd3bd5116804d6d3375369bf8a | refs/heads/master | 2022-11-26T20:37:19.934097 | 2020-08-04T16:11:10 | 2020-08-04T16:11:10 | 285,032,144 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,473 | cpp | TRABALHOFINALFUP.cpp | #include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define MAX 100
typedef struct {
char nome[50];
int ano;
float premiacao;
}Titulo;
typedef struct{
char nome[50];
int idade;
int equipe;
char pais[50];
char jogo[50];
float salario;
int quantidadeTitulos;
Titulo titulos[100];
}Atleta;
Atleta atletas[MAX];
int tamanhoReal = 0;
void preencheTitulo(Titulo *t, int n){
int i = 0;
for(i = 0; i < n; i++){
printf("Informe o nome do titulo: ");
scanf("%s", t[i].nome);
printf("Ano do titulo: ");
scanf("%d", &t[i].ano);
printf("Informe a premiacao: ");
scanf("%f", &t[i].premiacao);
if(t[i].premiacao < 30000){
printf("Premiacoes validas apenas acima de R$ 30.000. Informe novamente: ");
scanf("%f", &t[i].premiacao);
}
}
setbuf(stdin, NULL);
}
void mostraTitulo(Titulo *t, int n){
int i;
for(i=0; i<n; i++){
if(strcmp(t[i].nome,"NULL") != 0){
printf("\n-----------------------\n");
printf("Nome do titulo: %s\n", t[i].nome);
printf("Ano do titulo: %d\n", t[i].ano);
printf("Valor da premiacao do titulo: %.2f\n", t[i].premiacao);
printf("-----------------------\n");
}
}
}
int pegarPosicao(char * nome){
int i;
for(i = 0; i < tamanhoReal; i++){
if(strcmp(atletas[i].nome, nome) == 0){
return i;
}
}
return -1;
}
void preencheAtleta(){
printf("Informe seu nome: ");
scanf("%s", atletas[tamanhoReal].nome);
printf("Insira sua idade: ");
scanf("%d", &atletas[tamanhoReal].idade);
printf("Informe sua equipe: ");
printf("\nEquipe 1");
printf("\nEquipe 2");
printf("\nEquipe 3: ");
scanf("%d", &atletas[tamanhoReal].equipe);
printf("Informe seu pais: ");
scanf("%s", atletas[tamanhoReal].pais);
printf("Informe o nome do jogo: ");
scanf("%s", atletas[tamanhoReal].jogo);
printf("Informe seu salario: ");
scanf("%f", &atletas[tamanhoReal].salario);
if(atletas[tamanhoReal].salario < 6000){
printf("Salarios validos apenas acima de R$6.000. Informe novamente: ");
scanf("%f", &atletas[tamanhoReal].salario);
}
int n;
printf("Digite a quantidade de titulos: ");
scanf("%d",&n);
atletas[tamanhoReal].quantidadeTitulos = n;
preencheTitulo(atletas[tamanhoReal].titulos,n);
tamanhoReal++;
setbuf(stdin, NULL);
printf("\nCyber-atleta adicionado com sucesso!\n");
}
void mostraAtleta(){
int i;
for(i=0; i<tamanhoReal; i++){
int nTitulos = sizeof(atletas[i].titulos)/sizeof(atletas[i].titulos[0]);
if(strcmp(atletas[i].nome,"NULL") != 0){
printf("\n--------Cyber-atleta---------\n");
printf("Nome: %s\n", atletas[i].nome);
printf("Idade: %d anos\n", atletas[i].idade);
printf("Equipe: %d\n", atletas[i].equipe);
printf("Pais: %s\n", atletas[i].pais);
printf("Jogo: %s\n", atletas[i].jogo);
printf("Salario: %.2f\n", atletas[i].salario);
mostraTitulo(atletas[i].titulos, atletas[i].quantidadeTitulos);
printf("--------------------------------");
}
}
}
void alteraTitulo(Titulo *t){
char alterarTitulo[50];
printf("O que do titulo voce deseja alterar ?");
scanf("%s", alterarTitulo);
if(strcmp(alterarTitulo,"nome")==0){
printf("Digite o novo titulo: ");
scanf("%s", t->nome);
}
else
if(strcmp(alterarTitulo, "ano")==0){
printf("Digite o novo ano: ");
scanf("%d",&t->ano);
}
else
if(strcmp(alterarTitulo, "premiacao")==0){
printf("Informe o novo valor da premiacao: ");
scanf("%.2f", &t->premiacao);
}
setbuf(stdin, NULL);
}
void alterarAtleta(){
char nomeAtleta[50];
int op, posi =-1;
do {
printf("Qual atleta deseja alterar ? ");
scanf("%s",nomeAtleta);
setbuf(stdin, NULL);
posi= pegarPosicao(nomeAtleta);
if (posi == -1){
printf("Nenhum usuario encontrado. Tente novamente!\n");
}
}while(posi == -1);
setbuf(stdin, NULL);
do{
printf("O que deseja editar?\n");
printf("\n------------\n");
printf(" 1- Nome: \n");
printf(" 2- Idade: \n");
printf(" 3- Equipe: \n");
printf(" 4- Pais: \n");
printf(" 5- Jogo: \n");
printf(" 6- Salario: \n");
printf(" 7- Titulos: \n");
printf(" 0- Sair: \n");
printf("\n------------|\n");
printf("Opcao: ");
scanf("%d",&op);
switch(op){
case 1:{
printf("Informe o novo nome a ser inserido: ");
setbuf(stdin, NULL);
scanf("%[^\n]",atletas[posi].nome);
printf("Alterado com sucesso!\n");
break;
}
case 2:{
printf("Informe a nova idade a ser inserida: ");
setbuf(stdin, NULL);
scanf("%d",&atletas[posi].idade);
printf("Alterado com sucesso!\n");
break;
}
case 3:{
printf("Informe qual sera a nova equipe a ser inserido: ");
setbuf(stdin, NULL);
scanf("%d", &atletas[posi].equipe);
printf("Alterado com sucesso!\n");
break;
}
case 4:{
printf("Informe o novo nome do pais a ser inserido: ");
setbuf(stdin, NULL);
scanf("%[^\n]", atletas[posi].pais);
printf("Alterado com sucesso!\n");
break;
}
case 5:{
printf("Informe o novo nome do jogo a ser inserido: ");
setbuf(stdin, NULL);
scanf("%[^\n]",atletas[posi].jogo);
printf("Alterado com sucesso!\n");
break;
}
case 6:{
printf("Informe o novo valor para o salario: ");
setbuf(stdin, NULL);
scanf("%f", &atletas[posi].salario);
printf("Alterado com sucesso!\n");
break;
}
case 7:{
int opc;
setbuf(stdin, NULL);
do{
printf("O que deseja editar em titulos?\n");
setbuf(stdin, NULL);
printf("\n-----------------\n");
printf(" 1- Nome do titulo: \n");
printf(" 2- Ano do titulo: \n");
printf(" 3- Premiacao: \n");
printf(" 4- SAIR \n");
printf("\n-----------------\n");
printf("Opcao: ");
scanf("%d",&opc);
setbuf(stdin, NULL);
switch(opc){
case 1:{
printf("Informe o novo titulo: ");
setbuf(stdin, NULL);
scanf("%[^\n]", atletas[posi].titulos->nome);
printf("Alterado com sucesso!\n");
break;
}
case 2:{
printf("Informe o novo ano do titulo: ");
setbuf(stdin, NULL);
scanf("%d", &atletas[posi].titulos->ano);
printf("Alterado com sucesso!\n");
break;
}
case 3:{
printf("Informe a nova premiacao: ");
setbuf(stdin, NULL);
scanf("%f", &atletas[posi].titulos->premiacao);
printf("Alterado com sucesso!\n");
break;
}
}
}while(opc != 4);
}
case 8:{
break;
}
}
}while(op!= 0);
}
void removeAtletas(){
char removeNome[50];
int achou = 0;
int i, j;
printf("Digite o nome que deseja remover: ");
scanf("%s", removeNome);
setbuf(stdin, NULL);
for(i = 0; i < tamanhoReal; i++){
if(strcmp(atletas[i].nome, removeNome) == 0){
strcpy(atletas[i].nome, "NULL");
atletas[i].idade = 0;
atletas[i].equipe = 0;
strcpy(atletas[i].pais, "NULL");
strcpy(atletas[i].jogo, "NULL");
atletas[i].salario = 0.0;
for(j =0; j < tamanhoReal; j++){
strcpy(atletas[i].titulos[j].nome, "NULL") ;
atletas[i].titulos[j].ano = 0;
atletas[i].titulos[j].premiacao = 0.0;
}
achou =1;
}
}
if(achou == 1){
printf("Atleta removido\n");
}else{
printf("Atleta nao encontrado\n");
}
setbuf(stdin, NULL);
}
void buscaNome(){
char buscaNome[50];
int achou = 0, i;
printf("Informe o nome do cyber-atleta que deseja buscar as informacoes: ");
scanf("%s", buscaNome);
for(i = 0; i < tamanhoReal; i++){
if(strcmp(atletas[i].nome, buscaNome) == 0){
printf("\n---------------Cyber-atleta-----------------\n");
printf("Nome: %s\n", atletas[i].nome);
printf("Idade: %d anos\n", atletas[i].idade);
printf("Equipe: %d\n", atletas[i].equipe);
printf("Pais: %s\n", atletas[i].pais);
printf("Jogo: %s\n", atletas[i].jogo);
printf("Salario: %.2f\n", atletas[i].salario);
mostraTitulo(atletas[i].titulos, atletas[i].quantidadeTitulos);
printf("\n---------------------------------------------\n");
achou = 1;
break;
}
}
if(achou == 0){
printf("Cyber-atleta nao encontrado");
}
}
void buscaPais(){
char buscaPais[50];
int achou = 0, i;
printf("Informe o pais que deseja buscar para ver informacoes dos cyber-atleta: ");
scanf("%s",buscaPais);
for(i = 0; i < tamanhoReal; i++){
if(strcmp(atletas[i].pais, buscaPais) == 0){
printf("\n---------------Cyber-atleta----------\n");
printf("Nome: %s\n", atletas[i].nome);
printf("Idade: %d anos\n", atletas[i].idade);
printf("Equipe: %d\n", atletas[i].equipe);
printf("Pais: %s\n", atletas[i].pais);
printf("Jogo: %s\n", atletas[i].jogo);
printf("Salario: %.2f\n", atletas[i].salario);
mostraTitulo(atletas[i].titulos, atletas[i].quantidadeTitulos);
printf("-----------------------------------------");
printf("\n \n");
achou =1;
}
}
if(achou == 0){
printf("Nao ha nenhum cyber-atleta deste pais");
}
}
void buscaTitulo(){
char buscaTitulo[50];
int achou = 0, i,j;
printf("Informe por qual titulo deseja saber quais sao os cyber-atletas: ");
scanf("%s", buscaTitulo);
for(i = 0; i < MAX; i++){
for(j = 0; j < MAX; j++){
if(strcmp(atletas[i].titulos[j].nome, buscaTitulo) == 0){
printf("\n---------Cyber-Atleta--------\n");
printf("Nome: %s\n", atletas[i].nome);
printf("Idade: %d anos\n", atletas[i].idade);
printf("Equipe: %d\n", atletas[i].equipe);
printf("Pais: %s\n", atletas[i].pais);
printf("Jogo: %s\n", atletas[i].jogo);
printf("Salario: %.2f\n", atletas[i].salario);
printf("--------------------------------");
printf("\n \n");
achou =1;
break;
}
}
}
if(achou == 0){
printf("Titulo nao encontrado");
}
}
void custoSalarios(){
int equipe, i, achou = 0;
float somaSalario = 0;
printf("Informe a equipe na qual deseja saber os custos : ");
scanf("%d", &equipe);
for(i = 0; i < MAX; i++){
if(atletas[i].equipe == equipe){
somaSalario += atletas[i].salario;
achou = 1;
}
}
if(achou == 0){
printf("Equipe nao encontrada. ");
}else{
printf("Custo dos salarios: %.2f", somaSalario);
}
}
int main(){
int opcao,i,j;
while(1){
printf("\n---------Menu----------\n");
printf("1 - Cadastrar cyber-atleta\n");
printf("2 - Alterar um cyber-atleta\n");
printf("3 - Remover umm cyber-atleta\n");
printf("4 - Buscar um cyber-atleta pelo nome\n");
printf("5 - Buscar cyber-atletas pelo pais\n");
printf("6 - Buscar cyber-atletas pelo titulo \n");
printf("7 - Custos de salario de uma equipe\n");
printf("8 - Sair\n");
printf("Escolha uma opcao: ");
scanf("%d", &opcao);
setbuf(stdin, NULL);
switch(opcao){
case 1:{
preencheAtleta();
break;
}
case 2:{
alterarAtleta();
break;
}
case 3:{
removeAtletas();
break;
}
case 4:{
buscaNome();
break;
}
case 5:{
buscaPais();
break;
}
case 6:{
buscaTitulo();
break;
}
case 7:{
custoSalarios();
break;
}
}
if(opcao == 8){
break;
}
}
return 0;
}
|
936a3fcd07fd74c0508bcf978f76ac5e1f0d1f76 | 155929eb4979131ee0e95c1c5f1817f88a94d7f2 | /test/uri_comparison_test.cpp | 68ee68f6db62e0c7f2554004941f0730fa6210dd | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | chrismanning/uri | ddd2a61a4901b0bb433f569f165248b328b5499d | dab4f874302f26864f1cf3000cc286770b1e84e1 | refs/heads/master | 2021-01-17T05:34:34.876310 | 2013-08-25T10:57:40 | 2013-08-25T10:57:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,809 | cpp | uri_comparison_test.cpp | // Copyright (c) Glyn Matthews 2012, 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <gtest/gtest.h>
#include <network/uri.hpp>
TEST(uri_comparison_test, equality_test) {
network::uri lhs("http://www.example.com/");
network::uri rhs("http://www.example.com/");
ASSERT_EQ(lhs, rhs);
}
TEST(uri_comparison_test, equality_test_capitalized_scheme) {
network::uri lhs("http://www.example.com/");
network::uri rhs("HTTP://www.example.com/");
ASSERT_NE(lhs.compare(rhs, network::uri_comparison_level::string_comparison), 0);
}
TEST(uri_comparison_test, equality_test_capitalized_scheme_with_case_normalization) {
network::uri lhs("http://www.example.com/");
network::uri rhs("HTTP://www.example.com/");
ASSERT_EQ(lhs.compare(rhs, network::uri_comparison_level::syntax_based), 0);
}
//TEST(uri_comparison_test, equality_test_capitalized_host) {
// network::uri lhs("http://www.example.com/");
// network::uri rhs("http://WWW.EXAMPLE.COM/");
// ASSERT_EQ(lhs, rhs);
//}
//
//TEST(uri_comparison_test, equality_test_user_info) {
// network::uri lhs("ftp://john.doe@ftp.example.com/");
// network::uri rhs("ftp://JOHN.DOE@ftp.example.com/");
// ASSERT_NE(lhs, rhs);
//}
//
//TEST(uri_comparison_test, equality_test_default_http_port) {
// network::uri lhs("http://www.example.com/");
// network::uri rhs("http://www.example.com:80/");
// ASSERT_EQ(lhs, rhs);
//}
//
//TEST(uri_comparison_test, equality_test_default_http_port_2) {
// network::uri lhs("http://www.example.com:80/");
// network::uri rhs("http://www.example.com/");
// ASSERT_EQ(lhs, rhs);
//}
//
//TEST(uri_comparison_test, equality_test_default_https_port) {
// network::uri lhs("https://www.example.com/");
// network::uri rhs("https://www.example.com:443/");
// ASSERT_EQ(lhs, rhs);
//}
//
//TEST(uri_comparison_test, equality_test_default_https_port_2) {
// network::uri lhs("https://www.example.com:443/");
// network::uri rhs("https://www.example.com/");
// ASSERT_EQ(lhs, rhs);
//}
//
//TEST(uri_comparison_test, equality_test_empty_path_with_trailing_slash) {
// network::uri lhs("http://www.example.com/");
// network::uri rhs("http://www.example.com");
// ASSERT_EQ(lhs, rhs);
//}
//
//TEST(uri_comparison_test, equality_test_with_single_dot_segment) {
// network::uri lhs("http://www.example.com/./path");
// network::uri rhs("http://www.example.com/path");
// ASSERT_EQ(lhs, rhs);
//}
//
//TEST(uri_comparison_test, equality_test_with_double_dot_segment) {
// network::uri lhs("http://www.example.com/1/../2/");
// network::uri rhs("http://www.example.com/2/");
// ASSERT_EQ(lhs, rhs);
//}
//
//TEST(uri_comparison_test, equality_test_with_trailing_slash) {
// network::uri lhs("http://www.example.com/path/");
// network::uri rhs("http://www.example.com/path");
// ASSERT_EQ(lhs, rhs);
//}
//
//TEST(uri_comparison_test, equality_test_with_file_ext) {
// network::uri lhs("http://www.example.com/filename.txt");
// network::uri rhs("http://www.example.com/filename.txt/");
// ASSERT_NE(lhs, rhs);
//}
TEST(uri_comparison_test, equality_empty_lhs) {
network::uri lhs;
network::uri rhs("http://www.example.com/");
ASSERT_NE(lhs, rhs);
}
TEST(uri_comparison_test, equality_empty_rhs) {
network::uri lhs("http://www.example.com/");
network::uri rhs;
ASSERT_NE(lhs, rhs);
}
TEST(uri_comparison_test, inequality_test) {
network::uri lhs("http://www.example.com/");
network::uri rhs("http://www.example.com/");
ASSERT_FALSE(lhs != rhs);
}
TEST(uri_comparison_test, less_than_test) {
// lhs is lexicographically less than rhs
network::uri lhs("http://www.example.com/");
network::uri rhs("http://www.example.org/");
ASSERT_LT(lhs, rhs);
}
|
b750d5347867a17ecdc62c610c925f55fb453d63 | 3074d1f7e94214ca397b7f39ade0ec501d5ccd9e | /Programming Fundamentals 2/lab 6 assignments/8.15 guessCapitals.cpp | 0336d89d29c3c657ff509ef67b27313deb625822 | [] | no_license | Escoozme/cpp-fundamentals-2 | 58f9fe4c93fe184d5db0653d4618a8046c7a6c9b | bdd2827c03c2f897b350ba1b9125e348a60a3d7b | refs/heads/master | 2022-12-13T13:08:52.818767 | 2020-09-14T21:28:32 | 2020-09-14T21:28:32 | 295,542,832 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,563 | cpp | 8.15 guessCapitals.cpp | #include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
ifstream fin;
string statesCapitals[50][2];
string answer;
int correctCount = 0;
bool nextUpper = false;
fin.open("States_and_Capitals.dat");
for(int r = 0; r < 50; ++r) {
for(int c = 0; c < 2; ++c) {
getline(fin, statesCapitals[r][c]);
}
}
fin.close();
cout << "Enter 0 to end." << endl << endl;
for(int r = 0; r < 50; ++r) {
cout << "What is the capital of " << statesCapitals[r][0] << "? ";
getline(cin, answer);
if(answer == "0") {
break;
}
for(int counter = 0; counter < answer.length(); ++counter) {
if(counter == 0) {
answer[counter] = toupper(answer[counter]);
}
else if(answer[counter] == ' ') {
nextUpper = true;
}
else if(nextUpper) {
answer[counter] = toupper(answer[counter]);
nextUpper = false;
}
else {
answer[counter] = tolower(answer[counter]);
}
}
if(answer == statesCapitals[r][1]) {
++correctCount;
}
else {
cout << "The correct answer is " << statesCapitals[r][1] << endl;
}
}
cout << "Correct answers: " << correctCount << endl << endl << endl;
cout << "Code by Jacob Smetana" << endl;
return 0;
}
|
3ed20d8e14d6f9e84f3365440b474f305387e610 | a4581562f891c53fb9a93b17e3ca6fd1091d5763 | /src/chainparams.cpp | 0c7e91e1b768d3e9b8528f7dd0f761ab10cb0bc1 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | tjade273/zcash | 0a26926601d5d609dafb705a5f4933cadb20a775 | efe18f2e9bc90c18f20abc24b60a28874ff865f2 | refs/heads/master | 2021-01-11T07:17:06.144424 | 2016-10-03T21:36:59 | 2016-10-03T21:36:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,033 | cpp | chainparams.cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "main.h"
#include "crypto/equihash.h"
#include "util.h"
#include "utilstrencodings.h"
#include <assert.h>
#include <boost/assign/list_of.hpp>
#include "base58.h"
using namespace std;
#include "chainparamsseeds.h"
/**
* Main network
*/
/**
* What makes a good checkpoint block?
* + Is surrounded by blocks with reasonable timestamps
* (no blocks before with a timestamp after, none after with
* timestamp before)
* + Contains no strange transactions
*/
const arith_uint256 maxUint = UintToArith256(uint256S("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"));
class CMainParams : public CChainParams {
public:
CMainParams() {
strNetworkID = "main";
consensus.fCoinbaseMustBeProtected = true;
consensus.nSubsidySlowStartInterval = 20000;
consensus.nSubsidyHalvingInterval = 840000;
consensus.nMajorityEnforceBlockUpgrade = 750;
consensus.nMajorityRejectBlockOutdated = 950;
consensus.nMajorityWindow = 4000;
// TODO generate harder genesis block
//consensus.powLimit = uint256S("00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
consensus.powLimit = uint256S("0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f");
consensus.nPowAveragingWindow = 17;
assert(maxUint/UintToArith256(consensus.powLimit) >= consensus.nPowAveragingWindow);
consensus.nPowMaxAdjustDown = 32; // 32% adjustment down
consensus.nPowMaxAdjustUp = 16; // 16% adjustment up
consensus.nPowTargetSpacing = 2.5 * 60;
consensus.fPowAllowMinDifficultyBlocks = false;
/**
* The message start string is designed to be unlikely to occur in normal data.
* The characters are rarely used upper ASCII, not valid as UTF-8, and produce
* a large 32-bit integer with any alignment.
*/
pchMessageStart[0] = 0x9f;
pchMessageStart[1] = 0xee;
pchMessageStart[2] = 0x4e;
pchMessageStart[3] = 0xd8;
vAlertPubKey = ParseHex("04b7ecf0baa90495ceb4e4090f6b2fd37eec1e9c85fac68a487f3ce11589692e4a317479316ee814e066638e1db54e37a10689b70286e6315b1087b6615d179264");
nDefaultPort = 8233;
nMinerThreads = 0;
nMaxTipAge = 24 * 60 * 60;
nPruneAfterHeight = 100000;
const size_t N = 200, K = 9;
BOOST_STATIC_ASSERT(equihash_parameters_acceptable(N, K));
nEquihashN = N;
nEquihashK = K;
/**
* Build the genesis block. Note that the output of its generation
* transaction cannot be spent since it did not originally exist in the
* database.
*
* CBlock(hash=000000000019d6, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=4a5e1e, nTime=1231006505, nBits=1d00ffff, nNonce=2083236893, vtx=1)
* CTransaction(hash=4a5e1e, ver=1, vin.size=1, vout.size=1, nLockTime=0)
* CTxIn(COutPoint(000000, -1), coinbase 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73)
* CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B)
* vMerkleTree: 4a5e1e
*/
const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks";
CMutableTransaction txNew;
txNew.vin.resize(1);
txNew.vout.resize(1);
txNew.vin[0].scriptSig = CScript() << 486604799 << CScriptNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
txNew.vout[0].nValue = 50 * COIN;
txNew.vout[0].scriptPubKey = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG;
genesis.vtx.push_back(txNew);
genesis.hashPrevBlock.SetNull();
genesis.hashMerkleRoot = genesis.BuildMerkleTree();
genesis.nVersion = 1;
genesis.nTime = 1231006505;
// TODO generate harder genesis block
//genesis.nBits = 0x1d00ffff;
genesis.nBits = 0x200f0f0f;
genesis.nNonce = uint256S("0x000000000000000000000000000000000000000000000000000000000000000b");
genesis.nSolution = ParseHex("000d5ba7cda5d473947263bf194285317179d2b0d307119c2e7cc4bd8ac456f0774bd52b0cd9249be9d40718b6397a4c7bbd8f2b3272fed2823cd2af4bd1632200ba4bf796727d6347b225f670f292343274cc35099466f5fb5f0cd1c105121b28213d15db2ed7bdba490b4cedc69742a57b7c25af24485e523aadbb77a0144fc76f79ef73bd8530d42b9f3b9bed1c135ad1fe152923fafe98f95f76f1615e64c4abb1137f4c31b218ba2782bc15534788dda2cc08a0ee2987c8b27ff41bd4e31cd5fb5643dfe862c9a02ca9f90c8c51a6671d681d04ad47e4b53b1518d4befafefe8cadfb912f3d03051b1efbf1dfe37b56e93a741d8dfd80d576ca250bee55fab1311fc7b3255977558cdda6f7d6f875306e43a14413facdaed2f46093e0ef1e8f8a963e1632dcbeebd8e49fd16b57d49b08f9762de89157c65233f60c8e38a1f503a48c555f8ec45dedecd574a37601323c27be597b956343107f8bd80f3a925afaf30811df83c402116bb9c1e5231c70fff899a7c82f73c902ba54da53cc459b7bf1113db65cc8f6914d3618560ea69abd13658fa7b6af92d374d6eca9529f8bd565166e4fcbf2a8dfb3c9b69539d4d2ee2e9321b85b331925df195915f2757637c2805e1d4131e1ad9ef9bc1bb1c732d8dba4738716d351ab30c996c8657bab39567ee3b29c6d054b711495c0d52e1cd5d8e55b4f0f0325b97369280755b46a02afd54be4ddd9f77c22272b8bbb17ff5118fedbae2564524e797bd28b5f74f7079d532ccc059807989f94d267f47e724b3f1ecfe00ec9e6541c961080d8891251b84b4480bc292f6a180bea089fef5bbda56e1e41390d7c0e85ba0ef530f7177413481a226465a36ef6afe1e2bca69d2078712b3912bba1a99b1fbff0d355d6ffe726d2bb6fbc103c4ac5756e5bee6e47e17424ebcbf1b63d8cb90ce2e40198b4f4198689daea254307e52a25562f4c1455340f0ffeb10f9d8e914775e37d0edca019fb1b9c6ef81255ed86bc51c5391e0591480f66e2d88c5f4fd7277697968656a9b113ab97f874fdd5f2465e5559533e01ba13ef4a8f7a21d02c30c8ded68e8c54603ab9c8084ef6d9eb4e92c75b078539e2ae786ebab6dab73a09e0aa9ac575bcefb29e930ae656e58bcb513f7e3c17e079dce4f05b5dbc18c2a872b22509740ebe6a3903e00ad1abc55076441862643f93606e3dc35e8d9f2caef3ee6be14d513b2e062b21d0061de3bd56881713a1a5c17f5ace05e1ec09da53f99442df175a49bd154aa96e4949decd52fed79ccf7ccbce32941419c314e374e4a396ac553e17b5340336a1a25c22f9e42a243ba5404450b650acfc826a6e432971ace776e15719515e1634ceb9a4a35061b668c74998d3dfb5827f6238ec015377e6f9c94f38108768cf6e5c8b132e0303fb5a200368f845ad9d46343035a6ff94031df8d8309415bb3f6cd5ede9c135fdabcc030599858d803c0f85be7661c88984d88faa3d26fb0e9aac0056a53f1b5d0baed713c853c4a2726869a0a124a8a5bbc0fc0ef80c8ae4cb53636aa02503b86a1eb9836fcc259823e2692d921d88e1ffc1e6cb2bde43939ceb3f32a611686f539f8f7c9f0bf00381f743607d40960f06d347d1cd8ac8a51969c25e37150efdf7aa4c2037a2fd0516fb444525ab157a0ed0a7412b2fa69b217fe397263153782c0f64351fbdf2678fa0dc8569912dcd8e3ccad38f34f23bbbce14c6a26ac24911b308b82c7e43062d180baeac4ba7153858365c72c63dcf5f6a5b08070b730adb017aeae925b7d0439979e2679f45ed2f25a7edcfd2fb77a8794630285ccb0a071f5cce410b46dbf9750b0354aae8b65574501cc69efb5b6a43444074fee116641bb29da56c2b4a7f456991fc92b2");
consensus.hashGenesisBlock = genesis.GetHash();
assert(consensus.hashGenesisBlock == uint256S("0x027e3758c3a65b12aa1046462b486d0a63bfa1beae327897f56c5cfb7daaae71"));
assert(genesis.hashMerkleRoot == uint256S("0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"));
vFixedSeeds.clear();
vSeeds.clear();
// TODO: set up bootstrapping for mainnet
//vSeeds.push_back(CDNSSeedData("bitcoin.sipa.be", "seed.bitcoin.sipa.be")); // Pieter Wuille
//vSeeds.push_back(CDNSSeedData("bluematt.me", "dnsseed.bluematt.me")); // Matt Corallo
//vSeeds.push_back(CDNSSeedData("dashjr.org", "dnsseed.bitcoin.dashjr.org")); // Luke Dashjr
//vSeeds.push_back(CDNSSeedData("bitcoinstats.com", "seed.bitcoinstats.com")); // Christian Decker
//vSeeds.push_back(CDNSSeedData("xf2.org", "bitseed.xf2.org")); // Jeff Garzik
//vSeeds.push_back(CDNSSeedData("bitcoin.jonasschnelli.ch", "seed.bitcoin.jonasschnelli.ch")); // Jonas Schnelli
base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,0);
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,5);
base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1,128);
base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x04)(0x88)(0xB2)(0x1E).convert_to_container<std::vector<unsigned char> >();
base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x04)(0x88)(0xAD)(0xE4).convert_to_container<std::vector<unsigned char> >();
// guarantees the first two characters, when base58 encoded, are "zc"
base58Prefixes[ZCPAYMENT_ADDRRESS] = {22,154};
// guarantees the first two characters, when base58 encoded, are "SK"
base58Prefixes[ZCSPENDING_KEY] = {171,54};
vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_main, pnSeed6_main + ARRAYLEN(pnSeed6_main));
fRequireRPCPassword = true;
fMiningRequiresPeers = true;
fDefaultConsistencyChecks = false;
fRequireStandard = true;
fMineBlocksOnDemand = false;
fTestnetToBeDeprecatedFieldRPC = false;
checkpointData = (Checkpoints::CCheckpointData) {
boost::assign::map_list_of
( 0, consensus.hashGenesisBlock),
genesis.nTime, // * UNIX timestamp of last checkpoint block
0, // * total number of transactions between genesis and last checkpoint
// (the tx=... number in the SetBestChain debug.log lines)
0 // * estimated number of transactions per day after checkpoint
};
// Founders reward script expects a vector of 2-of-3 multisig addresses
vFoundersRewardAddress = {
"37dSC2gL2SftgVJBHemBfWtSsNwuNfeTkz", "3KENXyYPCx4SZPGqE2Qp64Vrt49JNxvCbH", "3B2t3k6oQBACSmZArbYiseYsbsxBFFsHXG", "3QuE4MQXQwuzynXJwLPuWaciKjmRqkj9Yg",
"3FGDxAMPbjgq2ZTSFdoeWTHUu8i3nZcENb", "3HMUFCvai1KtyJ3woLXyY5dGTWjBwmD3M2", "3Mqskxz8RexngVRBkZnGVCLp1Z7wyqFjVE", "359NbXKBNezXEUqvU1cqJkfdZTHbzfsQfV",
"3KGJQmUe7zjMFkTGskiBH6JBNuymJRzU3a", "36PjhjMcMkU9kjgvCocAke5VSF6JzKXuqZ", "35fucu9Bh1AKad9zMvDgDhc3kmoj6ZcFNV", "35EnKe4u16128G6j1efUT27Vwqha6MgWDH",
"3FWa1GEjWWY3eFuFK8ht2HBhH8ZT1zXJcR", "3ByiCPMp3vNYjq1fQrQx2LXbMJ3uyiUfH6", "3DNWVawdGNJJ3sp9aMgyjtFv74rPivPUcM", "3HKAkRbUbUTV2vs1qSoEbhpoUAjNAmGxrm",
"3CV41uQT2B6FU8H57rAh22d4wyDG8FrK37", "361jTn1yhDRHji9qMrwq8p2qbSxrEfcf58", "3A4hTEi36fQdvTczkiNESqdtoADRFEUGdr", "36LBGQ4CNWRtEVxdRk8Lym52rFqRx5aAy9",
"34Hvy7rqUToVzQKu6v6gN69Qo1M37ktKpZ", "3Qii1z7vD5EFpGx3yFAqDBLQ9kCdfpxwpC", "3HNSu7ibS7yu4FW3Sf2D36Ms8BKDhBTPQo", "36djsWiivpZwPC4eZqMAFoS87VgxkjDHen",
"3E7dsoe6eJavv6HEwADC7eV2JjHXZE8wx4", "3Ks5EBz94K2TgAx19vxvwX6A2cUf1AWNfJ", "3GuGkVkqD1k9wYJNikNhMxK8ci8HGnJ3HN", "3QPjeeX5FFwEbDk8RHDXCPunsgHp9YLXsV",
"3MY2DeyRPJaUKZwpKTGsT31vZMLtVk66FP", "36f92vZ3jo3TYBXVGv55BptKmL2MDL47ZF", "3DDUDXN3aSgXckFnTdFTV1t8HjkifNKbJM", "3ArUZmHERS6CDyNYb1DhnCZ7XCCoWEURAb",
"3QnJ98YuZcVZhxs49kwwDmf5BUYPbjvKRQ", "3DNdji6oCCTVbLF4iuzamAv73MGQ9LsKNb", "3Q5cGqEzkBLMac8DNSdVesZPUcucFP3jqU", "3JuQnoHp6Qm9N39ETD4yRHhj1CCKXo3deG",
"3EQftBB2MsZ4wNgGxKfhMREU3hNk29VZeW", "38baEewZky2kRaMSvjxh2x3eDdHt1ovVnu", "32kq15rjjtjaj1Z5dW8N6DikKxBeEbCZ5B", "34tta8VkpCZFNZyM9oWf656QcNwDB2qoRV",
"33nGWUV4nKjAM7XWYNTf5Fe6aBahCe22RN", "36tt5b1MDeYks6N7Zhk5gDs3sNZjkh4mG7", "32eS4cHrpJv7MkGQzkA7KwYZuNCvbpCzm4", "39Wqmd6f23mFWsMurx9d9YbaHxyEmXpw4G",
"32x1txo29hfy6fm5kMryX2175qz7ocU8iz", "3KR3wPnecQgpndUGAdwWCfehbEES4DES3C", "3HBPRij6s8Thv2AnRytLEZ9pW6Wqoztcr6", "3N3BPLx8rHfEdqPnEWuguYfAXtDXc8sK53",
};
assert(vFoundersRewardAddress.size() <= consensus.GetLastFoundersRewardBlockHeight());
}
};
static CMainParams mainParams;
/**
* Testnet (v3)
*/
class CTestNetParams : public CMainParams {
public:
CTestNetParams() {
strNetworkID = "test";
consensus.nMajorityEnforceBlockUpgrade = 51;
consensus.nMajorityRejectBlockOutdated = 75;
consensus.nMajorityWindow = 400;
consensus.powLimit = uint256S("0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f");
assert(maxUint/UintToArith256(consensus.powLimit) >= consensus.nPowAveragingWindow);
consensus.fPowAllowMinDifficultyBlocks = true;
pchMessageStart[0] = 0xA5;
pchMessageStart[1] = 0xF1;
pchMessageStart[2] = 0xE7;
pchMessageStart[3] = 0x26;
vAlertPubKey = ParseHex("044e7a1553392325c871c5ace5d6ad73501c66f4c185d6b0453cf45dec5a1322e705c672ac1a27ef7cdaf588c10effdf50ed5f95f85f2f54a5f6159fca394ed0c6");
nDefaultPort = 18233;
nMinerThreads = 0;
nMaxTipAge = 0x7fffffff;
nPruneAfterHeight = 1000;
//! Modify the testnet genesis block so the timestamp is valid for a later start.
genesis.nTime = 1296688602;
genesis.nBits = 0x200f0f0f;
genesis.nNonce = uint256S("0x0000000000000000000000000000000000000000000000000000000000000009");
genesis.nSolution = ParseHex("003423da3e41f916bf3ff0ee770eb844a240361abe08a8c9d46bd30226e2ad411a4047b6ddc230d173c60537e470e24f764120f5a2778b2a1285b0727bf79a0b085ad67e6266fb38fd72ef17f827315c42f921720248c983d4100e6ebd1c4b5e8762a973bac3bec7f7153b93752ebbb465f0fc9520bcfc30f9abfe303627338fed6ede9cf1b9173a736cf270cf4d9c6999ff4c3a301a78fd50dab6ccca67a0c5c2e41f216a1f3efd049a74bbe6252f9773bc309d3f9e554d996913ce8e1cec672a1fa4ea59726b61ea9e75d5ce9aa5dbfa96179a293810e02787f26de324fe7c88376ff57e29574a55faff7c2946f3e40e451861c32bf67da7377de3136858a18f34fab1bc8da37726ca2c25fc7b312a5427554ec944da81c7e27255d6c94ade9987ff7daedc2d1cc63d7d4cf93e691d13326fb1c7ee72ccdc0b134eb665fc6a9821e6fef6a6d45e4aac6dca6b505a0100ad56ea4f6fa4cdc2f0d1b65f730104a515172e34163bdb422f99d083e6eb860cf6b3f66642c4dbaf0d0fa1dca1b6166f1d1ffaa55a9d6d6df628afbdd14f1622c1c8303259299521a253bc28fcc93676723158067270fc710a09155a1e50c533e9b79ed5edba4ab70a08a9a2fc0eef0ddae050d75776a9804f8d6ad7e30ccb66c6a98d86710ca7a4dfb4feb159484796b9a015c5764aa3509051c87f729b9877ea41f8b470898c01388ed9098b1e006d3c30fc6e7c781072fa3f75d918505ee8ca75840fc62f67c57060666aa42578a2dd022eda62e3f1e447d7364074d34fd60ad9b138f60422afa6cfcb913fd6c213b496144dbfda7bfc7c24540cfe40ad0c0fd5a8c0902127f53d3178ba1b2a87bf1224d53d3a15e49ccdf121ae872a011c996d1b9793153cdcd4c0a7e99f8a35669788551cca2b62769eda24b6b55e2f4e0ac0d30aa50ecf33c6cdb24adfc922006a7bf434ced800fefe814c94c6fc8caa37b372d5088bb31d2f6b11a7a67ad3f70abbac0d5c256b637828de6cc525978cf151a2e50798e0c591787639a030291272c9ced3ab7d682e03f8c7db51f60163baa85315789666ea8c5cd6f789a7f4a5de4f8a9dfefce20f353cec606492fde8eab3e3b487b3a3a57434f8cf252a4b643fc125c8a5948b06744f5dc306aa587bdc85364c7488235c6edddd78763675e50a9637181519be06dd30c4ba0d845f9ba320d01706fd6dd64d1aa3cd4211a4a7d1d3f2c1ef2766d27d5d2cdf8e7f5e3ea309d4f149bb737305df1373a7f5313abe5986f4aa620bec4b0065d48aafac3631de3771f5c4d2f6eec67b09d9c70a3c1969fecdb014cb3c69832b63cc9d6efa378bff0ef95ffacdeb1675bb326e698f022c1a3a2e1c2b0f05e1492a6d2b7552388eca7ee8a2467ef5d4207f65d4e2ae7e33f13eb473954f249d7c20158ae703e1accddd4ea899f026618695ed2949715678a32a153df32c08922fafad68b1895e3b10e143e712940104b3b352369f4fe79bd1f1dbe03ea9909dbcf5862d1f15b3d1557a6191f54c891513cdb3c729bb9ab08c0d4c35a3ed67d517ffe1e2b7a798521aed15ff9822169c0ec860d7b897340bc2ef4c37f7eb73bd7dafef12c4fd4e6f5dd3690305257ae14ed03df5e3327b68467775a90993e613173fa6650ffa2a26e84b3ce79606bf234eda9f4053307f344099e3b10308d3785b8726fd02d8e94c2759bebd05748c3fe7d5fe087dc63608fb77f29708ab167a13f32da251e249a544124ed50c270cfc6986d9d1814273d2f0510d0d2ea335817207db6a4a23ae9b079967b63b25cb3ceea7001b65b879263f5009ac84ab89738a5b8b71fd032beb9f297326f1f5afa630a5198d684514e242f315a4d95fa6802e82799a525bb653b80b4518ec610a5996403b1391");
consensus.hashGenesisBlock = genesis.GetHash();
assert(consensus.hashGenesisBlock == uint256S("0x0cdf00b25a93ded11d73ebe1728cf7867f18e1f62aca9554b95e0f3026174e33"));
vFixedSeeds.clear();
vSeeds.clear();
vSeeds.push_back(CDNSSeedData("z.cash", "dnsseed.testnet.z.cash")); // Zcash
base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,111);
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,196);
base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1,239);
base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x04)(0x35)(0x87)(0xCF).convert_to_container<std::vector<unsigned char> >();
base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x04)(0x35)(0x83)(0x94).convert_to_container<std::vector<unsigned char> >();
base58Prefixes[ZCPAYMENT_ADDRRESS] = {20,81};
base58Prefixes[ZCSPENDING_KEY] = {177,235};
vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_test, pnSeed6_test + ARRAYLEN(pnSeed6_test));
fRequireRPCPassword = true;
fMiningRequiresPeers = true;
fDefaultConsistencyChecks = false;
fRequireStandard = false;
fMineBlocksOnDemand = false;
fTestnetToBeDeprecatedFieldRPC = true;
checkpointData = (Checkpoints::CCheckpointData) {
boost::assign::map_list_of
( 0, consensus.hashGenesisBlock),
genesis.nTime,
0,
0
};
// Founders reward script expects a vector of 2-of-3 multisig addresses
vFoundersRewardAddress = {
"2NF5QVDMtYBHaUzPLTxirybjwPjm9wVwacv", "2N8qoHsvVvdrDc89dXjpBWZHMbWdaHVc3rg", "2N8xpkGmATvu1GjgpjSjmt5L5V5fnEhW89v", "2MtTJnZRWNKJtmr5NN5jnjL9hTqP6tFBuLE",
"2N3Jbuca4yhcqMCa36w5Jy9NdLf7Te2BBZr", "2NAkLyEyxv1y1tvE3LawvaFXZ12GKDyXc9K", "2NEA5WxHJfpFWijWuJLwyjNmNYAKSdBFrFt", "2N68WRnm7HJYZRBL7XtqRJVQD7dCJtQx4Vg",
"2NAieMb6ZfC2RJ6c19Ch4JER6yqgRAd1CeG", "2Mvw6JtXth8cYPHxD2DGwF2fzL6C5g66w6w", "2N3treWEan8WhpKurCNTdsgh6JtTD8hLMEY", "2N46cPyaEBFb1MxHJWdtXKhfRjKWhoAF2VY",
"2N2hFwZYHvKCjqVJHCYwpy6FaBycyjcKaHB", "2N3wQ8GyAbtb4FXgymzK99ZUDdrdDVQBGNx", "2N2tq2AcVroDciF5H3WpkHraUiK6eZZgJqR", "2N6g8Q9Z6mZwQzTw1s5KoSaVTKYxBVDMeqc",
"2NFfPnK3jj85sn9mWe5EivUdnUPykMRXGp6", "2MwC4NhXRQSZzN9cfeg88Cdsp6DiXn2Axt9", "2MsTXMg8TBfKQvj7UJfMXKp3naKYv9ty3jv", "2MzPMV6sPt45J2qU1Uvft2U1ES1q9Cnw74J",
"2NEo5vX2Gvg83FbSUTfndQqkZbFHd1zJnZz", "2Mtkiihqt6wTV5uwvdmf9nTZKgEzZx6BMXB", "2MvM6urpNbfS2QFPFeUEoM14VKgBKoV8Qws", "2Mv3FDtDtyiHQA6u6kDWoiBKDkL5JFuA4Se",
"2MtyHB5chweTMBXXVPqSLAWHF6fgajGisi6", "2N3BU59PLVRWmPvffumGNWJdorY8ex5NKHq", "2NEiq16k9nQzYxWL1mvJVN32ticcL3b65vW", "2NB1groo8MTEAvPDbgcmzHsr56rSpbmXj48",
"2MwMr9dW3hrkgsmpWivobrwScfXC8hFsg4N", "2My9qRCuUBJ9aZohh8f4VQoXvBgmP9pBE11", "2MyHm9yFdm3aou91PLWzEVDeWrcrC5re4GS", "2N73XvH7vdzKr7UGHFkAeAUJFz4o8zTFeZY",
"2MwPLTmV6469VBcDxcsnotq4Qbf8CRX7DWz", "2MtmeB8wEGepSRodY7sq7myZVmFsBWAXYpW", "2N1WmRvcqMomQGePwvkd5QrKXQuYePDZh9Z", "2MwuBXGGBAPK2TupdoQK2Fw63vitJb7RUJZ",
"2Mz4XXqLy2TC5bmBczjakVeqajFo5D3jma2", "2NB19923xi5D9MPqZZvkvH5VbQ2MNRfW9e2", "2NBKhC9RJPPxA8B8bdPvvYvGGjkSoTfdrKh", "2Mzn2q4ZmReBsSQFHRscXav4Xt44wXWeo9a",
"2N1BqHdQV1r6NBeF3bbj3rE1by3MPrwgbbb", "2N6VpEUSwCvh1FCuVKb9eZCxcFnZuzcxB6f", "2N2Uq4i7DYaq2ngJZi4eXf9DAXuDYCDKMzc", "2MwsKBtaZeVKzD51otkAyBDoeuaDDK8wgqe",
"2NCajs4c2PeW8pWZxyMUiV3rDkEYyYnRAhQ", "2MuGtcBJQLfJD6GFbXy7iTtG8QasgZ8qd3Y", "2NFZ3yjeBSS3FKMy1N1zTeSEyqiRgnH35v4", "2Mvv8o9U4dbJjgWPvLDy3L6Sh74Wmynf36q",
};
assert(vFoundersRewardAddress.size() <= consensus.GetLastFoundersRewardBlockHeight());
}
};
static CTestNetParams testNetParams;
/**
* Regression test
*/
class CRegTestParams : public CTestNetParams {
public:
CRegTestParams() {
strNetworkID = "regtest";
consensus.fCoinbaseMustBeProtected = false;
consensus.nSubsidySlowStartInterval = 0;
consensus.nSubsidyHalvingInterval = 150;
consensus.nMajorityEnforceBlockUpgrade = 750;
consensus.nMajorityRejectBlockOutdated = 950;
consensus.nMajorityWindow = 1000;
consensus.powLimit = uint256S("0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f");
assert(maxUint/UintToArith256(consensus.powLimit) >= consensus.nPowAveragingWindow);
consensus.nPowMaxAdjustDown = 0; // Turn off adjustment down
consensus.nPowMaxAdjustUp = 0; // Turn off adjustment up
pchMessageStart[0] = 0xaa;
pchMessageStart[1] = 0xe8;
pchMessageStart[2] = 0x3f;
pchMessageStart[3] = 0x5f;
nMinerThreads = 1;
nMaxTipAge = 24 * 60 * 60;
const size_t N = 48, K = 5;
BOOST_STATIC_ASSERT(equihash_parameters_acceptable(N, K));
nEquihashN = N;
nEquihashK = K;
genesis.nTime = 1296688602;
genesis.nBits = 0x200f0f0f;
genesis.nNonce = uint256S("0x0000000000000000000000000000000000000000000000000000000000000021");
genesis.nSolution = ParseHex("0f2a976db4c4263da10fd5d38eb1790469cf19bdb4bf93450e09a72fdff17a3454326399");
consensus.hashGenesisBlock = genesis.GetHash();
nDefaultPort = 18444;
assert(consensus.hashGenesisBlock == uint256S("0x00a215b4fe36f5d2f829d43e587bf10e89e64f9f48a5b6ce18559089e8fd643d"));
nPruneAfterHeight = 1000;
vFixedSeeds.clear(); //! Regtest mode doesn't have any fixed seeds.
vSeeds.clear(); //! Regtest mode doesn't have any DNS seeds.
fRequireRPCPassword = false;
fMiningRequiresPeers = false;
fDefaultConsistencyChecks = true;
fRequireStandard = false;
fMineBlocksOnDemand = true;
fTestnetToBeDeprecatedFieldRPC = false;
checkpointData = (Checkpoints::CCheckpointData){
boost::assign::map_list_of
( 0, uint256S("0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206")),
0,
0,
0
};
// Founders reward script expects a vector of 2-of-3 multisig addresses
vFoundersRewardAddress = { "2N2e2FRfP9D1dRN1oRWkH7pbFM69eGNAuQ4" };
assert(vFoundersRewardAddress.size() <= consensus.GetLastFoundersRewardBlockHeight());
}
};
static CRegTestParams regTestParams;
static CChainParams *pCurrentParams = 0;
const CChainParams &Params() {
assert(pCurrentParams);
return *pCurrentParams;
}
CChainParams &Params(CBaseChainParams::Network network) {
switch (network) {
case CBaseChainParams::MAIN:
return mainParams;
case CBaseChainParams::TESTNET:
return testNetParams;
case CBaseChainParams::REGTEST:
return regTestParams;
default:
assert(false && "Unimplemented network");
return mainParams;
}
}
void SelectParams(CBaseChainParams::Network network) {
SelectBaseParams(network);
pCurrentParams = &Params(network);
}
bool SelectParamsFromCommandLine()
{
CBaseChainParams::Network network = NetworkIdFromCommandLine();
if (network == CBaseChainParams::MAX_NETWORK_TYPES)
return false;
SelectParams(network);
return true;
}
// Block height must be >0 and <=last founders reward block height
// Index variable i ranges from 0 - (vFoundersRewardAddress.size()-1)
std::string CChainParams::GetFoundersRewardAddressAtHeight(int nHeight) const {
int maxHeight = consensus.GetLastFoundersRewardBlockHeight();
assert(nHeight > 0 && nHeight <= maxHeight);
size_t addressChangeInterval = (maxHeight + vFoundersRewardAddress.size()) / vFoundersRewardAddress.size();
size_t i = nHeight / addressChangeInterval;
return vFoundersRewardAddress[i];
}
// Block height must be >0 and <=last founders reward block height
// The founders reward address is expected to be a multisig (P2SH) address
CScript CChainParams::GetFoundersRewardScriptAtHeight(int nHeight) const {
assert(nHeight > 0 && nHeight <= consensus.GetLastFoundersRewardBlockHeight());
// #1398 START
// We can remove this code when miner_tests no longer expect this script
if (fMinerTestModeForFoundersRewardScript) {
auto rewardScript = ParseHex("a9146708e6670db0b950dac68031025cc5b63213a49187");
return CScript(rewardScript.begin(), rewardScript.end());
}
// #1398 END
CBitcoinAddress address(GetFoundersRewardAddressAtHeight(nHeight).c_str());
assert(address.IsValid());
assert(address.IsScript());
CScriptID scriptID = get<CScriptID>(address.Get()); // Get() returns a boost variant
CScript script = CScript() << OP_HASH160 << ToByteVector(scriptID) << OP_EQUAL;
return script;
}
std::string CChainParams::GetFoundersRewardAddressAtIndex(int i) const {
assert(i >= 0 && i < vFoundersRewardAddress.size());
return vFoundersRewardAddress[i];
}
|
5f2934977605712ff7177c7a72141596545fb072 | c2c32371df6d746cb98981a4b4a9e529b893c066 | /Codeforces/Contest/div3.cpp | d4a6e2ec49ad9f9e1d70af4f510693a497704edd | [] | no_license | shubh8617/Coding_problems | 0b1f3d9d542831d4b8d53775f877df6accfea7d0 | 847f02caf4c3225054f03f7f6bcf2330adacedc6 | refs/heads/main | 2023-04-09T02:27:27.259338 | 2021-04-22T14:53:54 | 2021-04-22T14:53:54 | 319,109,019 | 1 | 2 | null | 2020-12-07T08:19:30 | 2020-12-06T19:02:15 | C++ | UTF-8 | C++ | false | false | 285 | cpp | div3.cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
long long t;
cin>>t;
while(t--)
{
long long n,m,x;
cin>>n>>m>>x;
x=x-1;
if(x==0)
{
cout<<1<<"\n";
}
else
{
long long r= x%n,col=x/n;
cout<<(r*m)+col+1<<"\n";
}
}
}
|
eca5adae92ecc3227eace194f65051047ba95275 | 84fe9e4712444868428cb13de2c01bd13a1e390c | /srm_152_div1_250.cpp | 38d2159e97d229aeb69837c58581f5af28282147 | [] | no_license | kiwiwin/topcoder | 522e6a98ac1825558d017b29d35775be875e8e45 | 7f18d8035b5f96ce5baacf368ea7a4568c66afd3 | refs/heads/master | 2021-01-15T18:14:10.968602 | 2013-07-07T10:04:56 | 2013-07-07T10:04:56 | 4,166,126 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 805 | cpp | srm_152_div1_250.cpp | #include <vector>
#include <algorithm>
using namespace std;
class LeaguePicks {
public:
int friends, picks;
vector <int> halfPicks(int position) {
vector<int> res;
while(position <= picks) {
res.push_back(position); position += friends * 2;
}
return res;
}
vector <int> merge(vector<int> lhs, vector<int> rhs) {
vector <int> res(lhs.size() + rhs.size(), 0);
for (int i = 0; i < lhs.size(); i++) res[i] = lhs[i];
for (int i = 0; i < rhs.size(); i++) res[i+lhs.size()] = rhs[i];
sort(res.begin(), res.end());
return res;
}
vector <int> returnPicks(int position, int friends_, int picks_) {
friends = friends_; picks = picks_;
int oddRoundPos = position, evenRoundPos = 2*friends - oddRoundPos + 1;
return merge(halfPicks(oddRoundPos), halfPicks(evenRoundPos));
}
};
|
498e3ee1f9fb9bb77c0eb344762d630e62a0e11d | 32a8a24599ad96b5594b8cd50a2f751dea1c4bf5 | /libraries/chain/include/graphene/chain/config.hpp | ef9a0c80e80d606ec65ddbfc94c3ca2f3def3215 | [
"MIT"
] | permissive | peerplays-network/peerplays | 06b0396acec5ccfad4de387630beb7687b886907 | 058937a3ee97cb0035cd91d317eb4592576c17e8 | refs/heads/master | 2023-08-16T07:45:48.378998 | 2022-11-04T11:38:30 | 2022-11-04T11:38:30 | 158,921,093 | 46 | 29 | MIT | 2023-06-16T09:52:23 | 2018-11-24T09:27:23 | C++ | UTF-8 | C++ | false | false | 15,577 | hpp | config.hpp | /*
* Copyright (c) 2015 Cryptonomex, Inc., and contributors.
*
* The MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#pragma once
#ifdef BUILD_PEERPLAYS_TESTNET
#define GRAPHENE_SYMBOL "TEST"
#define GRAPHENE_ADDRESS_PREFIX "TEST"
#else
#define GRAPHENE_SYMBOL "PPY"
#define GRAPHENE_ADDRESS_PREFIX "PPY"
#endif
#define GRAPHENE_MIN_ACCOUNT_NAME_LENGTH 1
#define GRAPHENE_MAX_ACCOUNT_NAME_LENGTH 63
#define GRAPHENE_MIN_ASSET_SYMBOL_LENGTH 3
#define GRAPHENE_MAX_ASSET_SYMBOL_LENGTH 16
#define GRAPHENE_MAX_SHARE_SUPPLY int64_t(1000000000000000ll)
#define GRAPHENE_MAX_PAY_RATE 10000 /* 100% */
#define GRAPHENE_MAX_SIG_CHECK_DEPTH 2
/**
* Don't allow the committee_members to publish a limit that would
* make the network unable to operate.
*/
#define GRAPHENE_MIN_TRANSACTION_SIZE_LIMIT 1024
#define GRAPHENE_MIN_BLOCK_INTERVAL 1 /* seconds */
#define GRAPHENE_MAX_BLOCK_INTERVAL 30 /* seconds */
#define GRAPHENE_DEFAULT_BLOCK_INTERVAL 3 /* seconds */
#define GRAPHENE_DEFAULT_MAX_TRANSACTION_SIZE 2048
#define GRAPHENE_DEFAULT_MAX_BLOCK_SIZE (GRAPHENE_DEFAULT_MAX_TRANSACTION_SIZE*GRAPHENE_DEFAULT_BLOCK_INTERVAL*200000)
#define GRAPHENE_DEFAULT_MAX_TIME_UNTIL_EXPIRATION (60*60*24) // seconds, aka: 1 day
#define GRAPHENE_DEFAULT_MAINTENANCE_INTERVAL (60*60*24) // seconds, aka: 1 day
#define GRAPHENE_DEFAULT_MAINTENANCE_SKIP_SLOTS 3 // number of slots to skip for maintenance interval
#define GRAPHENE_MIN_UNDO_HISTORY 10
#define GRAPHENE_MAX_UNDO_HISTORY 10000
#define GRAPHENE_MIN_BLOCK_SIZE_LIMIT (GRAPHENE_MIN_TRANSACTION_SIZE_LIMIT*5) // 5 transactions per block
#define GRAPHENE_MIN_TRANSACTION_EXPIRATION_LIMIT (GRAPHENE_MAX_BLOCK_INTERVAL * 5) // 5 transactions per block
#define GRAPHENE_BLOCKCHAIN_PRECISION uint64_t( 100000 )
#define GRAPHENE_BLOCKCHAIN_PRECISION_DIGITS 5
#define GRAPHENE_DEFAULT_TRANSFER_FEE (1*GRAPHENE_BLOCKCHAIN_PRECISION)
#define GRAPHENE_MAX_INSTANCE_ID (uint64_t(-1)>>16)
/** percentage fields are fixed point with a denominator of 10,000 */
#define GRAPHENE_100_PERCENT 10000
#define GRAPHENE_1_PERCENT (GRAPHENE_100_PERCENT/100)
/** NOTE: making this a power of 2 (say 2^15) would greatly accelerate fee calcs */
#define GRAPHENE_MAX_MARKET_FEE_PERCENT GRAPHENE_100_PERCENT
#define GRAPHENE_DEFAULT_FORCE_SETTLEMENT_DELAY (60*60*24) ///< 1 day
#define GRAPHENE_DEFAULT_FORCE_SETTLEMENT_OFFSET 0 ///< 1%
#define GRAPHENE_DEFAULT_FORCE_SETTLEMENT_MAX_VOLUME (20* GRAPHENE_1_PERCENT) ///< 20%
#define GRAPHENE_DEFAULT_PRICE_FEED_LIFETIME (60*60*24) ///< 1 day
#define GRAPHENE_MAX_FEED_PRODUCERS 200
#define GRAPHENE_DEFAULT_MAX_AUTHORITY_MEMBERSHIP 10
#define GRAPHENE_DEFAULT_MAX_ASSET_WHITELIST_AUTHORITIES 10
#define GRAPHENE_DEFAULT_MAX_ASSET_FEED_PUBLISHERS 10
/**
* These ratios are fixed point numbers with a denominator of GRAPHENE_COLLATERAL_RATIO_DENOM, the
* minimum maitenance collateral is therefore 1.001x and the default
* maintenance ratio is 1.75x
*/
///@{
#define GRAPHENE_COLLATERAL_RATIO_DENOM 1000
#define GRAPHENE_MIN_COLLATERAL_RATIO 1001 ///< lower than this could result in divide by 0
#define GRAPHENE_MAX_COLLATERAL_RATIO 32000 ///< higher than this is unnecessary and may exceed int16 storage
#define GRAPHENE_DEFAULT_MAINTENANCE_COLLATERAL_RATIO 1750 ///< Call when collateral only pays off 175% the debt
#define GRAPHENE_DEFAULT_MAX_SHORT_SQUEEZE_RATIO 1500 ///< Stop calling when collateral only pays off 150% of the debt
///@}
#define GRAPHENE_DEFAULT_MARGIN_PERIOD_SEC (30*60*60*24)
#define GRAPHENE_DEFAULT_MIN_WITNESS_COUNT (11)
#define GRAPHENE_DEFAULT_MIN_COMMITTEE_MEMBER_COUNT (11)
#define GRAPHENE_DEFAULT_MIN_SON_COUNT (5)
#define GRAPHENE_DEFAULT_MAX_WITNESSES (1001) // SHOULD BE ODD
#define GRAPHENE_DEFAULT_MAX_COMMITTEE (1001) // SHOULD BE ODD
#define GRAPHENE_DEFAULT_MAX_SONS (15)
#define GRAPHENE_DEFAULT_MAX_PROPOSAL_LIFETIME_SEC (60*60*24*7*4) // Four weeks
#define GRAPHENE_DEFAULT_COMMITTEE_PROPOSAL_REVIEW_PERIOD_SEC (60*60*24*7*2) // Two weeks
#define GRAPHENE_DEFAULT_NETWORK_PERCENT_OF_FEE (20*GRAPHENE_1_PERCENT)
#define GRAPHENE_DEFAULT_LIFETIME_REFERRER_PERCENT_OF_FEE (30*GRAPHENE_1_PERCENT)
#define GRAPHENE_DEFAULT_MAX_BULK_DISCOUNT_PERCENT (50*GRAPHENE_1_PERCENT)
#define GRAPHENE_DEFAULT_BULK_DISCOUNT_THRESHOLD_MIN ( GRAPHENE_BLOCKCHAIN_PRECISION*int64_t(1000) )
#define GRAPHENE_DEFAULT_BULK_DISCOUNT_THRESHOLD_MAX ( GRAPHENE_DEFAULT_BULK_DISCOUNT_THRESHOLD_MIN*int64_t(100) )
#define GRAPHENE_DEFAULT_CASHBACK_VESTING_PERIOD_SEC (60*60*24*365) ///< 1 year
#define GRAPHENE_DEFAULT_CASHBACK_VESTING_THRESHOLD (GRAPHENE_BLOCKCHAIN_PRECISION*int64_t(100))
#define GRAPHENE_DEFAULT_BURN_PERCENT_OF_FEE (20*GRAPHENE_1_PERCENT)
#define GRAPHENE_WITNESS_PAY_PERCENT_PRECISION (1000000000)
#define GRAPHENE_DEFAULT_MAX_ASSERT_OPCODE 1
#define GRAPHENE_DEFAULT_FEE_LIQUIDATION_THRESHOLD GRAPHENE_BLOCKCHAIN_PRECISION * 100;
#define GRAPHENE_DEFAULT_ACCOUNTS_PER_FEE_SCALE 1000
#define GRAPHENE_DEFAULT_ACCOUNT_FEE_SCALE_BITSHIFTS 4
#define GRAPHENE_DEFAULT_MAX_BUYBACK_MARKETS 4
#define GRAPHENE_MAX_WORKER_NAME_LENGTH 63
#define GRAPHENE_MAX_URL_LENGTH 127
#define GRAPHENE_WITNESS_SHUFFLED_ALGORITHM 0
#define GRAPHENE_WITNESS_SCHEDULED_ALGORITHM 1
// counter initialization values used to derive near and far future seeds for shuffling witnesses
// we use the fractional bits of sqrt(2) in hex
#define GRAPHENE_NEAR_SCHEDULE_CTR_IV ( (uint64_t( 0x6a09 ) << 0x30) \
| (uint64_t( 0xe667 ) << 0x20) \
| (uint64_t( 0xf3bc ) << 0x10) \
| (uint64_t( 0xc908 ) ) )
// and the fractional bits of sqrt(3) in hex
#define GRAPHENE_FAR_SCHEDULE_CTR_IV ( (uint64_t( 0xbb67 ) << 0x30) \
| (uint64_t( 0xae85 ) << 0x20) \
| (uint64_t( 0x84ca ) << 0x10) \
| (uint64_t( 0xa73b ) ) )
// counter used to determine bits of entropy
// must be less than or equal to secret_hash_type::data_length()
#define GRAPHENE_RNG_SEED_LENGTH (160 / 8)
/**
* every second, the fraction of burned core asset which cycles is
* GRAPHENE_CORE_ASSET_CYCLE_RATE / (1 << GRAPHENE_CORE_ASSET_CYCLE_RATE_BITS)
*/
#define GRAPHENE_CORE_ASSET_CYCLE_RATE 17
#define GRAPHENE_CORE_ASSET_CYCLE_RATE_BITS 32
#define GRAPHENE_DEFAULT_WITNESS_PAY_PER_BLOCK (GRAPHENE_BLOCKCHAIN_PRECISION * int64_t( 10) )
#define GRAPHENE_DEFAULT_WITNESS_PAY_VESTING_SECONDS (60*60*24)
#define GRAPHENE_DEFAULT_WORKER_BUDGET_PER_DAY (GRAPHENE_BLOCKCHAIN_PRECISION * int64_t(500) * 1000 )
#define GRAPHENE_DEFAULT_MINIMUM_FEEDS 7
#define GRAPHENE_MAX_INTEREST_APR uint16_t( 10000 )
#define GRAPHENE_RECENTLY_MISSED_COUNT_INCREMENT 4
#define GRAPHENE_RECENTLY_MISSED_COUNT_DECREMENT 3
#define GRAPHENE_CURRENT_DB_VERSION "PPY2.4"
#define GRAPHENE_IRREVERSIBLE_THRESHOLD (70 * GRAPHENE_1_PERCENT)
/**
* Reserved Account IDs with special meaning
*/
///@{
/// Represents the current committee members, two-week review period
#define GRAPHENE_COMMITTEE_ACCOUNT (graphene::chain::account_id_type(0))
/// Represents the current witnesses
#define GRAPHENE_WITNESS_ACCOUNT (graphene::chain::account_id_type(1))
/// Represents the current committee members
#define GRAPHENE_RELAXED_COMMITTEE_ACCOUNT (graphene::chain::account_id_type(2))
/// Represents the canonical account with NO authority (nobody can access funds in null account)
#define GRAPHENE_NULL_ACCOUNT (graphene::chain::account_id_type(3))
/// Represents the canonical account with WILDCARD authority (anybody can access funds in temp account)
#define GRAPHENE_TEMP_ACCOUNT (graphene::chain::account_id_type(4))
/// Represents the canonical account for specifying you will vote directly (as opposed to a proxy)
#define GRAPHENE_PROXY_TO_SELF_ACCOUNT (graphene::chain::account_id_type(5))
///
#define GRAPHENE_RAKE_FEE_ACCOUNT_ID (graphene::chain::account_id_type(6))
/// Sentinel value used in the scheduler.
#define GRAPHENE_NULL_WITNESS (graphene::chain::witness_id_type(0))
///@}
#define GRAPHENE_FBA_STEALTH_DESIGNATED_ASSET (asset_id_type(743))
#define GRAPHENE_DEFAULT_RAKE_FEE_PERCENTAGE (3*GRAPHENE_1_PERCENT)
/**
* Betting-related constants.
*
* We store bet multipliers as fixed-precision uint32_t. These values are
* the maximum power-of-ten bet we can have on a "symmetric" market:
* (decimal) 1.0001 - 10001
* (fractional) 1:10000 - 10000:1
*/
///@{
/// betting odds (multipliers) are stored as fixed-precision, divide by this to get the actual multiplier
#define GRAPHENE_BETTING_ODDS_PRECISION 10000
/// the smallest bet multiplier we will accept
#define GRAPHENE_BETTING_MIN_MULTIPLIER 10001
/// the largest bet multiplier we will accept
#define GRAPHENE_BETTING_MAX_MULTIPLIER 100010000
///@}
#define GRAPHENE_DEFAULT_MIN_BET_MULTIPLIER 10100
#define GRAPHENE_DEFAULT_MAX_BET_MULTIPLIER 10000000
#define GRAPHENE_DEFAULT_PERMITTED_BETTING_ODDS_INCREMENTS { { 20000, 100}, /* <= 2: 0.01 */ \
{ 30000, 200}, /* <= 3: 0.02 */ \
{ 40000, 500}, /* <= 4: 0.05 */ \
{ 60000, 1000}, /* <= 6: 0.10 */ \
{ 100000, 2000}, /* <= 10: 0.20 */ \
{ 200000, 5000}, /* <= 20: 0.50 */ \
{ 300000, 10000}, /* <= 30: 1.00 */ \
{ 500000, 20000}, /* <= 50: 2.00 */ \
{ 1000000, 50000}, /* <= 100: 5.00 */ \
{ 10000000, 100000} } /* <= 1000: 10.00 */
#define GRAPHENE_DEFAULT_BETTING_PERCENT_FEE (2 * GRAPHENE_1_PERCENT)
#define GRAPHENE_DEFAULT_LIVE_BETTING_DELAY_TIME 5 // seconds
#define GRAPHENE_MAX_NESTED_OBJECTS (200)
#define TOURNAMENT_MIN_ROUND_DELAY 0
#define TOURNAMENT_MAX_ROUND_DELAY 600
#define TOURNAMENT_MIN_TIME_PER_COMMIT_MOVE 0
#define TOURNAMENT_MAN_TIME_PER_COMMIT_MOVE 600
#define TOURNAMENT_MIN_TIME_PER_REVEAL_MOVE 0
#define TOURNAMENT_MAX_TIME_PER_REVEAL_MOVE 600
#define TOURNAMENT_DEFAULT_RAKE_FEE_PERCENTAGE (3*GRAPHENE_1_PERCENT)
#define TOURNAMENT_MINIMAL_RAKE_FEE_PERCENTAGE (1*GRAPHENE_1_PERCENT)
#define TOURNAMENT_MAXIMAL_RAKE_FEE_PERCENTAGE (20*GRAPHENE_1_PERCENT)
#define TOURNAMENT_MAXIMAL_REGISTRATION_DEADLINE (60*60*24*30) // seconds, 30 days
#define TOURNAMENT_MAX_NUMBER_OF_WINS 100
#define TOURNAMENT_MAX_PLAYERS_NUMBER 256
#define TOURNAMENT_MAX_WHITELIST_LENGTH 1000
#define TOURNAMENT_MAX_START_TIME_IN_FUTURE (60*60*24*7*4) // 1 month
#define TOURNAMENT_MAX_START_DELAY (60*60*24*7) // 1 week
#define SON_VESTING_AMOUNT (50*GRAPHENE_BLOCKCHAIN_PRECISION) // 50 PPY
#define SON_VESTING_PERIOD (60*60*24*2) // 2 days
#define SON_DEREGISTER_TIME (60*60*12) // 12 Hours in seconds
#define SON_HEARTBEAT_FREQUENCY (60*3) // 3 minutes in seconds
#define SON_DOWN_TIME (60*3*2) // 2 Heartbeats in seconds
#define SON_BITCOIN_MIN_TX_CONFIRMATIONS (1)
#define SON_PAY_TIME (60*60*24) // 1 day
#define SON_PAY_MAX (GRAPHENE_BLOCKCHAIN_PRECISION * int64_t(200))
#define SWEEPS_DEFAULT_DISTRIBUTION_PERCENTAGE (2*GRAPHENE_1_PERCENT)
#define SWEEPS_DEFAULT_DISTRIBUTION_ASSET (graphene::chain::asset_id_type(0))
#define SWEEPS_VESTING_BALANCE_MULTIPLIER 100000000
#define SWEEPS_ACCUMULATOR_ACCOUNT (graphene::chain::account_id_type(0))
#define GPOS_PERIOD (60*60*24*30*6) // 6 months
#define GPOS_SUBPERIOD (60*60*24*30) // 1 month
#define GPOS_VESTING_LOCKIN_PERIOD (60*60*24*30) // 1 month
#define RBAC_MIN_PERMISSION_NAME_LENGTH 3
#define RBAC_MAX_PERMISSION_NAME_LENGTH 10
#define RBAC_MAX_PERMISSIONS_PER_ACCOUNT 5 // 5 per account
#define RBAC_MAX_ACCOUNT_AUTHORITY_LIFETIME 180*24*60*60 // 6 months
#define RBAC_MAX_AUTHS_PER_PERMISSION 15 // 15 ops linked per permission
#define NFT_TOKEN_MIN_LENGTH 3
#define NFT_TOKEN_MAX_LENGTH 15
#define NFT_URI_MAX_LENGTH GRAPHENE_MAX_URL_LENGTH
#define ACCOUNT_ROLES_MAX_PER_ACCOUNT 20 // Max 20 roles can be created by a resource owner
#define ACCOUNT_ROLES_MAX_LIFETIME 365*24*60*60 // 1 Year
|
b9637194e3daef39b8bf072b3e229e13771c9be7 | 2b1bff70fcce2359a158c2960994c539e1cc3057 | /src/Block.cpp | 271fb5d1bf2056d266e8c763aaf57549bc06b36c | [] | no_license | VictorLuc4/Boomberman | 39e3d40c63e0b8e219bf7910cee8230df1df0809 | 9f73ebad57f66e4361498118f1f7927fb6f5f986 | refs/heads/master | 2020-04-05T04:07:36.393193 | 2018-11-07T11:53:24 | 2018-11-07T11:53:24 | 156,538,442 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,776 | cpp | Block.cpp | /*
** EPITECH PROJECT, 2018
** Block.cpp
** File description:
** Block
*/
#include "Block.hpp"
Block::Block(TypeBlock type, std::string name, int x, int z) : _type(type), _name(name)
{
_pos.first = x;
_pos.second = z;
_meshPath = "media/mediaGame/file3D/map/" + name + ".obj";
_texturePath = "media/mediaGame/file3D/map/" + name + ".png";
_ratio = 0;
_blast = 1;
_kick = false;
}
TypeBlock Block::getType()
{
return _type;
}
std::string Block::getName()
{
return _name;
}
std::string Block::getTexturePath()
{
return _texturePath;
}
std::string Block::getMeshPath()
{
return _meshPath;
}
int Block::getPosX()
{
return _pos.first;
}
int Block::getPosZ()
{
return _pos.second;
}
std::pair<int, int> Block::getPos()
{
return _pos;
}
void Block::setNode(IMeshSceneNode *node)
{
_node = node;
}
void Block::setFire(IParticleSystemSceneNode *ps)
{
_ps = ps;
}
IMeshSceneNode *Block::getNode()
{
return _node;
}
IParticleSystemSceneNode *Block::getFire()
{
return _ps;
}
float Block::getRatio()
{
return _ratio;
}
void Block::setRatio(float ratio)
{
_ratio = ratio;
}
std::chrono::time_point<std::chrono::system_clock> Block::getStart()
{
return _start;
}
std::chrono::time_point<std::chrono::system_clock> Block::getEnd()
{
return _end;
}
void Block::setStart()
{
_start = std::chrono::system_clock::now();
}
void Block::setEnd()
{
_end = std::chrono::system_clock::now();
}
int Block::getBlast()
{
return _blast;
}
void Block::setBlast(int blast)
{
_blast = blast;
}
void Block::setKick(bool kick)
{
_kick = kick;
}
bool Block::getKick()
{
return _kick;
}
void Block::setDir(int x, int z)
{
_dir.first = x;
_dir.second = z;
}
std::pair<int, int> Block::getDir()
{
return _dir;
} |
0ecac0f2ce2c13a0de71f7c6048f7618a6e6603c | 9dc21dc52cba61932aafb5d422ed825aafce9e22 | /src/appleseed/foundation/resources/logo/appleseed-seeds-16.cpp | dc6897378daac428bdae8fc77ff5da8b92b457e7 | [
"MIT"
] | permissive | MarcelRaschke/appleseed | c8613a0e0c268d77e83367fef2d5f22f68568480 | 802dbf67bdf3a53c983bbb638e7f08a2c90323db | refs/heads/master | 2023-07-19T05:48:06.415165 | 2020-01-18T15:28:31 | 2020-01-19T11:52:15 | 236,110,136 | 2 | 0 | MIT | 2023-04-03T23:00:15 | 2020-01-25T01:12:57 | null | UTF-8 | C++ | false | false | 10,353 | cpp | appleseed-seeds-16.cpp |
//
// This source file is part of appleseed.
// Visit https://appleseedhq.net/ for additional information and resources.
//
// This software is released under the MIT license.
//
// Copyright (c) 2018 Francois Beaune, The appleseedhq Organization
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
// Interface header.
#include "appleseed-seeds-16.h"
namespace foundation
{
const float appleseed_seeds_16[] =
{
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0307f, 0.0307f, 0.0307f, 0.2510f,
0.0296f, 0.0296f, 0.0296f, 0.2392f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.2874f, 0.2874f, 0.2874f, 0.7373f,
0.2705f, 0.2705f, 0.2705f, 0.7137f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0052f, 0.0052f, 0.0052f, 0.0784f, 0.5647f, 0.5647f, 0.5647f, 0.9922f,
0.5583f, 0.5583f, 0.5583f, 0.9882f, 0.0040f, 0.0040f, 0.0040f, 0.0706f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0685f, 0.0685f, 0.0685f, 0.3686f, 0.5776f, 0.5776f, 0.5776f, 1.0000f,
0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.0648f, 0.0648f, 0.0648f, 0.3608f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.1746f, 0.1746f, 0.1746f, 0.5804f, 0.5776f, 0.5776f, 0.5776f, 1.0000f,
0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.1746f, 0.1746f, 0.1746f, 0.5804f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0452f, 0.0452f, 0.0452f, 0.3059f, 0.1170f, 0.1170f, 0.1170f, 0.4784f, 0.1301f, 0.1301f, 0.1301f, 0.5098f, 0.1170f, 0.1170f, 0.1170f, 0.4784f,
0.0953f, 0.0953f, 0.0953f, 0.4353f, 0.0040f, 0.0040f, 0.0040f, 0.0706f, 0.0529f, 0.0529f, 0.0529f, 0.3294f, 0.5776f, 0.5776f, 0.5776f, 1.0000f,
0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.0529f, 0.0529f, 0.0529f, 0.3294f, 0.0060f, 0.0018f, 0.0000f, 0.0706f, 0.1590f, 0.0203f, 0.0018f, 0.4353f,
0.1946f, 0.0242f, 0.0024f, 0.4784f, 0.2232f, 0.0262f, 0.0027f, 0.5098f, 0.2016f, 0.0242f, 0.0021f, 0.4863f, 0.0782f, 0.0110f, 0.0012f, 0.3098f,
0.0296f, 0.0296f, 0.0296f, 0.2471f, 0.5149f, 0.5149f, 0.5149f, 0.9529f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.5776f, 0.5776f, 0.5776f, 1.0000f,
0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.4564f, 0.4564f, 0.4564f, 0.9020f, 0.0185f, 0.0185f, 0.0185f, 0.1843f, 0.1022f, 0.1022f, 0.1022f, 0.4510f,
0.1022f, 0.1022f, 0.1022f, 0.4510f, 0.0273f, 0.0060f, 0.0021f, 0.1843f, 0.7913f, 0.0823f, 0.0048f, 0.9020f, 1.0000f, 0.1022f, 0.0056f, 1.0000f,
1.0000f, 0.1022f, 0.0056f, 1.0000f, 1.0000f, 0.1022f, 0.0056f, 1.0000f, 0.8796f, 0.0908f, 0.0052f, 0.9451f, 0.0452f, 0.0070f, 0.0012f, 0.2353f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0137f, 0.0137f, 0.0137f, 0.1569f, 0.3278f, 0.3278f, 0.3278f, 0.7765f, 0.5776f, 0.5776f, 0.5776f, 1.0000f,
0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.0802f, 0.0802f, 0.0802f, 0.4000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.1329f, 0.0176f, 0.0021f, 0.4000f, 1.0000f, 0.1022f, 0.0056f, 1.0000f, 1.0000f, 0.1022f, 0.0056f, 1.0000f,
1.0000f, 0.1022f, 0.0056f, 1.0000f, 0.5583f, 0.0612f, 0.0040f, 0.7725f, 0.0194f, 0.0037f, 0.0006f, 0.1490f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0006f, 0.0006f, 0.0006f, 0.0078f, 0.0953f, 0.0953f, 0.0953f, 0.4392f,
0.2384f, 0.2384f, 0.2384f, 0.6706f, 0.1878f, 0.1878f, 0.1878f, 0.6039f, 0.0024f, 0.0024f, 0.0024f, 0.0392f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0030f, 0.0012f, 0.0003f, 0.0392f, 0.3231f, 0.0356f, 0.0030f, 0.6039f, 0.4072f, 0.0437f, 0.0030f, 0.6706f,
0.1590f, 0.0203f, 0.0018f, 0.4353f, 0.0006f, 0.0003f, 0.0000f, 0.0078f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0685f, 0.0685f, 0.0685f, 0.3725f, 0.1301f, 0.1301f, 0.1301f, 0.5059f, 0.0040f, 0.0040f, 0.0040f, 0.0667f,
0.0040f, 0.0040f, 0.0040f, 0.0667f, 0.1301f, 0.1301f, 0.1301f, 0.5059f, 0.0685f, 0.0685f, 0.0685f, 0.3725f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.1413f, 0.1413f, 0.1413f, 0.5255f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.1170f, 0.1170f, 0.1170f, 0.4863f,
0.1170f, 0.1170f, 0.1170f, 0.4863f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.1413f, 0.1413f, 0.1413f, 0.5294f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0018f, 0.0018f, 0.0018f, 0.0353f,
0.5089f, 0.5089f, 0.5089f, 0.9490f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.0612f, 0.0612f, 0.0612f, 0.3490f,
0.0612f, 0.0612f, 0.0612f, 0.3490f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.5149f, 0.5149f, 0.5149f, 0.9529f,
0.0024f, 0.0024f, 0.0024f, 0.0471f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0612f, 0.0612f, 0.0612f, 0.3529f,
0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.3140f, 0.3140f, 0.3140f, 0.7647f, 0.0027f, 0.0027f, 0.0027f, 0.0431f,
0.0027f, 0.0027f, 0.0027f, 0.0431f, 0.3095f, 0.3095f, 0.3095f, 0.7569f, 0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.5776f, 0.5776f, 0.5776f, 1.0000f,
0.0723f, 0.0723f, 0.0723f, 0.3804f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.2232f, 0.2232f, 0.2232f, 0.6549f,
0.5776f, 0.5776f, 0.5776f, 1.0000f, 0.1559f, 0.1559f, 0.1559f, 0.5569f, 0.0006f, 0.0006f, 0.0006f, 0.0157f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0006f, 0.0006f, 0.0006f, 0.0118f, 0.1413f, 0.1413f, 0.1413f, 0.5294f, 0.5711f, 0.5711f, 0.5711f, 0.9961f,
0.2542f, 0.2542f, 0.2542f, 0.6941f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.2016f, 0.2016f, 0.2016f, 0.6235f,
0.0369f, 0.0369f, 0.0369f, 0.2706f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f,
0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0284f, 0.0284f, 0.0284f, 0.2353f,
0.2016f, 0.2016f, 0.2016f, 0.6275f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f, 0.0000f
};
} // namespace foundation
|
505d7c4bb04cdbc72d4733d1d452830f94a7bef5 | 87f6202531bf233c030ec9c8cfd32db212de9b4e | /libs/ph/test/src/product.cpp | a346c273c4ce4a02a29aa3a31fcb84830d89e981 | [
"MIT"
] | permissive | phiwen96/MyLibs | 0b7aeb39dc999c2a58ce78de814ffb74efa95e2a | 33b8b4db196040e91eb1c3596634ba73c72a494b | refs/heads/main | 2023-01-21T10:07:06.620399 | 2020-11-29T14:57:37 | 2020-11-29T14:57:37 | 309,114,668 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29 | cpp | product.cpp | #include <test/product.hpp>
|
85d0de2c2bd7669bbf9c511894a96a62a5658d13 | 1825283527f5a479204708feeaf55f4ab6d1290b | /Cpp/Lear/factorial_test.cpp | 9963419b35a6ec4c8a4c9bf8666c27740d3caf68 | [] | no_license | frankieliu/problems | b82c61d3328ffcc1da2cbc95712563355f5d44b5 | 911c6622448a4be041834bcab25051dd0f9209b2 | refs/heads/master | 2023-01-06T14:41:58.044871 | 2019-11-24T03:47:22 | 2019-11-24T03:47:22 | 115,065,956 | 1 | 0 | null | 2023-01-04T07:25:52 | 2017-12-22T02:06:57 | HTML | UTF-8 | C++ | false | false | 53 | cpp | factorial_test.cpp | #include "factorial.h"
void factorial_test() {
}
|
bb6fd00817e44c34be090b471186fddb4a011fa1 | 618a14dd17be3c4eb3b0757e8e272d6d979d898e | /PaintShooting/PaintBulletManager.cpp | 1ba9bd839c82fb784b904e187a0ae49aa754c45e | [] | no_license | koutcha/PaintShooting | 562c30e14ee4edc64923345b9f2e5c64b8b33075 | 95910929043e8d73107a92ada6e49cf605490566 | refs/heads/master | 2020-04-16T22:10:46.766583 | 2019-01-16T02:07:45 | 2019-01-16T02:07:45 | 165,956,384 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,431 | cpp | PaintBulletManager.cpp | #include "PaintBulletManager.h"
#include "GraphicIBL.h"
#include "CharacterPhysics.h"
#include "StagePhysics.h"
#include "PaintColorSet.h"
#include "Particle3D.h"
#include "MaterialPBR.h"
#include "PaintBullet.h"
PaintBulletManager::PaintBulletManager(int maxBullets, std::shared_ptr<PaintColorSet>& color) :
particle(Particle3D::createSpherePartecle(maxBullets)),
team0Bullets(maxBullets),
team1Bullets(maxBullets),
colorset(color),
material(std::make_unique<MaterialPBR>(Vector3f(0.0f,0.0f,0.0f),0.2f,0.2f,1.0f))
{
}
PaintBulletManager::~PaintBulletManager()
{
}
void PaintBulletManager::createBullet(const Vector3f & position, float scale, const Vector3f & velocity, int teamIndex,float paintScale,float damage)
{
if (teamIndex == 0)
{
createBulletRoutain(team0Bullets, position, scale, velocity, paintScale,0,damage);
}
else if (teamIndex == 1)
{
createBulletRoutain(team1Bullets, position, scale, velocity, paintScale,1,damage);
}
else
{
return;
}
}
void PaintBulletManager::update(float dt, float g)
{
updateBullets(team0Bullets, dt, g);
updateBullets(team1Bullets, dt, g);
}
void PaintBulletManager::collision(CharacterPhysics &character)
{
collision(team0Bullets, character);
collision(team1Bullets, character);
}
void PaintBulletManager::collision(StagePhysics &stage)
{
collision(team0Bullets, stage);
collision(team1Bullets, stage);
}
void PaintBulletManager::draw(const GraphicIBL & g)
{
material->setAlbedo(colorset->getColor(0));
draw(team0Bullets, g, *particle, *material);
material->setAlbedo(colorset->getColor(1));
draw(team1Bullets, g, *particle, *material);
}
void PaintBulletManager::createBulletRoutain(std::vector<PaintBullet>& bullets, const Vector3f& position, float scale, const Vector3f& velocity,float paintScale,int teamIndex,float damage)
{
for (auto& bullet : bullets)
{
if (!bullet.isEntity)
{
bullet.isEntity = true;
bullet.velocity = velocity;
bullet.position = position;
bullet.scale = scale;
bullet.paintScale = paintScale;
bullet.teamIndex = teamIndex;
bullet.damage = damage;
bullet.remain = 100.0;
return;
}
}
//std::cout << "bullet not remain" << std::endl;
}
void PaintBulletManager::updateBullets(std::vector<PaintBullet>& bullets,float dt,float g)
{
for (auto& bullet : bullets)
{
if (bullet.isEntity)
{
bullet.velocity.y -= g * dt;
bullet.position += bullet.velocity*dt;
bullet.remain -= dt;
if (bullet.remain < 0)
{
bullet.isEntity = false;
}
}
}
}
void PaintBulletManager::collision(std::vector<PaintBullet>& bullets, CharacterPhysics & character)
{
for (auto& bullet : bullets)
{
if (bullet.isEntity && bullet.damage != 0)
{
if (character.checkCollision(bullet))
{
bullet.isEntity = false;
}
}
}
}
void PaintBulletManager::collision(std::vector<PaintBullet>& bullets, StagePhysics & stage)
{
for (auto& bullet : bullets)
{
if (bullet.isEntity)
{
if (stage.collisionBullet(bullet))
{
bullet.isEntity = false;
}
}
}
}
void PaintBulletManager::draw(std::vector<PaintBullet>& bullets, const GraphicIBL & g,Particle3D& particle,const MaterialPBR & material)
{
int count = 0;
for (const auto& bullet : bullets)
{
if (bullet.isEntity)
{
ParticleData data;
data.size = bullet.scale;
data.position = bullet.position;
particle.setData(count, data);
count++;
}
}
g.draw(particle, count, material);
}
|
65029f031fa3a5a4d2a3b6090a5e68fb9b4ec126 | c4b544d9ff751fb6007f4a305a7c764c860f93b4 | /test/detail/wrap.cpp | 11712e39d85318662aa0e2a30c506435a7d1529d | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | rbock/hana | cc630ff26c9c78cebe5facaeb98635a4d5afcc50 | 2b76377f91a5ebe037dea444e4eaabba6498d3a8 | refs/heads/master | 2021-01-16T21:42:59.613464 | 2014-08-08T02:38:54 | 2014-08-08T02:38:54 | 23,278,630 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 818 | cpp | wrap.cpp | /*
@copyright Louis Dionne 2014
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/detail/wrap.hpp>
#include <boost/hana/core/datatype.hpp>
#include <boost/hana/detail/assert.hpp>
#include <type_traits>
using namespace boost::hana;
struct Datatype;
struct Anything;
struct anything { using hana_datatype = Anything; };
static_assert(std::is_same<
datatype_t<decltype(detail::wrap<Datatype>(anything{}))>,
Datatype
>::value, "");
static_assert(std::is_same<
datatype_t<anything>,
datatype_t<decltype(
detail::unwrap(detail::wrap<Datatype>(anything{}))
)>
>::value, "");
int main() {
BOOST_HANA_CONSTEXPR_ASSERT(detail::unwrap(detail::wrap<Datatype>(2.2)) == 2.2);
}
|
630b771f761554df5125d413a052d7aeb92a455e | dc6287d15bc412512e34e50a61bb10dede894543 | /vkconfig/layer_manifest.cpp | 90d1f0c5329895002a4ad4bfb603a459644a79b1 | [
"Apache-2.0"
] | permissive | luopan007/VulkanTools | cac05bc61dceafade6f3d03bd4e4137c2a427732 | 76472f01602854164bf07b83875bd659307656db | refs/heads/master | 2022-11-14T12:24:00.510261 | 2020-07-08T08:38:24 | 2020-07-08T08:38:24 | 278,025,020 | 0 | 0 | NOASSERTION | 2020-07-08T07:48:18 | 2020-07-08T07:48:18 | null | UTF-8 | C++ | false | false | 15,082 | cpp | layer_manifest.cpp | /*
* Copyright (c) 2018 Valve Corporation
* Copyright (c) 2018 LunarG, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Author: Lenny Komow <lenny@lunarg.com>
*/
#include "layer_manifest.h"
#include <QJsonArray>
#include <QJsonDocument>
#if defined(_WIN32)
#define WIN_BUFFER_SIZE 1024
#endif
QString LayerManifest::PrettyName() const {
QStringList segments = name.split("_");
if (segments.count() <= 3 || segments[0] != "VK" || segments[1] != "LAYER") {
return name;
}
for (int i = 0; i < 2; ++i) {
segments.removeFirst();
}
static const QHash<QString, QString> LAYER_AUTHORS = LoadLayerAuthors(":/layermgr/layer_info.json");
if (LAYER_AUTHORS.contains(segments[0])) {
segments[0] = LAYER_AUTHORS[segments[0]];
}
segments[0].append(":");
for (int i = 0; i < segments.count(); ++i) {
segments[i].replace(0, 1, segments[i][0].toUpper());
}
return segments.join(" ");
}
QList<LayerManifest> LayerManifest::LoadDirectory(const QDir &directory, LayerType type, bool recursive) {
QList<LayerManifest> manifests;
if (!directory.exists()) {
return manifests;
}
QList<QString> filters = {"*.json"};
for (auto file_info : directory.entryInfoList(filters, QDir::Files | QDir::Readable)) {
LoadLayerFile(file_info.absoluteFilePath(), type, &manifests);
}
if (recursive) {
for (auto dir_info : directory.entryInfoList(filters, QDir::AllDirs | QDir::NoDotAndDotDot | QDir::Readable)) {
manifests.append(LoadDirectory(QDir(dir_info.absoluteFilePath()), type, true));
}
}
return manifests;
}
#if defined(_WIN32)
QList<LayerManifest> LayerManifest::LoadRegistry(const QString &path, LayerType type) {
QList<LayerManifest> manifests;
QString root_string = path.section('\\', 0, 0);
static QHash<QString, HKEY> root_keys = {
{"HKEY_CLASSES_ROOT", HKEY_CLASSES_ROOT},
{"HKEY_CURRENT_CONFIG", HKEY_CURRENT_CONFIG},
{"HKEY_CURRENT_USER", HKEY_CURRENT_USER},
{"HKEY_LOCAL_MACHINE", HKEY_LOCAL_MACHINE},
{"HKEY_USERS", HKEY_USERS},
};
HKEY root = HKEY_CURRENT_USER;
for (auto label : root_keys.keys()) {
if (label == root_string) {
root = root_keys[label];
break;
}
}
if (!path.contains("...")) {
HKEY key;
QByteArray key_bytes = path.section('\\', 1).toLocal8Bit();
LSTATUS err = RegCreateKeyEx(root, key_bytes.data(), 0, NULL, REG_OPTION_NON_VOLATILE, KEY_READ, NULL, &key, NULL);
if (err != ERROR_SUCCESS) {
return manifests;
}
DWORD value_count;
RegQueryInfoKey(key, NULL, NULL, NULL, NULL, NULL, NULL, &value_count, NULL, NULL, NULL, NULL);
for (DWORD i = 0; i < value_count; ++i) {
TCHAR file_path[WIN_BUFFER_SIZE];
DWORD buff_size = WIN_BUFFER_SIZE;
RegEnumValue(key, i, file_path, &buff_size, NULL, NULL, NULL, NULL);
LoadLayerFile(file_path, type, &manifests);
}
RegCloseKey(key);
} else {
static const char* const DISPLAY_GUID = "{4d36e968-e325-11ce-bfc1-08002be10318}";
static const char *const SOFTWARE_COMPONENT_GUID = "{5c4c3332-344d-483c-8739-259e934c9cc8}";
static const ULONG FLAGS = CM_GETIDLIST_FILTER_CLASS | CM_GETIDLIST_FILTER_PRESENT;
ULONG device_names_size;
char *device_names = nullptr;
do {
CM_Get_Device_ID_List_Size(&device_names_size, DISPLAY_GUID, FLAGS);
if (device_names != nullptr) {
delete[] device_names;
}
device_names = new char[device_names_size];
} while (CM_Get_Device_ID_List(DISPLAY_GUID, device_names, device_names_size, FLAGS) == CR_BUFFER_SMALL);
if (device_names != nullptr) {
QString entry;
LayerType type;
if (path.endsWith("VulkanExplicitLayers")) {
entry = "VulkanExplicitLayers";
type = LayerType::Explicit;
} else if (path.endsWith("VulkanImplicitLayers")) {
entry = "VulkanImplicitLayers";
type = LayerType::Implicit;
}
for (char *device_name = device_names; device_name[0] != '\0'; device_name += strlen(device_name) + 1) {
DEVINST device_id;
if (CM_Locate_DevNode(&device_id, device_name, CM_LOCATE_DEVNODE_NORMAL) != CR_SUCCESS) {
continue;
}
manifests += LoadDeviceRegistry(device_id, entry, type);
DEVINST child_id;
if (CM_Get_Child(&child_id, device_id, 0) != CR_SUCCESS) {
continue;
}
do {
char child_buffer[MAX_DEVICE_ID_LEN];
CM_Get_Device_ID(child_id, child_buffer, MAX_DEVICE_ID_LEN, 0);
char child_guid[MAX_GUID_STRING_LEN + 2];
ULONG child_guid_size = sizeof(child_guid);
if (CM_Get_DevNode_Registry_Property(child_id, CM_DRP_CLASSGUID, nullptr, &child_guid, &child_guid_size, 0) != CR_SUCCESS) {
continue;
}
if (strcmp(child_guid, SOFTWARE_COMPONENT_GUID) == 0) {
manifests += LoadDeviceRegistry(child_id, entry, type);
break;
}
} while(CM_Get_Sibling(&child_id, child_id, 0) == CR_SUCCESS);
}
}
if(device_names != nullptr) {
delete[] device_names;
}
}
return manifests;
}
#endif
QHash<QString, QString> LayerManifest::LoadLayerAuthors(const QString &file_path) {
QFile file(file_path);
file.open(QFile::ReadOnly);
QString data = file.readAll();
file.close();
QJsonDocument document = QJsonDocument::fromJson(data.toLocal8Bit());
if (!document.isObject()) {
return QHash<QString, QString>();
}
QJsonObject root = document.object();
if (!root.value("layer_authors").isObject()) {
return QHash<QString, QString>();
}
QJsonObject author_object = root.value("layer_authors").toObject();
QHash<QString, QString> authors;
for (QString &key : author_object.keys()) {
if (author_object[key].isObject() && author_object[key].toObject()["name"].isString()) {
authors[key] = author_object[key].toObject()["name"].toString();
}
}
return authors;
}
void LayerManifest::LoadLayerFile(const QString &file_path, LayerType type, QList<LayerManifest> *manifest_list) {
QFile file(file_path);
QFileInfo file_info(file);
file.open(QFile::ReadOnly);
QString data = file.readAll();
file.close();
QJsonDocument document = QJsonDocument::fromJson(data.toLocal8Bit());
if (!document.isObject()) {
return;
}
QJsonObject root = document.object();
if (root.value("layer").isObject()) {
LoadLayerObject(root.value("layer").toObject(), type, file_info, manifest_list);
}
if (root.value("layers").isArray()) {
QJsonArray layer_array = root.value("layers").toArray();
for (auto layer : layer_array) {
if (layer.isObject()) {
LoadLayerObject(layer.toObject(), type, file_info, manifest_list);
}
}
}
}
void LayerManifest::LoadLayerObject(const QJsonObject &layer_object, LayerType type, const QFileInfo &file,
QList<LayerManifest> *manifest_list) {
QJsonValue name = layer_object.value("name");
QJsonValue description = layer_object.value("description");
QJsonValue library_path = layer_object.value("library_path");
QJsonValue component_layers = layer_object.value("component_layers");
if (name.isString() && description.isString() && (library_path.isString() || component_layers.isArray())) {
QString lib_path = library_path.toString();
QFileInfo library(file.dir(), lib_path);
if (!(lib_path.startsWith("./") || lib_path.startsWith(".\\")) || library.exists() || component_layers.isArray()) {
LayerManifest layer_manifest;
layer_manifest.file_path = file.absoluteFilePath();
layer_manifest.name = layer_object.value("name").toString();
layer_manifest.description = layer_object.value("description").toString();
layer_manifest.type = type;
if (layer_manifest.name != "VK_LAYER_LUNARG_override") {
manifest_list->append(layer_manifest);
}
}
}
}
#if defined(_WIN32)
QList<LayerManifest> LayerManifest::LoadDeviceRegistry(DEVINST id, const QString& entry, LayerType type) {
QList<LayerManifest> manifests;
HKEY key;
if(CM_Open_DevNode_Key(id, KEY_QUERY_VALUE, 0, RegDisposition_OpenExisting, &key, CM_REGISTRY_SOFTWARE) != CR_SUCCESS) {
return manifests;
}
QByteArray entry_bytes = entry.toLocal8Bit();
DWORD path_size;
if (RegQueryValueEx(key, entry_bytes.data(), nullptr, nullptr, nullptr, &path_size) != ERROR_SUCCESS) {
RegCloseKey(key);
return manifests;
}
DWORD data_type;
char *path = new char[path_size];
if (RegQueryValueEx(key, entry_bytes.data(), nullptr, &data_type, (LPBYTE)path, &path_size) != ERROR_SUCCESS) {
delete[] path;
RegCloseKey(key);
return manifests;
}
if (data_type == REG_SZ || data_type == REG_MULTI_SZ) {
for (char* curr_filename = path; curr_filename[0] != '\0'; curr_filename += strlen(curr_filename) + 1) {
LoadLayerFile(curr_filename, type, &manifests);
if (data_type == REG_SZ) {
break;
}
}
}
delete[] path;
RegCloseKey(key);
return manifests;
}
#endif
QList<LayerOption> LayerOption::LoadOptions(const LayerManifest &manifest) {
static const QJsonObject OPTIONS_JSON = LoadOptionJson(":/layermgr/layer_info.json");
if (OPTIONS_JSON.empty()) {
return QList<LayerOption>();
}
if (!OPTIONS_JSON.value(manifest.name).isObject()) {
return QList<LayerOption>();
}
QList<LayerOption> options;
const QJsonObject layer_info = OPTIONS_JSON.value(manifest.name).toObject();
for (const QString &key : layer_info.keys()) {
if (!layer_info.value(key).isObject()) {
continue;
}
QJsonObject option_info = layer_info.value(key).toObject();
LayerOption option;
option.layer_name = manifest.name;
option.name = key;
if (option_info.value("name").isString()) {
option.pretty_name = option_info.value("name").toString();
} else {
option.pretty_name = key;
}
if (option_info.value("description").isString()) {
option.description = option_info.value("description").toString();
}
if (!option_info.value("type").isString()) {
continue;
}
QString option_type = option_info.value("type").toString();
QJsonValue default_value = option_info.value("default");
if (option_type == "bool") {
option.type = LayerOptionType::Bool;
if (!default_value.isBool()) {
continue;
}
option.default_values.insert(default_value.toBool() ? "TRUE" : "FALSE");
} else if (option_type == "enum" || option_type == "multi_enum") {
QJsonValue enum_options = option_info.value("options");
if (enum_options.isArray()) {
for (const QJsonValue &item : enum_options.toArray()) {
if (!item.isString()) {
continue;
}
option.enum_options.insert(item.toString(), item.toString());
}
} else if (enum_options.isObject()) {
for (QString &key : enum_options.toObject().keys()) {
if (!enum_options.toObject().value(key).isString()) {
continue;
}
option.enum_options.insert(key, enum_options.toObject().value(key).toString());
}
} else {
continue;
}
if (option_type == "enum") {
option.type = LayerOptionType::Enum;
if (!default_value.isString() || !option.enum_options.contains(default_value.toString())) {
continue;
}
option.default_values.insert(default_value.toString());
} else {
option.type = LayerOptionType::MultiEnum;
if (!default_value.isArray()) {
continue;
}
for (const QJsonValue &item : default_value.toArray()) {
if (!item.isString() || !option.enum_options.contains(item.toString())) {
continue;
}
option.default_values.insert(item.toString());
}
}
} else if (option_type == "open_file") {
option.type = LayerOptionType::OpenFile;
if (!default_value.isString()) {
continue;
}
option.default_values.insert(default_value.toString());
} else if (option_type == "save_file") {
option.type = LayerOptionType::SaveFile;
if (!default_value.isString()) {
continue;
}
option.default_values.insert(default_value.toString());
} else if (option_type == "string") {
option.type = LayerOptionType::String;
if (!default_value.isString()) {
continue;
}
option.default_values.insert(default_value.toString());
} else {
continue;
}
options.append(option);
}
return options;
}
QJsonObject LayerOption::LoadOptionJson(const QString &file_path) {
QFile file(file_path);
file.open(QFile::ReadOnly);
QString data = file.readAll();
file.close();
QJsonDocument document = QJsonDocument::fromJson(data.toLocal8Bit());
if (!document.isObject()) {
return QJsonObject();
}
QJsonObject root = document.object();
if (!root.value("layer_options").isObject()) {
return QJsonObject();
}
return root.value("layer_options").toObject();
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.