question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Pointer Array of Class Pointer

See original GitHub issue

Hi,

unfortunately it seems that the Array of Pointer Node does only support Class Instances. I need an Array of Pointer where every Pointer points to another Pointer of a specific class.

I know that you (@KN4CK3R ) know the Unreal Engine so you are aware of the TArray<T> struct. Imagine the ULevel::Actors member which is a TArray<AActor*>

I wanted to create a class in ReClass that is able to visualize exactly this. The first member in the TArray is a Pointer to the Pointer Table. However I am only able to put another class which is already defined in the Array of Pointers instead of a here required Class Pointer of AActor.

Do you get what I mean?

Is it possible to implement that?

Thanks in advance

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:7 (4 by maintainers)

github_iconTop GitHub Comments

2reactions
KN4CK3Rcommented, Dec 16, 2018

I will go further on the plugin but it is more like a “so you can do it” project to encourage other developers to contribute to it.

1reaction
KN4CK3Rcommented, Feb 22, 2019

Classes like TArray are now possible as custom nodes.

Read more comments on GitHub >

github_iconTop Results From Across the Web

C++ Example: An Array of Pointers to Class
This program is an example of using an array of pointers to a class. After declaring the array, you can allocate memory for...
Read more >
creating an array of object pointers C++
I want to create an array that holds pointers to many object, but I don't know in advance the number of objects I'll...
Read more >
Creating array of pointers in C++
An array of pointers is an array of pointer variables. It is also known as pointer arrays. We will discuss how to create...
Read more >
C++ Smart Pointers and Arrays
Smart pointers are very versatile and can hold pointers not only to single instances but also to arrays. Is that only a theoretical...
Read more >
An array of pointers to objects - Class « C++ Tutorial
An array of pointers to objects : object array « Class « C++ Tutorial ; 9.33.4. Initialize an array of objects by referencing...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found