Похожие чаты

How should I move my character based on the camera

orientation? I've also been playing some Elden Ring and I like the left right movement where the character will walk in circles.

Vector3 direction = new Vector3(inputVector.x, 0, inputVector.y).normalized;

if (direction.magnitude >= 0.1f) {
// Calculate the move direction based on the camera's orientation
float targetAngle = Mathf.Atan2(direction.x, direction.z) * Mathf.Rad2Deg;
float moveSpeed = speed * Time.deltaTime;

Vector3 moveDir = Quaternion.Euler(0, targetAngle, 0) * Vector3.forward;
Vector3 velocity = moveDir * moveSpeed;

// Ensure we handle collisions with our existing logic
Vector3 finalMovement = ColllideAndSlide(velocity, transform.position, 0, false, velocity);
_rigidbody.MovePosition(transform.position + finalMovement);
}

3 ответов

1 просмотр

You will need a way to lock an enemy, then from there you want the intersection points of a circle of diameter 1 around your player and a circle of diameter distance(player, target) centered around the target. From there those two points mark your left and right unit vectors, that should give you a good approximation of elden ring's strafing around enemies

Snoop Christ-(Alex) Автор вопроса
Ludovic 'Archivist' Lagouardette
You will need a way to lock an enemy, then from th...

Btw I switch to cinemachine for the camera, I suppose I can just use that as a movement ref?

Snoop Christ (Alex)
Btw I switch to cinemachine for the camera, I supp...

Yeah, since this type of formula is just indexed on the camera, it basically changes nothing

Похожие вопросы

Обсуждают сегодня

Ready for some fun AND a chance to win TKO Tokens? Join us for exciting minigames in our Telegram group! 🕒 Don’t miss out—games start on today 25 October 2024, at 8 PM! Ge...
Milkyway | Tokocrypto
255
Добрый вечер. Есть вопрос, а может и предложение. Был у меня диалог в другой группе о делфи и я задался вопросом: "А нельзя ли в делфи цвет //коментария и {комментария} сде...
Kraszx
24
How are we going bro about the Raids ??
🅿️abby_FX
13
Мдя, прикол, боевая сборка запускается (именно под отладчиком) после F9 примерно полторы минуты (97 секунд если быть точным). Начал копать - проблема детектится сразу - зависа...
Александр (Rouse_) Багель
38
Всем привет! Подскажи, пожалуйста, как передать в TComboBox сразу значение и id записи. На Delphi я делал так: ComboBox1.Items.AddObject('Какое-то значение', Pointer(id запис...
Евгений
13
Keep saying it, it’s Trump or WW3. Iran will be emboldened if Harris wins by cheating. Israel will have to take the initiative against Iran. How has BTC faired everytime the...
Adz | Ferrum Network Product & Service Consultant @ Ferrum Network
1
я так понимаю, я так подозреваю, что создание такого плагина для человека, кто умеет писать плагины для делфи потребует минут 5-10 времени. но это мое подозрение. хотелось бы ...
Kraszx
7
Товарищи, кто работа с iphelper? Или может я в самой логике ошибки фигачу, не пойму.... var ifTable : PMIB_IFTABLE; size, corSize: DWORD; Buffer ...
Warfarellen
4
Здравствуйте, вопрос по структурам данных. Были у вас случаи, когда пришлось писать деревья или двунаправленные списки?
/ /
50
Коллеги, добрый вечер. Создаю коллекцию от TFPGMap, ключ - перечисление, значение - целое. Нужно отсортировать коллекцию по значению. Как это можно сделать?
Kirill Filippenok
11
Карта сайта