mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-16 10:00:10 +02:00
25 lines
652 B
C++
25 lines
652 B
C++
//
|
|
// ScriptContext.h
|
|
// libraries/script-engine/src
|
|
//
|
|
// Created by Heather Anderson on 12/5/21.
|
|
// Copyright 2021 Vircadia contributors.
|
|
// Copyright 2023 Overte e.V.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include "ScriptContext.h"
|
|
|
|
#include "Scriptable.h"
|
|
|
|
ScriptContextGuard::ScriptContextGuard(ScriptContext* context) {
|
|
_oldContext = Scriptable::context();
|
|
Scriptable::setContext(context);
|
|
}
|
|
|
|
ScriptContextGuard::~ScriptContextGuard() {
|
|
Scriptable::setContext(_oldContext);
|
|
}
|