Using needleEngine 4.3.2-beta.4, unity 2022.3.43f1 and Node 18.20.3. iām having an issue with GameObject.findObjectOfType, using it with an NPN def class like this:
_camController = GameObject.findObjectOfType(CameraController);
Iām getting these 2 errors:
Type āIComponent | nullā is not assignable to type āCameraController | nullā.
Type āIComponentā is missing the following properties from type āCameraControllerā: viewPositions, _onEnterView, selectView, tweenToGameObject, and 24 more.
Argument of type ātypeof CameraControllerā is not assignable to parameter of type āConstructorā.
Types of construct signatures are incompatible.
Type ānew (init?: Partial<NoInternalNeedleEngineState<FilterStartingWith<FilterTypes<Component, Function | null | undefined>, ā">>> | undefined) => CameraControllerā is not assignable to type āabstract new (ā¦args: any[]) => IComponentā.
Construct signature return types āCameraControllerā and āIComponentā are incompatible.
The types of āgameObject.addNewComponentā are incompatible between these types.
Type '(type: ConstructorConcrete, init?: Partial<NoInternalNeedleEngineState<FilterStartingWith<FilterTypes<T, Function | null | undefined>, "ā>>> | undefined) => Tā is not assignable to type ā(type: Constructor, init?: Partial<NoInternalNeedleEngineState<FilterStartingWith<FilterTypes<T, Function | null | undefined>, ā_ā>>> | undefined) => Tā.
Types of parameters ātypeā and ātypeā are incompatible.
Type āConstructorā is not assignable to type āConstructorConcreteā.
Cannot assign an abstract constructor type to a non-abstract constructor type.
It works without forcing the implementation but i gotta use @ts-ignore
Hi TomƔs,
The issue youāre facing seems to be related to TypeScriptās type system and how it interprets the types involved in your usage of GameObject.findObjectOfType
.
Plan
- Ensure youāre using the correct import statement for
findObjectOfType
.
- Create a custom type guard to safely assert that the found object is indeed a
CameraController
.
- Use this type guard to avoid requiring
@ts-ignore
.
Code
Hereās how you can implement it:
import { GameObject, IComponent } from "@needle-tools/engine";
import { CameraController } from "./path/to/CameraController"; // Adjust the import path accordingly
// Type guard to check if the object is a CameraController
function isCameraController(object: IComponent | null): object is CameraController {
return object !== null && (object as CameraController).viewPositions !== undefined; // Check for a specific property from CameraController
}
// Usage
const foundObject = GameObject.findObjectOfType(CameraController);
if (isCameraController(foundObject)) {
_camController = foundObject; // Now TypeScript knows this is a CameraController
} else {
_camController = null; // Handle the null case appropriately
}
Explanation
-
Type Guard: The isCameraController
function checks if the object is not null
and has a property specific to CameraController
. This allows TypeScript to infer the correct type when you set _camController
.
-
Error Handling: By checking the type before assignment, you can avoid the need for @ts-ignore
.
With this approach, you maintain type safety without suppressing the TypeScript errors. If you have further questions or need additional help, feel free to ask!
1 replies left - Get a PRO license for more AI replies.
thread_0PSVH3OMd55mukDjPcK1gPzE
Reply to this message to continue the conversation