playMaker

Author Topic: Photon Networking with PlayMaker Tutorial  (Read 31155 times)

cloud03

  • Full Member
  • ***
  • Posts: 249
  • Viva Playmaker!
    • Milkish Game Studios Blog
Photon Networking with PlayMaker Tutorial
« on: August 29, 2016, 04:00:04 AM »
Hi Guys, I've just uploaded a new tutorial series on how to create a basic Multiplayer system using Photon and PlayMaker, hope you guys like it, feedbacks are really appreciated!

Part 01 | Basic Concept

Part 2 | Basic Player Movement

Part 3 | Player Network Syncing

Part 4 | Shooting Over Network

Part 5 | Bullet Damage & Health

Part 6 | Scoring System

Part 7 | Mecanim Sync Over Network
« Last Edit: October 13, 2016, 11:00:24 PM by cloud03 »

cloud03

  • Full Member
  • ***
  • Posts: 249
  • Viva Playmaker!
    • Milkish Game Studios Blog
Re: Photon Networking with PlayMaker Tutorial
« Reply #1 on: August 29, 2016, 04:00:17 AM »
reserved...

600

  • Beta Group
  • Hero Member
  • *
  • Posts: 713
    • Flashing Lights
Re: Photon Networking with PlayMaker Tutorial
« Reply #2 on: August 29, 2016, 06:01:31 AM »
This is great! Good luck with the series!

cloud03

  • Full Member
  • ***
  • Posts: 249
  • Viva Playmaker!
    • Milkish Game Studios Blog
Re: Photon Networking with PlayMaker Tutorial
« Reply #3 on: August 30, 2016, 08:36:26 PM »
@600: Thanks a lot mate!

cloud03

  • Full Member
  • ***
  • Posts: 249
  • Viva Playmaker!
    • Milkish Game Studios Blog
Re: Photon Networking with PlayMaker Tutorial
« Reply #4 on: August 31, 2016, 08:48:46 PM »
Update: added the 3rd episode, please check it out!

cloud03

  • Full Member
  • ***
  • Posts: 249
  • Viva Playmaker!
    • Milkish Game Studios Blog
Re: Photon Networking with PlayMaker Tutorial
« Reply #5 on: September 03, 2016, 08:46:40 PM »
Update: added the 4th episode, cheers!

cloud03

  • Full Member
  • ***
  • Posts: 249
  • Viva Playmaker!
    • Milkish Game Studios Blog
Re: Photon Networking with PlayMaker Tutorial
« Reply #6 on: September 08, 2016, 08:32:24 PM »
Update: added the 5th episode, cheers!

eagleeyez

  • Playmaker Newbie
  • *
  • Posts: 15
Re: Photon Networking with PlayMaker Tutorial
« Reply #7 on: September 11, 2016, 05:29:12 AM »
I absolutely love your Playmaker tutorials. Thank you very much and please, when is the next one coming as I need to know how to give the player who shot another player the points for hitting that player.

What also would be great is making a friends list, login, where you can enter player name and add to your list. I already have such from the asset store but with playmaker it would be better.

Thank you, thank you and keep up the very good work. You are making it easy for us to understand playmaker and photon.
All the best
Chris.

cloud03

  • Full Member
  • ***
  • Posts: 249
  • Viva Playmaker!
    • Milkish Game Studios Blog
Re: Photon Networking with PlayMaker Tutorial
« Reply #8 on: September 11, 2016, 11:17:11 PM »
@eagleeyez: Thanks a lot mate! Yes I'm intending to do scoring for the next episode, hopefully I'll be able to record and upload it this week, please stay tune.

as for making friend list, I'll have to research about it first, cause I'm also just started trying Photon, so I'm still learning bits by bits of it.

Thanks again, all the best
Romi

eagleeyez

  • Playmaker Newbie
  • *
  • Posts: 15
Re: Photon Networking with PlayMaker Tutorial
« Reply #9 on: September 16, 2016, 05:53:46 PM »
I'll be looking forward to further videos. Thanks
btw. Unity throws an error when getting the Vector3 learp advanced from the Eco.

cloud03

  • Full Member
  • ***
  • Posts: 249
  • Viva Playmaker!
    • Milkish Game Studios Blog
Re: Photon Networking with PlayMaker Tutorial
« Reply #10 on: September 16, 2016, 09:08:17 PM »
could you post the screenshot of the error? cause it's working fine on my end, I'm also download it from ecosystem, using playmaker 1.8.3 and Unity 5.3.4p8 here..

eagleeyez

  • Playmaker Newbie
  • *
  • Posts: 15
Re: Photon Networking with PlayMaker Tutorial
« Reply #11 on: September 17, 2016, 04:04:38 AM »
I have the actual version of Unity 5 personal and Playmaker
this is the error I get

Assets/PlayMaker Custom Actions/__internal/PlayMakerActionsUtils.cs(1,3): error CS8025: Parsing error

Using the eco to delete the action does not remove the error, I must remove the
PlayMakerActionsUtils..cs file

Strange ?

cloud03

  • Full Member
  • ***
  • Posts: 249
  • Viva Playmaker!
    • Milkish Game Studios Blog
Re: Photon Networking with PlayMaker Tutorial
« Reply #12 on: September 17, 2016, 06:48:42 AM »
I've got the solution from the comment one of my youtube channels from John McCallister:

For whatever reason...  PlayMakerActionsUtils.cs was updated with

404: Not Found

I replaced it with:
 
using UnityEngine;

public class PlayMakerActionsUtils
{
    public enum EveryFrameUpdateSelector { OnUpdate, OnLateUpdate, OnFixedUpdate };

}

could you try replace this?

cloud03

  • Full Member
  • ***
  • Posts: 249
  • Viva Playmaker!
    • Milkish Game Studios Blog
Re: Photon Networking with PlayMaker Tutorial
« Reply #13 on: September 18, 2016, 11:47:51 AM »
Update: added the 6th episode on how to do scoring system, cheers!

Jin

  • Playmaker Newbie
  • *
  • Posts: 14
Re: Photon Networking with PlayMaker Tutorial
« Reply #14 on: September 18, 2016, 06:39:24 PM »
Very helpful tutorials!

Thanks very much!

-Jinn