Gameplay Features

Advanced Lock-on System

Shooter toolkit with Tracking, Lock-on, and Prediction Systems. Targets any Actor, displays markers and info, supports auto aim and homing projectiles.

Advanced Lock-on SystemGameplay Features

Resource overview

The Advanced Lock-on System presents a complete targeting handoff for shooter projects. The package includes a Preview Video, a Playable Demo, and Documentation, so the 1st step is usually watching the demo to see how the 3 systems behave in a live scene. From there, the Documentation walks through the setup, and the systems themselves handle targeting, projectile guidance, and intercept prediction in 1 place. For a team working on a 1st-Person Shooter (FPS) or a 3rd-Person Shooter, that means the aiming loop is not scattered across separate scripts: the marker, the projectile behavior, and the aim calculation are tied together by the same asset.

Targeting Any Actor, Independent of the Camera Viewpoint

The targeting layer is based on the Actor type. With simple settings, any object in the game world can become a target. There is no restriction to 1 single character class or a specific enemy type; the same setup can point at a soldier, a vehicle, or any other Actor that matters in a scene. This keeps the asset adaptable for different shooter projects, covering hostile units, friendly units, pickups, and objectives with the same Lock-On logic.

The camera viewpoint is not part of the targeting calculation. The system works the same regardless of the viewpoint of the camera, so changing the camera angle or distance does not change how the system acquires a target. The marker and the Lock-On behavior stay consistent whether the player is looking from a close view or a wider view, which removes a common source of friction in 1st-Person and 3rd-Person Shooter development. It also means the same targeting setup can be reused in different game modes that use different camera perspectives.

Tracking System: Markers and Target Information

The Tracking System takes care of the visual side of targeting. It displays targets with markers, so a tracked Actor is clearly indicated on the screen. In addition to the marker, it displays information about the target. For a shooter, that means the Heads-Up Display (HUD) can carry both a positional cue and a data readout for the same target, all coming from 1 tracking component. The marker tells the player where to look, while the information gives context about what is being looked at.

Since the Tracking System is 1 of 3 systems in the asset, it can be paired with the Lock-On System or the Prediction System. The marker, the target information, the projectile behavior, and the aim point all live in the same package. This structure is useful when a target needs to appear on the HUD before the player decides whether to lock a shot onto it. Tracking provides the awareness layer, and the other 2 systems consume the same tracked target to produce firing assistance.

Lock-On System: Auto Aim and 3 Homing Modes

The Lock-On System provides 4 types of functions for projectiles. Auto Aim is placed on the direct fire projectile side, giving a weapon a straightforward way to hit a selected target. The other 3 functions are Lock-On types for homing projectiles. That split lets the asset cover both a simple direct shot and guided shots that continue to track the Actor after launch. The distinction matters because direct fire and homing fire place different requirements on the projectile controller.

With Auto Aim, the direct fire projectile is handled as 1 single aiming event. The 3 Lock-On modes, by contrast, handle projectiles that need to adjust their course in flight. A shooter can therefore use the same Lock-On System for a quick direct-fire weapon and for homing projectiles that chase an Actor as it moves. Instead of maintaining separate aiming code for each projectile family, the system offers a shared interface that exposes the 4 projectile functions.

Prediction System: The Intercept Point

The Prediction System answers the question of where a projectile will meet a target. It predicts the location that the projectile can intercept the target, which is different from the target's current position whenever the target is moving. That intercept point is calculated ahead of time, giving the shooter a concrete point to aim at. Rather than placing a reticle on the moving Actor and hoping it stays in the same spot, the system moves the aim point to the predicted meeting location.

The predicted location is displayed on the screen, so the player can see it as part of the HUD. The system can also automatically aim at that location. This combines a visual cue with an automatic firing solution, which is especially useful for a weapon or turret that needs to correct for target movement before the projectile is launched. The displayed point and the point used for automatic aiming are the same, so what the player sees is what the shot uses.

Documentation, Demo, and CIWS Turrets Compatibility

The asset ships with a Preview Video, a Playable Demo, and Documentation. The Playable Demo gives a hands-on look at the Tracking System, Lock-On System, and Prediction System in a live scene, while the Documentation covers how to apply the systems to your own Actors and projectiles. The included tags point to Blueprint and User Interface (UI) as the implementation layers, which fits the HUD-focused marker and target-information work. The UI side handles the markers and intercept point on screen, while the Blueprint logic controls the targeting and prediction behavior.

The package also lists compatibility with CIWS Turrets. That makes the asset a candidate for projects that already use CIWS Turrets as the firing platform. The Tracking System, Lock-On System, and Prediction System functions can be combined with that turret setup without pulling in a separate targeting solution. For a project building turret-based defenses around a shooter, this is a direct integration point that shortens the setup path.

Where the asset earns its place is in the way the 3 systems line up. Tracking System puts a marker and target information on screen. Lock-On System translates that tracked Actor into 1 of 4 projectile functions. Prediction System calculates the right aim point and can apply it automatically. Because the entire chain works with any Actor and is independent of the camera viewpoint, the same logic can be moved from a Player-Character Shooter to a Turret-Based Shooter with limited rework. The Playable Demo and Documentation cover the setup path, and the CIWS Turrets compatibility gives teams a known starting point for production.

Related Resources Worth Checking

Free Download

Download this resource

Loading your download options...

Resources are manually reviewed before listing to improve quality and reduce obvious risks.

Resource archiveAdvancedLockonSystem.7z

Related resources