Skip to content

Commit

Permalink
fix(client): Textlabel allgetter
Browse files Browse the repository at this point in the history
  • Loading branch information
C0kkie committed Jan 5, 2024
1 parent b7e048a commit 23fa683
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/src/bindings/TextLabel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ static void Constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
V8_BIND_BASE_OBJECT(textLabel, "Failed to create textlabel");
}

// static void AllGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
// {
// V8_GET_ISOLATE_CONTEXT_RESOURCE();
// V8_RETURN(resource->GetAllTextLabel());
// }
static void AllGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
{
V8_GET_ISOLATE_CONTEXT_RESOURCE();
V8_RETURN(resource->GetAllTextLabel());
}

static void StaticGetByID(const v8::FunctionCallbackInfo<v8::Value>& info)
{
Expand Down

0 comments on commit 23fa683

Please sign in to comment.