Search Unity

Games Return To Red Planet (alpha)

Discussion in 'Works In Progress - Archive' started by dojoman, Dec 18, 2018.

Thread Status:
Not open for further replies.
  1. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Last edited: Feb 5, 2019
  2. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    RedPlanet 2018-12-22 10-25-07-771.jpg RedPlanet 2018-12-22 10-29-01-052.jpg RedPlanet 2018-12-22 10-29-44-373.jpg RedPlanet 2018-12-22 10-30-31-133.jpg
     
    Last edited: Dec 23, 2018
    eaque likes this.
  3. Moody_Mek

    Moody_Mek

    Joined:
    May 22, 2014
    Posts:
    15
    looks nice, like the style -is it based on new pack/template you are developing?
     
  4. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Last edited: May 27, 2019
  5. Moody_Mek

    Moody_Mek

    Joined:
    May 22, 2014
    Posts:
    15
    yup got mail notification,

    just one question: which Unity versions are supported?

    edit: it's 2018.3.0f2

    any chances for 5.xx compability?
     
    Last edited: Jan 12, 2019
  6. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Thanks for your reply. I will have a look.
     
  7. thestringer

    thestringer

    Joined:
    Aug 7, 2014
    Posts:
    70
    Throws an error after import :

    Assets/RetroFPS/Scripts/RetroFpsController.cs(419,30): error CS1061: Type `UnityStandardAssets.Characters.FirstPerson.FirstPersonController' does not contain a definition for `m_IsWalking' and no extension method `m_IsWalking' of type `UnityStandardAssets.Characters.FirstPerson.FirstPersonController' could be found. Are you missing an assembly reference?
    2018.3.3f1
     
  8. thestringer

    thestringer

    Joined:
    Aug 7, 2014
    Posts:
    70
    Easy one to resolve as this is now marked as Private, changing to Public again resolves.

    Code (CSharp):
    1.  
    2. namespace UnityStandardAssets.Characters.FirstPerson
    3. {
    4.     [RequireComponent(typeof (CharacterController))]
    5.     [RequireComponent(typeof (AudioSource))]
    6.     public class FirstPersonController : MonoBehaviour
    7.     {
    8.         [SerializeField] public bool m_IsWalking;
    9.         [SerializeField] private float m_WalkSpeed;
    10.         [SerializeField] private float m_RunSpeed;
    11.         [SerializeField] [Range(0f, 1f)] private float m_RunstepLenghten;
    12.         [SerializeField] private float m_JumpSpeed;
    13.         [SerializeField] private float m_StickToGroundForce;
    14.         [SerializeField] private float m_GravityMultiplier;
    15.         [SerializeField] public MouseLook m_MouseLook;
     
    dojoman likes this.
  9. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Yes you are right. I have to add this information to the docs. Sorry.
     
  10. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Documentation has been updated and is already available in the asset at Unity Asset Store.
     
    thestringer likes this.
  11. pushingpandas

    pushingpandas

    Joined:
    Jan 12, 2013
    Posts:
    1,419
    I like the concept but the graphics ... nah not my style. good luck
     
  12. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278


    1.0.0 is available
    • Enemy pathfinding
    • Weapon fire custom delay
    • Loading confirmation button
    • Shader gloss reflections (e. g. floor at screenshot above)
    • Bugfixes and optimizations
    More content and features are on the road. I am working on a road map i want to publish here soon.

    Thanks for your support!
     
  13. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Thanks for your comment. You are free to replace any geometry and textures to get a different style. Just let me know if you need guideance about it. Best regards.
     
    pushingpandas likes this.
  14. TechSinsN

    TechSinsN

    Joined:
    Apr 12, 2014
    Posts:
    121
    Any updates coming??
     
  15. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Actually yes. I will post more information within next two weeks.
     
    pushingpandas likes this.
  16. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Here is something i am working on at the moment.

     
  17. pushingpandas

    pushingpandas

    Joined:
    Jan 12, 2013
    Posts:
    1,419
    nice! more please!!!
     
    dojoman likes this.
  18. TechSinsN

    TechSinsN

    Joined:
    Apr 12, 2014
    Posts:
    121
    How would i go about adding dual pistols or smg?
     
  19. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Hi. You need to follow these steps:
    1. Create a model of the weapon
    2. Import it to Unity
    3. Duplicate an existing weapon in the player controller and reassign all references (model, muzzle flash, etc.)
    4. Duplicate an existing "Pickup<weaponname>" item and assign it to the list index of step
    5. For dual weapon you need alter the shooting behavior via script - this is not yet supported out of the box
    Good idea, actually. I will take a note for the road map.
     
  20. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    CYBERWAR weapon concepts




     
    pushingpandas likes this.
  21. Moody_Mek

    Moody_Mek

    Joined:
    May 22, 2014
    Posts:
    15
    Any chances of making this working in older releases? Sorry but making it only the most recent Unity compatible is a bit of a bad userbase wise.

    Also, will we get you know, basic FPS armed/shooting enemies functionality?
     
  22. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    The shooting enemy is implemented and needs some optimization prior to release. What older Unity version do you need it to work with?
     
  23. Moody_Mek

    Moody_Mek

    Joined:
    May 22, 2014
    Posts:
    15
    Hi!

    something around 5.6+ would be godsent
     
  24. spooneystone

    spooneystone

    Joined:
    Feb 1, 2015
    Posts:
    13
    Just gotta say i love that music!!
     
    dojoman likes this.
  25. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Thanks. I will try that.
     
  26. Moody_Mek

    Moody_Mek

    Joined:
    May 22, 2014
    Posts:
    15
    much obliged

    also, is it posible to replace 3d monsters with say 4-deirectional sprites? Might feel silly but that is the extra retro feel I am missing from this pack
     
  27. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    It is not out-of-the-box supported, but i will make an example in the next release.
     
  28. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    CYBERWAR - Retro FPS Teaser (no audio preview)

     
  29. TechSinsN

    TechSinsN

    Joined:
    Apr 12, 2014
    Posts:
    121
    Updates???
     
  30. TechSinsN

    TechSinsN

    Joined:
    Apr 12, 2014
    Posts:
    121
    Don't tell me you have abandoned this? Was looking forward to updates....
     
  31. warthos3399

    warthos3399

    Joined:
    May 11, 2019
    Posts:
    1,758
    music and atmosphere is good, blocky/low-poly, not so much, concept is very good, but also depends on what you were shooting for (end result), personally, not into Minecraft type games , but this base project could be something great, depends on where you wanna take it, and your "target" audience.
     
  32. TechSinsN

    TechSinsN

    Joined:
    Apr 12, 2014
    Posts:
    121
    Are you going to be updating this??
     
  33. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Updates will come. Thanks for the patience. It is far from abandonned, please do not worry.
     
  34. MrEdL

    MrEdL

    Joined:
    Sep 13, 2016
    Posts:
    5
    Hello Dojoman,

    I'm sure many of us are looking forward to hearing from you.
    I sent an email to support and I didn't get any feedback.
    I find that the documentation is very poor and that the code is not well commented.
    We are waiting for tutorials (to change the enemy model for example, a process that seems complex).
    Many scripts are missing even after adding standard assets etc.
    Thank you for your feedback, retro fps has I think a lot of potential but there is work to be done.
     
  35. pushingpandas

    pushingpandas

    Joined:
    Jan 12, 2013
    Posts:
    1,419
    its dead?
     
  36. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Hi again. Long time no response from me which i am really sorry for.

    At the moment i am fixing issues which i noticed and which i have got from customer feedback.

    My team furthermore is working on the cyberwar (working name) episode which will - beside other features - provide shooting behaviour, new weapons and new enemies as well as a setting different from RedPlanet.

    Hopefully we will be able to post some screens from time to time here in the forum.

    As you can imagine this is an after-work project which we are very enthusiastic about, but where we have to scratch out every minute of our sparetime we can get to keep the progress going.

    Kind regards.
     
  37. pushingpandas

    pushingpandas

    Joined:
    Jan 12, 2013
    Posts:
    1,419
    hope new update comes soon. Stay safe!
     
  38. TechSinsN

    TechSinsN

    Joined:
    Apr 12, 2014
    Posts:
    121
    @dojoman Would you take a request for a feature? or could i pay you to add something? Dual wielding pistols or a smg if so can you pm me
     
  39. dojoman

    dojoman

    Joined:
    Jul 24, 2014
    Posts:
    278
    Hi. Thanks for your message.

    An SMG is actually there. See "Ingram Hyperfire Mod" which is collectable at the 3rd map.
    I will check your dual wielding request ...

    Kind Regards.
     
  40. Shadow-X6

    Shadow-X6

    Joined:
    Apr 29, 2016
    Posts:
    108
    Hi Dojoman do you new update ? :)
    Thanks
     
  41. paulojsam

    paulojsam

    Joined:
    Jul 2, 2012
    Posts:
    575
    Hello! i like to ask if i buy your red planet package, if i can use its game assets on a level for a level design portfolio? Thank you!
     
  42. pushingpandas

    pushingpandas

    Joined:
    Jan 12, 2013
    Posts:
    1,419
    Any news on this? :(
     
Thread Status:
Not open for further replies.